djblets.webapi.models¶
- class BaseWebAPIToken(*args, **kwargs)[source]¶
Bases:
Model
Base class for an access token used for authenticating with the API.
Each token can be used to authenticate the token’s owner with the API, without requiring a username or password to be provided. Tokens can be revoked, and new tokens added.
Tokens can store policy information, which will later be used for restricting access to the API.
- user[source]¶
Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Child.parent
is aForwardManyToOneDescriptor
instance.
- token[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- token_generator_id[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- time_added[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- last_used[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- expires[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- valid[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- invalid_date[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- invalid_reason[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- note[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- policy[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- extra_data[source]¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- is_deprecated() bool [source]¶
Return whether the token is deprecated or not.
This will be
True
if the token was generated by a deprecated token generator.New in version 3.1.
- Returns:
Whether the token is deprecated.
- Return type:
- is_expired() bool [source]¶
Return whether the token is expired or not.
This will be
False
if there is no expiration date set.New in version 3.0.
- Returns:
Whether the token is expired.
- Return type:
- save(*args, **kwargs)[source]¶
Save the token.
If the token is being updated, the
webapi_token_updated
signal will be emitted.
- classmethod validate_policy(policy)[source]¶
Validate an API policy.
This will check to ensure that the policy is in a suitable format and contains the information required in a format that can be parsed.
If a failure is found, a ValidationError will be raised describing the error and where it was found.
- __annotations__ = {}¶
- get_extra_data_json()¶
- get_next_by_last_updated(*, field=<djblets.db.fields.modification_timestamp_field.ModificationTimestampField: last_updated>, is_next=True, **kwargs)¶
- get_next_by_time_added(*, field=<django.db.models.fields.DateTimeField: time_added>, is_next=True, **kwargs)¶
- get_policy_json()¶
- get_previous_by_last_updated(*, field=<djblets.db.fields.modification_timestamp_field.ModificationTimestampField: last_updated>, is_next=False, **kwargs)¶
- get_previous_by_time_added(*, field=<django.db.models.fields.DateTimeField: time_added>, is_next=False, **kwargs)¶
- set_extra_data_json(json)¶
- set_policy_json(json)¶
- user_id¶