2022-12-11 04:03:14 +00:00
|
|
|
import secrets
|
|
|
|
|
2022-12-11 07:25:48 +00:00
|
|
|
from ninja import Schema
|
2022-12-11 04:03:14 +00:00
|
|
|
|
2022-12-11 07:25:48 +00:00
|
|
|
from .. import schemas
|
2022-12-11 04:03:14 +00:00
|
|
|
from ..models import Application
|
|
|
|
from .base import api
|
|
|
|
|
|
|
|
|
|
|
|
class CreateApplicationSchema(Schema):
|
|
|
|
client_name: str
|
|
|
|
redirect_uris: str
|
|
|
|
scopes: None | str = None
|
|
|
|
website: None | str = None
|
|
|
|
|
|
|
|
|
2022-12-11 07:25:48 +00:00
|
|
|
@api.post("/v1/apps", response=schemas.Application)
|
2022-12-11 04:03:14 +00:00
|
|
|
def add_app(request, details: CreateApplicationSchema):
|
|
|
|
client_id = "tk-" + secrets.token_urlsafe(16)
|
|
|
|
client_secret = secrets.token_urlsafe(40)
|
|
|
|
application = Application.objects.create(
|
|
|
|
name=details.client_name,
|
|
|
|
website=details.website,
|
|
|
|
client_id=client_id,
|
|
|
|
client_secret=client_secret,
|
|
|
|
redirect_uris=details.redirect_uris,
|
|
|
|
scopes=details.scopes or "read",
|
|
|
|
)
|
|
|
|
return application
|