djblets.avatars.services.gravatar¶
An avatar service for providing Gravatars.
- class GravatarService(settings_manager_class)¶
Bases:
AvatarService
An avatar service for providing Gravatars.
- avatar_service_id = 'gravatar'¶
The avatar service’s ID.
This must be unique for every avatar service subclass.
- name = 'Gravatar'¶
The avatar service’s human-readable name.
- consent_requirement_id = 'gravatar'¶
The ID of a consent requirement governing use of this avatar service.
If provided, and if consent requirements are enforced by the application, then the service will only be used for a user if consent has been granted.
- get_avatar_urls_uncached(user, size)¶
Return the Gravatar URLs for the requested user.
- Parameters:
user (
django.contrib.auth.models.User
) – The user whose avatar URLs are to be fetched.size (
int
) – The size (in pixels) the avatar is to be rendered at.
- Returns
dict: A dictionary containing the URLs of the user’s avatars at normal- and high-DPI.
- get_etag_data(user)¶
Return the ETag data for the user’s avatar.
- Parameters:
user (
django.contrib.auth.models.User
) – The user.- Returns:
The uniquely identifying information for the user’s avatar.
- Return type:
- __annotations__ = {}¶