Scope Parser#

This component defines a Scope object and exposes use of a parser which can parse scope strings into trees of Scope objects. It should be regarded as very similar to the existing MutableScope object in globus_sdk.scopes. Key differences from MutableScope:

  • Scope.parse is available, for parsing scopes from strings

  • The Globus SDK does not support using Scope in all of the locations where MutableScope is supported – Scope objects must be stringified for use

  • Scope objects define a __contains__ method, allowing one to check if one scope properly contains another

Note

The scope trees produced by parsing represent prospective consent structures as would be produced by a single authentication flow in Auth. No external APIs (e.g., the Get Consents API) are used to validate or mutate the data.

Reference#

class globus_sdk.experimental.scope_parser.Scope(scope_string, *, optional=False, dependencies=None)[source]#

A scope object is a representation of a scope which allows modifications to be made. In particular, it supports handling scope dependencies via add_dependency.

str(Scope(…)) produces a valid scope string for use in various methods.

Parameters:
  • scope_string (str) – The string which will be used as the basis for this Scope

  • optional (bool) – The scope may be marked as optional. This means that the scope can be declined by the user without declining consent for other scopes

__init__(scope_string, *, optional=False, dependencies=None)[source]#
static parse(scope_string)[source]#

Parse an arbitrary scope string to a list of scopes.

Zero or more than one scope may be returned, as in the case of an empty string or space-delimited scopes.

Warning

Parsing passes through an intermediary representation which treats scopes as a graph. This ensures that the behavior of parses matches the treatment of scope strings in Globus Auth authorization flows. However, this also means that the parsing does not allow for strings which represent consent trees with structures in which the same scope appears in multiple parts of the tree.

Parameters:

scope_string (str) – The string to parse

Return type:

list[Scope]

classmethod deserialize(scope_string)[source]#

Deserialize a scope string to a scope object.

This is the special case of parsing in which exactly one scope must be returned by the parse. If more than one scope is returned by the parse, a ValueError will be raised.

Parameters:

scope_string (str) – The string to parse

Return type:

Scope

add_dependency(scope, *, optional=None)[source]#

Add a scope dependency. The dependent scope relationship will be stored in the Scope and will be evident in its string representation.

Parameters:
  • scope (str | Scope) – The scope upon which the current scope depends

  • optional (bool | None) – Mark the dependency an optional one. By default it is not. An optional scope dependency can be declined by the user without declining consent for the primary scope

Return type:

Scope

__repr__()[source]#

Return repr(self).

Return type:

str

__str__()[source]#

Return str(self).

Return type:

str

__weakref__#

list of weak references to the object (if defined)

class globus_sdk.experimental.scope_parser.ScopeParseError[source]#

The error raised if scope parsing fails.

class globus_sdk.experimental.scope_parser.ScopeCycleError[source]#

The error raised if scope parsing discovers a cycle.