2021-10-15 03:25:38 -05:00
|
|
|
"""
|
|
|
|
Augment REST API schema to use for open-api schema generation.
|
|
|
|
|
|
|
|
open-api schema generation leans heavily on automatic generation
|
|
|
|
implemented through the django-rest-framework.
|
|
|
|
|
|
|
|
Specify custom fields to be added to the generated open-api schema.
|
|
|
|
"""
|
2020-03-06 16:26:37 +00:00
|
|
|
import re
|
2021-07-10 10:12:35 -05:00
|
|
|
|
2020-03-06 16:26:37 +00:00
|
|
|
from django.conf import settings
|
2023-06-20 03:26:06 +03:00
|
|
|
from django.utils.translation import gettext as _
|
2020-03-06 16:26:37 +00:00
|
|
|
from rest_framework.schemas.openapi import AutoSchema
|
|
|
|
|
|
|
|
|
2020-07-15 02:07:01 -05:00
|
|
|
class CustomField:
|
2020-03-06 16:26:37 +00:00
|
|
|
def __init__(self, typ, help_text=""):
|
|
|
|
self.typ = typ
|
|
|
|
self.help_text = help_text
|
|
|
|
|
|
|
|
def get_internal_type(self):
|
|
|
|
return self.typ
|
|
|
|
|
|
|
|
|
|
|
|
class BaseSchema(AutoSchema):
|
|
|
|
|
|
|
|
"""
|
|
|
|
Augments the openapi schema generation for
|
2021-10-15 03:25:38 -05:00
|
|
|
the peeringdb API docs.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
# map django internal types to openapi types
|
|
|
|
|
|
|
|
numeric_fields = [
|
|
|
|
"IntegerField",
|
|
|
|
"PositiveIntegerField",
|
|
|
|
"DecimalField",
|
|
|
|
"DateField",
|
|
|
|
"DateTimeField",
|
|
|
|
"ForeignKey",
|
|
|
|
"AutoField",
|
|
|
|
]
|
|
|
|
|
|
|
|
text_fields = [
|
|
|
|
"TextField",
|
|
|
|
"CharField",
|
|
|
|
]
|
|
|
|
|
|
|
|
other_fields = [
|
|
|
|
"BooleanField",
|
|
|
|
"TextSearchField",
|
|
|
|
"NumberSearchField",
|
|
|
|
]
|
|
|
|
|
|
|
|
type_map = {
|
|
|
|
"ForeignKey": "integer",
|
|
|
|
"PositiveIntegerField": "integer",
|
|
|
|
"IntegerField": "integer",
|
|
|
|
"AutoField": "integer",
|
|
|
|
"BooleanField": "integer",
|
|
|
|
"DecimalField": "number",
|
|
|
|
"DateTimeField": "date-time",
|
|
|
|
"DateField": "date",
|
|
|
|
"NumberSearchField": "number",
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_operation_type(self, *args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Determine if this is a list retrieval operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
method = args[1]
|
|
|
|
|
|
|
|
if method == "GET" and "{id}" not in args[0]:
|
|
|
|
return "list"
|
|
|
|
elif method == "GET":
|
|
|
|
return "retrieve"
|
|
|
|
elif method == "POST":
|
|
|
|
return "create"
|
|
|
|
elif method == "PUT":
|
|
|
|
return "update"
|
|
|
|
elif method == "DELETE":
|
|
|
|
return "delete"
|
|
|
|
elif method == "PATCH":
|
|
|
|
return "patch"
|
|
|
|
|
|
|
|
return method.lower()
|
|
|
|
|
2021-11-09 09:47:38 -06:00
|
|
|
def get_operation_id(self, path, method):
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Override this so operation ids become "{op} {reftag}"
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
serializer, model = self.get_classes(path, method)
|
|
|
|
op_type = self.get_operation_type(path, method)
|
|
|
|
|
|
|
|
if model:
|
2021-11-09 09:47:38 -06:00
|
|
|
# Overrides for duplicate operations ids
|
|
|
|
|
|
|
|
if "request_ixf_import" in path:
|
|
|
|
return f"{op_type} IX-F import request"
|
|
|
|
elif "as_set/{asn}" in path:
|
|
|
|
return f"{op_type} as-set by asn"
|
|
|
|
elif "as_set" in path:
|
|
|
|
return f"{op_type} as-set"
|
2023-02-15 09:55:01 +02:00
|
|
|
elif "campus" in path and "add-facility" in path:
|
|
|
|
return "add facility to campus"
|
|
|
|
elif "campus" in path and "remove-facility" in path:
|
|
|
|
return "remove facility from campus"
|
|
|
|
elif "carrierfac" in path and "approve" in path:
|
|
|
|
return "approve facility presence at carrier"
|
|
|
|
elif "carrierfac" in path and "reject" in path:
|
|
|
|
return "reject facility presence at carrier"
|
2021-11-09 09:47:38 -06:00
|
|
|
|
2020-07-15 02:07:01 -05:00
|
|
|
return f"{op_type} {model.HandleRef.tag}"
|
2020-03-06 16:26:37 +00:00
|
|
|
|
2021-11-09 09:47:38 -06:00
|
|
|
return super().get_operation_id(path, method)
|
2020-03-06 16:26:37 +00:00
|
|
|
|
|
|
|
def get_operation(self, *args, **kwargs):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Override this so we can augment the operation dict
|
|
|
|
for an openapi schema operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
op_dict = super().get_operation(*args, **kwargs)
|
|
|
|
|
|
|
|
op_type = self.get_operation_type(*args)
|
|
|
|
|
|
|
|
# check if we have an augmentation method set for the
|
|
|
|
# operation type, if so run it
|
|
|
|
|
2020-07-15 02:07:01 -05:00
|
|
|
augment = getattr(self, f"augment_{op_type}_operation", None)
|
2020-03-06 16:26:37 +00:00
|
|
|
|
|
|
|
if augment:
|
|
|
|
augment(op_dict, args)
|
|
|
|
|
|
|
|
# attempt to relate a serializer and a model class to the operation
|
|
|
|
|
|
|
|
serializer, model = self.get_classes(*args)
|
2023-02-15 09:55:01 +02:00
|
|
|
if args[0] == "/api/{var}/self":
|
|
|
|
return {}
|
2020-03-06 16:26:37 +00:00
|
|
|
|
2021-11-09 09:47:38 -06:00
|
|
|
# Override the the requestBody with components instead of using reference
|
|
|
|
components = super().get_components(*args).get(model.__name__)
|
|
|
|
|
|
|
|
content_types = [
|
|
|
|
"application/json",
|
|
|
|
]
|
|
|
|
# Override schema for create, update and patch operations
|
|
|
|
if components and op_type in ["create", "update", "patch"]:
|
|
|
|
for content_type in content_types:
|
|
|
|
op_dict["requestBody"]["content"][content_type]["schema"] = components
|
|
|
|
|
2023-02-15 09:55:01 +02:00
|
|
|
op_id = op_dict.get("operationId")
|
|
|
|
|
|
|
|
if op_id in [
|
|
|
|
"add facility to campus",
|
|
|
|
"remove facility from campus",
|
|
|
|
"approve facility presence at carrier",
|
|
|
|
"reject facility presence at carrier",
|
|
|
|
]:
|
|
|
|
op_dict["requestBody"]["content"][content_type]["schema"] = None
|
|
|
|
|
2020-03-06 16:26:37 +00:00
|
|
|
# if we were able to get a model we want to include the markdown documentation
|
|
|
|
# for the model type in the openapi description field (docs/api/obj_*.md)
|
|
|
|
|
|
|
|
if model:
|
|
|
|
obj_descr_file = settings.API_DOC_INCLUDES.get(
|
2020-07-15 02:07:01 -05:00
|
|
|
f"obj_{model.HandleRef.tag}", ""
|
2020-03-06 16:26:37 +00:00
|
|
|
)
|
|
|
|
if obj_descr_file:
|
2020-07-15 02:07:01 -05:00
|
|
|
with open(obj_descr_file) as fh:
|
2020-03-06 16:26:37 +00:00
|
|
|
op_dict["description"] += "\n\n" + fh.read()
|
|
|
|
|
|
|
|
# check if we have an augmentation method set for the operation_type and object type
|
|
|
|
# combination, if so run it
|
2020-07-26 23:36:27 -05:00
|
|
|
augment = getattr(self, f"augment_{op_type}_{model.HandleRef.tag}", None)
|
2020-03-06 16:26:37 +00:00
|
|
|
if augment:
|
|
|
|
augment(serializer, model, op_dict)
|
|
|
|
|
|
|
|
# include the markdown documentation for the operation type (docs/api/op_*.md)
|
|
|
|
|
2020-07-15 02:07:01 -05:00
|
|
|
op_descr_file = settings.API_DOC_INCLUDES.get(f"op_{op_type}", "")
|
2020-03-06 16:26:37 +00:00
|
|
|
if op_descr_file:
|
2020-07-15 02:07:01 -05:00
|
|
|
with open(op_descr_file) as fh:
|
2020-03-06 16:26:37 +00:00
|
|
|
op_dict["description"] += "\n\n" + fh.read()
|
|
|
|
|
|
|
|
return op_dict
|
|
|
|
|
|
|
|
def get_classes(self, *op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Try to relate a serializer and model class to the openapi operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
- tuple(serializers.Serializer, models.Model)
|
|
|
|
"""
|
|
|
|
|
2023-09-13 04:54:04 +03:00
|
|
|
serializer = self.get_serializer(*op_args)
|
2020-03-06 16:26:37 +00:00
|
|
|
model = None
|
|
|
|
if hasattr(serializer, "Meta"):
|
|
|
|
if hasattr(serializer.Meta, "model"):
|
|
|
|
model = serializer.Meta.model
|
|
|
|
return (serializer, model)
|
|
|
|
|
|
|
|
def augment_retrieve_operation(self, op_dict, op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for single object retrieval.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
parameters = op_dict.get("parameters")
|
|
|
|
serializer, model = self.get_classes(*op_args)
|
|
|
|
|
|
|
|
if not model:
|
|
|
|
return
|
|
|
|
|
|
|
|
op_dict["description"] = _(
|
|
|
|
"Retrieves a single `{obj_type}` type object by id"
|
|
|
|
).format(obj_type=model.HandleRef.tag)
|
|
|
|
|
|
|
|
parameters.append(
|
|
|
|
{
|
|
|
|
"name": "depth",
|
|
|
|
"in": "query",
|
|
|
|
"required": False,
|
|
|
|
"description": _("Expand nested sets according to depth."),
|
|
|
|
"schema": {"type": "integer", "default": 1, "minimum": 0, "maximum": 2},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def augment_list_operation(self, op_dict, op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for object listings.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
parameters = op_dict.get("parameters")
|
|
|
|
serializer, model = self.get_classes(*op_args)
|
|
|
|
|
|
|
|
if not model:
|
|
|
|
return
|
|
|
|
|
|
|
|
op_dict["description"] = _(
|
|
|
|
"Retrieves a list of `{obj_type}` type objects"
|
|
|
|
).format(obj_type=model.HandleRef.tag)
|
|
|
|
|
|
|
|
parameters.extend(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "depth",
|
|
|
|
"in": "query",
|
|
|
|
"required": False,
|
|
|
|
"description": _("Expand nested sets according to depth."),
|
|
|
|
"schema": {
|
|
|
|
"type": "integer",
|
|
|
|
"default": 0,
|
|
|
|
"minimum": 0,
|
|
|
|
"maximum": 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "limit",
|
|
|
|
"in": "query",
|
|
|
|
"required": False,
|
|
|
|
"description": _(
|
|
|
|
"Limit the number of rows returned in the result set (use for pagination in combination with `skip`)"
|
|
|
|
),
|
2020-09-30 01:13:38 +00:00
|
|
|
"schema": {
|
|
|
|
"type": "integer",
|
|
|
|
},
|
2020-03-06 16:26:37 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "skip",
|
|
|
|
"in": "query",
|
|
|
|
"required": False,
|
|
|
|
"description": _(
|
|
|
|
"Skip n results in the result set (use for pagination in combination with `limit`)"
|
|
|
|
),
|
2020-09-30 01:13:38 +00:00
|
|
|
"schema": {
|
|
|
|
"type": "integer",
|
|
|
|
},
|
2020-03-06 16:26:37 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "since",
|
|
|
|
"in": "query",
|
|
|
|
"required": False,
|
|
|
|
"description": _(
|
|
|
|
"Unix epoch time stamp (seconds). Only return objects that have been updated since then"
|
|
|
|
),
|
|
|
|
"schema": {"type": "integer"},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
self.augment_list_filters(model, serializer, parameters)
|
|
|
|
op_dict.update(parameters=sorted(parameters, key=lambda x: x["name"]))
|
|
|
|
|
|
|
|
def augment_list_filters(self, model, serializer, parameters):
|
|
|
|
"""
|
|
|
|
Further augment openapi schema for object listing by filling
|
|
|
|
the query parameter list with all the possible query filters
|
2021-10-15 03:25:38 -05:00
|
|
|
for the object.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
field_names = [
|
|
|
|
(fld.name, fld) for fld in model._meta.get_fields()
|
|
|
|
] + serializer.queryable_relations()
|
|
|
|
|
|
|
|
custom_filter_fields = getattr(
|
2020-07-15 02:07:01 -05:00
|
|
|
self, f"{model.HandleRef.tag}_list_filter_fields", None
|
2020-03-06 16:26:37 +00:00
|
|
|
)
|
|
|
|
if custom_filter_fields:
|
|
|
|
field_names.extend(custom_filter_fields())
|
|
|
|
|
|
|
|
blocked_prefixes = []
|
|
|
|
for field, fld in field_names:
|
|
|
|
typ = fld.get_internal_type()
|
|
|
|
|
|
|
|
supported_filters = []
|
|
|
|
|
|
|
|
# while sending queries to nested set fields sort of works
|
|
|
|
# it's currently not officially supported and results may not
|
|
|
|
# be what is expected.
|
|
|
|
#
|
|
|
|
# hide these query possibilities from the documentation
|
|
|
|
blocked = False
|
|
|
|
for prefix in blocked_prefixes:
|
|
|
|
if field.find(prefix) == 0:
|
|
|
|
blocked = True
|
|
|
|
break
|
|
|
|
|
|
|
|
if blocked:
|
|
|
|
continue
|
|
|
|
elif typ == "ForeignKey" and (fld.one_to_many or hasattr(fld, "multiple")):
|
|
|
|
# mark prefix of nested object as blocked so we
|
2020-09-29 20:01:47 +00:00
|
|
|
# don't expose it's fields to the documentation
|
2020-03-06 16:26:37 +00:00
|
|
|
|
2020-07-15 02:07:01 -05:00
|
|
|
blocked_prefixes.append(f"{field}__")
|
2020-03-06 16:26:37 +00:00
|
|
|
continue
|
|
|
|
elif typ in self.numeric_fields:
|
|
|
|
supported_filters = ["`__lt`", "`__gt`", "`__lte`", "`__gte`", "`__in`"]
|
|
|
|
elif typ in self.text_fields:
|
|
|
|
supported_filters = ["`__startswith`", "`__contains`", "`__in`"]
|
|
|
|
elif typ in self.other_fields:
|
|
|
|
supported_filters = []
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
|
|
|
|
description = [
|
|
|
|
_("Filter results by matching a value against this field."),
|
|
|
|
]
|
|
|
|
|
|
|
|
# if field has a help_text set, append it to description
|
|
|
|
|
|
|
|
help_text = getattr(fld, "help_text", None)
|
|
|
|
if help_text:
|
2020-07-15 02:07:01 -05:00
|
|
|
description.insert(0, f"{help_text}")
|
2020-03-06 16:26:37 +00:00
|
|
|
|
|
|
|
# if field has choices defined, append them to the description
|
|
|
|
|
|
|
|
choices = getattr(fld, "choices", None)
|
|
|
|
if choices:
|
|
|
|
description.append(
|
2020-07-26 23:36:27 -05:00
|
|
|
"{}".format(", ".join([f"`{_id}`" for _id, label in choices]))
|
2020-03-06 16:26:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if supported_filters:
|
|
|
|
description.append(
|
|
|
|
_("Supported filter suffixes: {}").format(
|
|
|
|
", ".join(supported_filters)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
parameters.append(
|
|
|
|
{
|
|
|
|
"name": re.sub(
|
|
|
|
"^facility__", "fac__", re.sub("^network__", "net__", field)
|
|
|
|
),
|
|
|
|
"in": "query",
|
|
|
|
"description": "\n\n".join(description),
|
|
|
|
"required": False,
|
2020-09-30 01:13:38 +00:00
|
|
|
"schema": {
|
|
|
|
"type": self.type_map.get(typ, "string"),
|
|
|
|
},
|
2020-03-06 16:26:37 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def fac_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
"net_count",
|
|
|
|
CustomField(
|
|
|
|
"IntegerField", _("Number of networks present at this facility")
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
def net_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
"name_search",
|
|
|
|
CustomField(
|
|
|
|
"TextSearchField",
|
|
|
|
_("Targets both AKA and name fields for filtering"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"not_ix",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find networks not present at an exchange (exchange id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"ix",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find networks present at exchange (exchange id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"not_fac",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find networks not present at a facility (facility id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"fac",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find networks present at a facility (facility id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"ixlan",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find networks connected at ixlan (ixlan id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"netixlan",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find the network that contains this netixlan (netixlan id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"netfac",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find the network that this netfac belongs to (netfac id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
def ix_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
"fac",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find exchanges present at a facility (facility id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"ixlan",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find the exchange that contains this ixlan (ixlan id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"ixfac",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find the exchange that contains this ixfac (ixfac id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"net_count",
|
|
|
|
CustomField(
|
|
|
|
"IntegerField", _("Number of networks present at this exchange")
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"net",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find exchanges where this network has a presence at (net id)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
def org_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
"asn",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField",
|
|
|
|
_("Find organization that contains the network (network asn)"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
def ixpfx_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
"ix",
|
|
|
|
CustomField(
|
|
|
|
"NumberSearchField", _("Find prefixes by exchange (exchange id)")
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"whereis",
|
|
|
|
CustomField("TextSearchField", _("Find prefixes by ip address")),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
def netixlan_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
("name", CustomField("CharField", _("Exchange name"))),
|
|
|
|
]
|
|
|
|
|
|
|
|
def netfac_list_filter_fields(self):
|
|
|
|
return [
|
|
|
|
("name", CustomField("CharField", _("Facility name"))),
|
|
|
|
("country", CustomField("CharField", _("Facility country"))),
|
|
|
|
("city", CustomField("CharField", _("Facility city"))),
|
|
|
|
]
|
|
|
|
|
|
|
|
def augment_create_operation(self, op_dict, op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for object creation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
2021-08-18 08:21:22 -05:00
|
|
|
op_dict.get("parameters")
|
2020-03-06 16:26:37 +00:00
|
|
|
serializer, model = self.get_classes(*op_args)
|
|
|
|
|
|
|
|
if not model:
|
|
|
|
return
|
|
|
|
|
|
|
|
op_dict["description"] = _("Creates a new `{obj_type}` type object.").format(
|
|
|
|
obj_type=model.HandleRef.tag
|
|
|
|
)
|
|
|
|
|
|
|
|
def request_body_schema(self, op_dict, content="application/json"):
|
|
|
|
"""
|
|
|
|
Helper function that return the request body schema
|
2021-10-15 03:25:38 -05:00
|
|
|
for the specified content type.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
return (
|
|
|
|
op_dict.get("requestBody", {})
|
|
|
|
.get("content", {})
|
|
|
|
.get(content, {})
|
|
|
|
.get("schema", {})
|
|
|
|
)
|
|
|
|
|
|
|
|
def augment_create_ix(self, serializer, model, op_dict):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for create ix operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
request_body_schema = self.request_body_schema(op_dict)
|
|
|
|
|
|
|
|
# during creation the `prefix` field should be marked as required
|
|
|
|
request_body_schema["required"].extend(["prefix"])
|
|
|
|
|
|
|
|
def augment_update_ix(self, serializer, model, op_dict):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for update ix operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
request_body_schema = self.request_body_schema(op_dict)
|
|
|
|
properties = request_body_schema["properties"]
|
|
|
|
|
|
|
|
# prefix on `update` will be ignored
|
|
|
|
del properties["prefix"]
|
|
|
|
|
|
|
|
def augment_update_fac(self, serializer, model, op_dict):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for update fac operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
request_body_schema = self.request_body_schema(op_dict)
|
|
|
|
properties = request_body_schema["properties"]
|
|
|
|
|
|
|
|
# suggest on `update` will be ignored
|
|
|
|
del properties["suggest"]
|
|
|
|
|
|
|
|
def augment_update_net(self, serializer, model, op_dict):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for update net operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
|
|
|
request_body_schema = self.request_body_schema(op_dict)
|
|
|
|
properties = request_body_schema["properties"]
|
|
|
|
|
|
|
|
# suggest on `update` will be ignored
|
|
|
|
del properties["suggest"]
|
|
|
|
|
|
|
|
def augment_update_operation(self, op_dict, op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for update operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
2021-08-18 08:21:22 -05:00
|
|
|
op_dict.get("parameters")
|
2020-03-06 16:26:37 +00:00
|
|
|
serializer, model = self.get_classes(*op_args)
|
|
|
|
|
|
|
|
if not model:
|
|
|
|
return
|
|
|
|
|
|
|
|
op_dict["description"] = _(
|
|
|
|
"Updates an existing `{obj_type}` type object."
|
|
|
|
).format(obj_type=model.HandleRef.tag)
|
|
|
|
|
|
|
|
def augment_delete_operation(self, op_dict, op_args):
|
|
|
|
"""
|
2021-10-15 03:25:38 -05:00
|
|
|
Augment openapi schema for delete operation.
|
2020-03-06 16:26:37 +00:00
|
|
|
"""
|
2021-08-18 08:21:22 -05:00
|
|
|
op_dict.get("parameters")
|
2020-03-06 16:26:37 +00:00
|
|
|
serializer, model = self.get_classes(*op_args)
|
|
|
|
|
|
|
|
if not model:
|
|
|
|
return
|
|
|
|
|
|
|
|
op_dict["description"] = _(
|
|
|
|
"Marks an `{obj_type}` type object as `deleted`."
|
|
|
|
).format(obj_type=model.HandleRef.tag)
|