api.py 8.0 KB

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