2016-02-01 10:48:33 +00:00
|
|
|
from flask_marshmallow.fields import fields
|
2016-01-11 15:07:13 +00:00
|
|
|
from . import ma
|
2016-01-08 17:51:46 +00:00
|
|
|
from . import models
|
2016-02-01 10:48:33 +00:00
|
|
|
from marshmallow import post_load, ValidationError
|
|
|
|
|
|
2016-01-08 17:51:46 +00:00
|
|
|
|
2016-01-11 15:07:13 +00:00
|
|
|
# TODO I think marshmallow provides a better integration and error handling.
|
|
|
|
|
# Would be better to replace functionality in dao with the marshmallow supported
|
|
|
|
|
# functionality.
|
|
|
|
|
# http://marshmallow.readthedocs.org/en/latest/api_reference.html
|
2016-01-08 17:51:46 +00:00
|
|
|
|
2016-01-11 15:07:13 +00:00
|
|
|
|
2016-01-29 11:11:00 +00:00
|
|
|
class BaseSchema(ma.ModelSchema):
|
2016-01-28 11:41:21 +00:00
|
|
|
def __init__(self, *args, load_json=False, **kwargs):
|
|
|
|
|
self.load_json = load_json
|
2016-01-29 11:11:00 +00:00
|
|
|
super(BaseSchema, self).__init__(*args, **kwargs)
|
2016-01-11 15:07:13 +00:00
|
|
|
|
2016-01-28 11:41:21 +00:00
|
|
|
@post_load
|
|
|
|
|
def make_instance(self, data):
|
|
|
|
|
"""Deserialize data to an instance of the model. Update an existing row
|
|
|
|
|
if specified in `self.instance` or loaded by primary key(s) in the data;
|
|
|
|
|
else create a new row.
|
|
|
|
|
:param data: Data to deserialize.
|
|
|
|
|
"""
|
|
|
|
|
if self.load_json:
|
|
|
|
|
return data
|
2016-01-29 11:11:00 +00:00
|
|
|
return super(BaseSchema, self).make_instance(data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UserSchema(BaseSchema):
|
|
|
|
|
class Meta:
|
|
|
|
|
model = models.User
|
|
|
|
|
exclude = (
|
|
|
|
|
"updated_at", "created_at", "user_to_service",
|
|
|
|
|
"_password", "verify_codes")
|
2016-01-28 11:41:21 +00:00
|
|
|
|
2016-01-08 17:51:46 +00:00
|
|
|
|
2016-01-29 11:11:00 +00:00
|
|
|
class ServiceSchema(BaseSchema):
|
2016-01-08 17:51:46 +00:00
|
|
|
class Meta:
|
|
|
|
|
model = models.Service
|
2016-01-27 17:42:05 +00:00
|
|
|
exclude = ("updated_at", "created_at", "api_keys", "templates", "jobs", "queue_name")
|
2016-01-13 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
2016-01-29 11:11:00 +00:00
|
|
|
class TemplateSchema(BaseSchema):
|
2016-01-13 11:04:13 +00:00
|
|
|
class Meta:
|
|
|
|
|
model = models.Template
|
2016-01-15 15:48:05 +00:00
|
|
|
exclude = ("updated_at", "created_at", "service_id", "jobs")
|
2016-01-11 15:07:13 +00:00
|
|
|
|
2016-01-08 17:51:46 +00:00
|
|
|
|
2016-01-29 11:11:00 +00:00
|
|
|
class ApiKeySchema(BaseSchema):
|
2016-01-13 09:25:46 +00:00
|
|
|
class Meta:
|
2016-01-19 12:07:00 +00:00
|
|
|
model = models.ApiKey
|
2016-01-20 15:23:32 +00:00
|
|
|
exclude = ("service", "secret")
|
2016-01-14 11:30:45 +00:00
|
|
|
|
2016-01-13 09:25:46 +00:00
|
|
|
|
2016-01-29 11:11:00 +00:00
|
|
|
class JobSchema(BaseSchema):
|
2016-01-15 15:48:05 +00:00
|
|
|
class Meta:
|
|
|
|
|
model = models.Job
|
|
|
|
|
|
|
|
|
|
|
2016-02-01 10:48:33 +00:00
|
|
|
class RequestVerifyCodeSchema(ma.Schema):
|
|
|
|
|
def verify_code_type(self):
|
2016-02-01 10:54:32 +00:00
|
|
|
if self not in models.VERIFY_CODE_TYPES:
|
2016-02-01 10:48:33 +00:00
|
|
|
raise ValidationError('Invalid code type')
|
|
|
|
|
|
|
|
|
|
code_type = fields.Str(required=True, validate=verify_code_type)
|
|
|
|
|
to = fields.Str(required=False)
|
2016-01-21 17:29:24 +00:00
|
|
|
|
|
|
|
|
|
2016-01-11 15:07:13 +00:00
|
|
|
user_schema = UserSchema()
|
2016-01-28 11:41:21 +00:00
|
|
|
user_schema_load_json = UserSchema(load_json=True)
|
2016-01-08 17:51:46 +00:00
|
|
|
users_schema = UserSchema(many=True)
|
|
|
|
|
service_schema = ServiceSchema()
|
2016-01-29 11:11:00 +00:00
|
|
|
service_schema_load_json = ServiceSchema(load_json=True)
|
2016-01-08 17:51:46 +00:00
|
|
|
services_schema = ServiceSchema(many=True)
|
2016-01-13 11:04:13 +00:00
|
|
|
template_schema = TemplateSchema()
|
2016-01-29 11:11:00 +00:00
|
|
|
template_schema_load_json = TemplateSchema(load_json=True)
|
2016-01-13 11:04:13 +00:00
|
|
|
templates_schema = TemplateSchema(many=True)
|
2016-01-19 12:07:00 +00:00
|
|
|
api_key_schema = ApiKeySchema()
|
2016-01-29 11:11:00 +00:00
|
|
|
api_key_schema_load_json = ApiKeySchema(load_json=True)
|
2016-01-19 12:07:00 +00:00
|
|
|
api_keys_schema = ApiKeySchema(many=True)
|
2016-01-15 15:48:05 +00:00
|
|
|
job_schema = JobSchema()
|
2016-01-29 11:11:00 +00:00
|
|
|
job_schema_load_json = JobSchema(load_json=True)
|
2016-01-15 15:48:05 +00:00
|
|
|
jobs_schema = JobSchema(many=True)
|
2016-02-01 10:48:33 +00:00
|
|
|
request_verify_code_schema = RequestVerifyCodeSchema()
|