This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
from allauth.socialaccount.providers.base import ProviderAccount
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
class GiteaAccount(ProviderAccount):
def get_profile_url(self):
return self.account.extra_data.get("html_url")
def get_avatar_url(self):
return self.account.extra_data.get("avatar_url")
def to_str(self):
dflt = super(GiteaAccount, self).to_str()
return next(
value
for value in (
self.account.extra_data.get("username", None),
self.account.extra_data.get("login", None),
dflt,
)
if value is not None
)
class GiteaProvider(OAuth2Provider):
id = "gitea"
name = "Gitea"
account_class = GiteaAccount
def get_default_scope(self):
scope = []
return scope
def extract_uid(self, data):
return str(data["id"])
def extract_common_fields(self, data):
return dict(
email=data.get("email"),
username=data.get("login"),
name=data.get("name"),
)
provider_classes = [GiteaProvider]