2021-05-05 20:21:04 +00:00
|
|
|
"""OpenAPI v3 Specification"""
|
|
|
|
|
|
|
|
# apispec via OpenAPI
|
|
|
|
from apispec import APISpec
|
|
|
|
from apispec.ext.marshmallow import MarshmallowPlugin
|
|
|
|
from apispec_webframeworks.flask import FlaskPlugin
|
|
|
|
from api_schemas import *
|
2021-05-06 01:03:00 +00:00
|
|
|
import pkg_resources
|
2021-05-05 20:21:04 +00:00
|
|
|
|
|
|
|
# Create an APISpec
|
|
|
|
spec = APISpec(
|
|
|
|
title="N.E.S.T.",
|
2021-05-06 01:03:00 +00:00
|
|
|
version=pkg_resources.get_distribution("nest_backend").version,
|
2021-05-05 20:21:04 +00:00
|
|
|
openapi_version="3.0.2",
|
|
|
|
plugins=[FlaskPlugin(), MarshmallowPlugin()],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# register schemas with spec
|
|
|
|
spec.components.schema("Login", schema=LoginSchema)
|
|
|
|
spec.components.schema("Error", schema=ErrorSchema)
|
|
|
|
spec.components.schema("I_Login", schema=InputLoginSchema)
|
|
|
|
spec.components.schema("Success", schema=SuccesSchema)
|
|
|
|
spec.components.schema("EmailParameter", schema=EmailParameterSchema)
|
|
|
|
spec.components.schema("CreateUser", schema=CreateUser)
|
2021-05-05 20:45:36 +00:00
|
|
|
spec.components.schema("Repository", schema=RepositorySchema)
|
|
|
|
spec.components.schema("IntegerParameter", schema=IntegerParameterSchema)
|
|
|
|
spec.components.schema("RepositoryUpdate", schema=RepositoryUpdate)
|
2021-05-06 00:57:26 +00:00
|
|
|
spec.components.security_scheme("jwt", {"type": "http", "scheme": "bearer", "bearerFormat": "JWT"})
|
2021-05-05 20:21:04 +00:00
|
|
|
|
|
|
|
# add swagger tags that are used for endpoint annotation
|
|
|
|
tags = [
|
|
|
|
{'name': 'user-related',
|
|
|
|
'description': 'User related calls of the API.'
|
|
|
|
},
|
|
|
|
{'name': 'repository-related',
|
|
|
|
'description': 'Repository related calls of the API.'
|
|
|
|
},
|
|
|
|
{'name': 'admin-only',
|
|
|
|
'description': 'Admin only calls of the API.'
|
|
|
|
},
|
|
|
|
{'name': 'debug',
|
|
|
|
'description': 'Debug only calls of the API.'
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
for tag in tags:
|
|
|
|
spec.tag(tag)
|