Bases: object
Base WSGI controller class for the proxy
Handler for HTTP GET requests.
Parameters: | req – The client request |
---|---|
Returns: | the response to the client |
Base handler for HTTP GET or HEAD requests.
Parameters: |
|
---|---|
Returns: | swob.Response object |
Handler for HTTP HEAD requests.
Parameters: | req – The client request |
---|---|
Returns: | the response to the client |
Base handler for OPTIONS requests
Parameters: | req – swob.Request object |
---|---|
Returns: | swob.Response object |
Get account information, and also verify that the account exists.
Parameters: |
|
---|---|
Returns: | tuple of (account partition, account nodes, container_count) or (None, None, None) if it does not exist |
Autocreate an account
Parameters: |
|
---|
Given a list of responses from several servers, choose the best to return to the API.
Parameters: |
|
---|---|
Returns: | swob.Response object with the correct status, body, etc. set |
Get container information and thusly verify container existence. This will also verify account existence.
Parameters: |
|
---|---|
Returns: | dict containing at least container partition (‘partition’), container nodes (‘containers’), container read acl (‘read_acl’), container write acl (‘write_acl’), and container sync key (‘sync_key’). Values are set to None if the container does not exist. |
Create a list of headers to be used in backend requets
Parameters: |
|
---|---|
Returns: | a dictionary of headers |
Given a list of statuses from several requests, determine if a quorum response can already be decided.
Parameters: |
|
---|---|
Returns: | True or False, depending on if quorum is established |
Is the given Origin allowed to make requests to this resource
Parameters: |
|
---|---|
Returns: | True or False |
Sends an HTTP request to multiple nodes and aggregates the results. It attempts the primary nodes concurrently, then iterates over the handoff nodes as needed.
Parameters: |
|
---|---|
Returns: | a swob.Response object |
Transfer legal headers from an original client request to dictionary that will be used as headers by the backend request
Parameters: |
|
---|
Bases: object
Will skip num_bytes into the current ranges.
Params num_bytes: | |
---|---|
the number of bytes that have already been read on this request. This will change the Range header so that the next req will start where it left off. |
|
Raises: |
|
Indicates whether or not the request made to the backend found what it was looking for.
Parameters: | src – the response from the backend |
---|---|
Returns: | True if found, False if not |
Clear the cached info in both memcache and env
Parameters: |
|
---|
Force close the http connection to the backend.
Parameters: | src – the response from the backend |
---|
Decorator to check if the request is a CORS request and if so, if it’s valid.
Parameters: | func – function to check |
---|
Decorator to declare which methods should have any swift.authorize call delayed. This is so the method can load the Request object up with additional information that may be needed by the authorization system.
Parameters: | func – function for which authorization will be delayed |
---|
Get the info structure for an account, based on env and app. This is useful to middlewares.
Note
This call bypasses auth. Success does not imply that the request has authorization to the account.
Get the info structure for a container, based on env and app. This is useful to middlewares.
Note
This call bypasses auth. Success does not imply that the request has authorization to the container.
Get the info about accounts or containers
Parameters: |
|
---|---|
Returns: | the cached info or None if cannot be retrieved |
Get the keys for env (env_key) where info about object is cached :param account: The name of the account :param container: The name of the container :param obj: The name of the object :returns a string env_key
Get the info structure for an object, based on env and app. This is useful to middlewares.
Note
This call bypasses auth. Success does not imply that the request has authorization to the object.
Construct a cacheable dict of account info based on response headers.
Construct a cacheable dict of container info based on response headers.
Construct a cacheable dict of object info based on response headers.
Provide the timestamp of the swift http response as a floating point value. Used as a sort key.
Parameters: | resp – bufferedhttp response object |
---|
Helper function to update headers in the response.
Parameters: |
|
---|
Bases: swift.proxy.controllers.base.Controller
WSGI controller for account requests
HTTP DELETE request handler.
Handler for HTTP GET/HEAD requests.
HTTP POST request handler.
HTTP PUT request handler.
Bases: swift.proxy.controllers.base.Controller
WSGI controller for container requests
HTTP DELETE request handler.
Handler for HTTP GET requests.
Handler for HTTP GET/HEAD requests.
Handler for HTTP HEAD requests.
HTTP POST request handler.
HTTP PUT request handler.
Bases: swift.proxy.controllers.base.Controller
WSGI controller for object requests.
HTTP COPY request handler.
HTTP DELETE request handler.
Handler for HTTP GET requests.
Handle HTTP GET or HEAD requests.
Handler for HTTP HEAD requests.
HTTP POST request handler.
HTTP PUT request handler.
Yields nodes for a ring partition.
If the ‘write_affinity’ setting is non-empty, then this will yield N local nodes (as defined by the write_affinity setting) first, then the rest of the nodes as normal. It is a re-ordering of the nodes such that the local ones come first; no node is omitted. The effect is that the request will be serviced by local object servers first, but nonlocal ones will be employed if not enough local ones are available.
Parameters: |
|
---|
Will copy desired headers from from_r to to_r :params from_r: a swob Request or Response :params to_r: a swob Request or Response
Bases: object
WSGI application for the proxy server.
Check the configuration for possible errors
Mark a node as error limited. This immediately pretends the node received enough errors to trigger error suppression. Use this for errors like Insufficient Storage. For other errors use error_occurred().
Parameters: |
|
---|
Check if the node is currently error limited.
Parameters: | node – dictionary of node to check |
---|---|
Returns: | True if error limited, False otherwise |
Handle logging, and handling of errors.
Parameters: |
|
---|
Handle logging of generic exceptions.
Parameters: |
|
---|
Get the controller to handle a request.
Parameters: | path – path from request |
---|---|
Returns: | tuple of (controller class, path dictionary) |
Raises : | ValueError (thrown by split_path) if given invalid path |
Entry point for proxy server. Should return a WSGI-style callable (such as swob.Response).
Parameters: | req – swob.Request object |
---|
Yields nodes for a ring partition, skipping over error limited nodes and stopping at the configurable number of nodes. If a node yielded subsequently gets error limited, an extra node will be yielded to take its place.
Note that if you’re going to iterate over this concurrently from multiple greenthreads, you’ll want to use a swift.common.utils.GreenthreadSafeIterator to serialize access. Otherwise, you may get ValueErrors from concurrent access. (You also may not, depending on how logging is configured, the vagaries of socket IO and eventlet, and the phase of the moon.)
Parameters: |
|
---|
Called during WSGI pipeline creation. Modifies the WSGI pipeline context to ensure that mandatory middleware is present in the pipeline.
Parameters: | pipe – A PipelineWrapper object |
---|
Sorts nodes in-place (and returns the sorted list) according to the configured strategy. The default “sorting” is to randomly shuffle the nodes. If the “timing” strategy is chosen, the nodes are sorted according to the stored timing data.
paste.deploy app factory for creating WSGI proxy apps.