api.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. import logging
  2. from typing import Optional
  3. import orjson
  4. from allauth.socialaccount.models import SocialApp
  5. from allauth.socialaccount.providers.openid_connect.views import (
  6. OpenIDConnectOAuth2Adapter,
  7. )
  8. from asgiref.sync import sync_to_async
  9. from django.conf import settings
  10. from django.contrib.auth import aget_user
  11. from django.http import HttpRequest
  12. from ninja import Field, ModelSchema, NinjaAPI, Schema
  13. from ninja.errors import ValidationError
  14. from sentry_sdk import capture_exception, set_context, set_level
  15. from apps.alerts.api import router as alerts_router
  16. from apps.api_tokens.api import router as api_tokens_router
  17. from apps.api_tokens.models import APIToken
  18. from apps.api_tokens.schema import APITokenSchema
  19. from apps.environments.api import router as environments_router
  20. from apps.event_ingest.api import router as event_ingest_router
  21. from apps.event_ingest.embed_api import router as embed_router
  22. from apps.files.api import router as files_router
  23. from apps.importer.api import router as importer_router
  24. from apps.issue_events.api import router as issue_events_router
  25. from apps.observability.api import router as observability_router
  26. from apps.organizations_ext.api import router as organizations_ext_router
  27. from apps.performance.api import router as performance_router
  28. from apps.projects.api import router as projects_router
  29. from apps.releases.api import router as releases_router
  30. from apps.stats.api import router as stats_router
  31. from apps.teams.api import router as teams_router
  32. from apps.uptime.api import router as uptime_router
  33. from apps.users.api import router as users_router
  34. from apps.users.models import User
  35. from apps.users.schema import UserSchema
  36. from apps.users.utils import ais_user_registration_open
  37. from apps.wizard.api import router as wizard_router
  38. from glitchtip.constants import SOCIAL_ADAPTER_MAP
  39. from ..schema import CamelSchema
  40. from .authentication import SessionAuth, TokenAuth
  41. from .exceptions import ThrottleException
  42. from .parsers import EnvelopeParser
  43. try:
  44. from djstripe.settings import djstripe_settings
  45. except ImportError:
  46. pass
  47. logger = logging.getLogger(__name__)
  48. api = NinjaAPI(
  49. parser=EnvelopeParser(),
  50. title="GlitchTip API",
  51. urls_namespace="api",
  52. auth=[TokenAuth(), SessionAuth()],
  53. )
  54. api.add_router("0", api_tokens_router)
  55. api.add_router("", event_ingest_router)
  56. api.add_router("0", alerts_router)
  57. api.add_router("0", environments_router)
  58. api.add_router("0", files_router)
  59. api.add_router("0", importer_router)
  60. api.add_router("0", issue_events_router)
  61. api.add_router("0", observability_router)
  62. api.add_router("0", organizations_ext_router)
  63. api.add_router("0", performance_router)
  64. api.add_router("0", projects_router)
  65. api.add_router("0", stats_router)
  66. api.add_router("0", teams_router)
  67. api.add_router("0", uptime_router)
  68. api.add_router("0", users_router)
  69. api.add_router("0", wizard_router)
  70. api.add_router("0", releases_router)
  71. api.add_router("embed", embed_router)
  72. if settings.BILLING_ENABLED:
  73. from apps.djstripe_ext.api import router as djstripe_ext_router
  74. api.add_router("0", djstripe_ext_router)
  75. # Would be better at the router level
  76. # https://github.com/vitalik/django-ninja/issues/442
  77. @api.exception_handler(ValidationError)
  78. def log_validation(request, exc):
  79. if request.resolver_match.route == "api/<project_id>/envelope/":
  80. set_level("warning")
  81. set_context(
  82. "incoming event", [orjson.loads(line) for line in request.body.splitlines()]
  83. )
  84. capture_exception(exc)
  85. logger.warning(f"Validation error on {request.path}", exc_info=exc)
  86. return api.create_response(request, {"detail": exc.errors}, status=422)
  87. @api.exception_handler(ThrottleException)
  88. def throttled(request: HttpRequest, exc: ThrottleException):
  89. response = api.create_response(
  90. request,
  91. {"message": "Please retry later"},
  92. status=429,
  93. )
  94. if retry_after := exc.retry_after:
  95. if isinstance(retry_after, int):
  96. response["Retry-After"] = retry_after
  97. else:
  98. response["Retry-After"] = retry_after.strftime("%a, %d %b %Y %H:%M:%S GMT")
  99. return response
  100. class SocialAppSchema(ModelSchema):
  101. scopes: list[str]
  102. authorize_url: Optional[str]
  103. class Config:
  104. model = SocialApp
  105. model_fields = ["name", "client_id", "provider"]
  106. class SettingsOut(CamelSchema):
  107. social_apps: list[SocialAppSchema]
  108. billing_enabled: bool
  109. i_paid_for_glitchtip: bool = Field(serialization_alias="iPaidForGlitchTip")
  110. enable_user_registration: bool
  111. enable_organization_creation: bool
  112. stripe_public_key: Optional[str]
  113. plausible_url: Optional[str]
  114. plausible_domain: Optional[str]
  115. chatwoot_website_token: Optional[str]
  116. sentryDSN: Optional[str]
  117. sentry_traces_sample_rate: Optional[float]
  118. environment: Optional[str]
  119. version: str
  120. server_time_zone: str
  121. use_new_social_callbacks: bool
  122. @api.get("settings/", response=SettingsOut, by_alias=True, auth=None)
  123. async def get_settings(request: HttpRequest):
  124. social_apps: list[SocialApp] = []
  125. async for social_app in SocialApp.objects.order_by("name"):
  126. provider = social_app.get_provider(request)
  127. social_app.scopes = provider.get_scope()
  128. adapter_cls = SOCIAL_ADAPTER_MAP.get(social_app.provider)
  129. if adapter_cls == OpenIDConnectOAuth2Adapter:
  130. adapter = adapter_cls(request, social_app.provider_id)
  131. elif adapter_cls:
  132. adapter = adapter_cls(request)
  133. else:
  134. adapter = None
  135. if adapter:
  136. social_app.authorize_url = await sync_to_async(
  137. lambda: adapter.authorize_url
  138. )()
  139. social_app.provider = social_app.provider_id or social_app.provider
  140. social_apps.append(social_app)
  141. billing_enabled = settings.BILLING_ENABLED
  142. return {
  143. "social_apps": social_apps,
  144. "billing_enabled": billing_enabled,
  145. "i_paid_for_glitchtip": settings.I_PAID_FOR_GLITCHTIP,
  146. "enable_user_registration": await ais_user_registration_open(),
  147. "enable_organization_creation": settings.ENABLE_ORGANIZATION_CREATION,
  148. "stripe_public_key": djstripe_settings.STRIPE_PUBLIC_KEY
  149. if billing_enabled
  150. else None,
  151. "plausible_url": settings.PLAUSIBLE_URL,
  152. "plausible_domain": settings.PLAUSIBLE_DOMAIN,
  153. "chatwoot_website_token": settings.CHATWOOT_WEBSITE_TOKEN,
  154. "sentryDSN": settings.SENTRY_FRONTEND_DSN,
  155. "sentry_traces_sample_rate": settings.SENTRY_TRACES_SAMPLE_RATE,
  156. "environment": settings.ENVIRONMENT,
  157. "version": settings.GLITCHTIP_VERSION,
  158. "server_time_zone": settings.TIME_ZONE,
  159. "use_new_social_callbacks": settings.USE_NEW_SOCIAL_CALLBACKS,
  160. }
  161. class APIRootSchema(Schema):
  162. version: str
  163. user: Optional[UserSchema]
  164. auth: Optional[APITokenSchema]
  165. @api.get("0/", auth=None, response=APIRootSchema)
  166. async def api_root(request: HttpRequest):
  167. """/api/0/ gives information about the server and current user"""
  168. user_data = None
  169. auth_data = None
  170. user = await aget_user(request)
  171. if user.is_authenticated:
  172. user_data = await User.objects.prefetch_related("socialaccount_set").aget(
  173. id=user.id
  174. )
  175. # Fetch api auth header to get api token
  176. openapi_scheme = "bearer"
  177. header = "Authorization"
  178. headers = request.headers
  179. auth_value = headers.get(header)
  180. if auth_value:
  181. parts = auth_value.split(" ")
  182. if len(parts) >= 2 and parts[0].lower() == openapi_scheme:
  183. token = " ".join(parts[1:])
  184. api_token = await APIToken.objects.filter(
  185. token=token, user__is_active=True
  186. ).afirst()
  187. if api_token:
  188. auth_data = api_token
  189. user_data = await User.objects.prefetch_related(
  190. "socialaccount_set"
  191. ).aget(id=api_token.user_id)
  192. return {
  193. "version": "0",
  194. "user": user_data,
  195. "auth": auth_data,
  196. }