2016-02-03 13:16:19 +00:00
|
|
|
import re
|
2016-02-12 11:13:54 +00:00
|
|
|
from flask import current_app
|
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-03 13:16:19 +00:00
|
|
|
from marshmallow import (post_load, ValidationError, validates, validates_schema)
|
|
|
|
|
|
|
|
|
|
mobile_regex = re.compile("^\\+44[\\d]{10}$")
|
2016-02-01 10:48:33 +00:00
|
|
|
|
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-02-02 14:16:08 +00:00
|
|
|
exclude = ("updated_at", "created_at", "api_keys", "templates", "jobs", 'old_id')
|
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-19 11:37:35 +00:00
|
|
|
# TODO: Remove this schema once the admin app has stopped using the /user/<user_id>code endpoint
|
|
|
|
|
class OldRequestVerifyCodeSchema(ma.Schema):
|
2016-02-01 10:48:33 +00:00
|
|
|
|
2016-02-03 13:16:19 +00:00
|
|
|
code_type = fields.Str(required=True)
|
2016-02-01 10:48:33 +00:00
|
|
|
to = fields.Str(required=False)
|
2016-01-21 17:29:24 +00:00
|
|
|
|
2016-02-03 13:16:19 +00:00
|
|
|
@validates('code_type')
|
|
|
|
|
def validate_code_type(self, code):
|
|
|
|
|
if code not in models.VERIFY_CODE_TYPES:
|
|
|
|
|
raise ValidationError('Invalid code type')
|
|
|
|
|
|
|
|
|
|
|
2016-02-19 11:37:35 +00:00
|
|
|
class RequestVerifyCodeSchema(ma.Schema):
|
|
|
|
|
to = fields.Str(required=False)
|
|
|
|
|
|
|
|
|
|
|
2016-02-03 13:16:19 +00:00
|
|
|
# TODO main purpose to be added later
|
|
|
|
|
# when processing templates, template will be
|
|
|
|
|
# common for all notifications.
|
|
|
|
|
class NotificationSchema(ma.Schema):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SmsNotificationSchema(NotificationSchema):
|
|
|
|
|
to = fields.Str(required=True)
|
|
|
|
|
|
|
|
|
|
@validates('to')
|
|
|
|
|
def validate_to(self, value):
|
|
|
|
|
if not mobile_regex.match(value):
|
|
|
|
|
raise ValidationError('Invalid phone number, must be of format +441234123123')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SmsTemplateNotificationSchema(SmsNotificationSchema):
|
|
|
|
|
template = fields.Int(required=True)
|
2016-02-08 14:54:15 +00:00
|
|
|
job = fields.String()
|
2016-02-03 13:16:19 +00:00
|
|
|
|
|
|
|
|
@validates_schema
|
|
|
|
|
def validate_schema(self, data):
|
|
|
|
|
"""
|
2016-02-12 11:13:54 +00:00
|
|
|
Validate the to field is valid for this notification
|
2016-02-03 13:16:19 +00:00
|
|
|
"""
|
2016-02-12 11:13:54 +00:00
|
|
|
from app import api_user
|
2016-02-03 13:16:19 +00:00
|
|
|
template_id = data.get('template', None)
|
|
|
|
|
template = models.Template.query.filter_by(id=template_id).first()
|
|
|
|
|
if template:
|
|
|
|
|
service = template.service
|
2016-02-12 11:13:54 +00:00
|
|
|
# Validate restricted service,
|
|
|
|
|
# restricted services can only send to one of its users.
|
2016-02-03 13:16:19 +00:00
|
|
|
if service.restricted:
|
|
|
|
|
valid = False
|
|
|
|
|
for usr in service.users:
|
|
|
|
|
if data['to'] == usr.mobile_number:
|
|
|
|
|
valid = True
|
|
|
|
|
break
|
|
|
|
|
if not valid:
|
|
|
|
|
raise ValidationError('Invalid phone number for restricted service', 'restricted')
|
2016-02-12 11:13:54 +00:00
|
|
|
# Assert the template is valid for the service which made the request.
|
|
|
|
|
service = api_user['client']
|
2016-02-15 15:02:19 +00:00
|
|
|
admin_users = [current_app.config.get('ADMIN_CLIENT_USER_NAME'),
|
|
|
|
|
current_app.config.get('DELIVERY_CLIENT_USER_NAME')]
|
|
|
|
|
if (service not in admin_users and
|
2016-02-12 14:08:48 +00:00
|
|
|
template.service != models.Service.query.filter_by(id=service).first()):
|
|
|
|
|
raise ValidationError('Invalid template', 'restricted')
|
2016-02-03 13:16:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class SmsAdminNotificationSchema(SmsNotificationSchema):
|
|
|
|
|
content = fields.Str(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class EmailNotificationSchema(NotificationSchema):
|
|
|
|
|
to_address = fields.Str(load_from="to", dump_to='to', required=True)
|
|
|
|
|
from_address = fields.Str(load_from="from", dump_to='from', required=True)
|
|
|
|
|
subject = fields.Str(required=True)
|
|
|
|
|
body = fields.Str(load_from="message", dump_to='message', required=True)
|
|
|
|
|
|
2016-01-21 17:29:24 +00:00
|
|
|
|
2016-02-09 14:17:42 +00:00
|
|
|
class NotificationStatusSchema(BaseSchema):
|
|
|
|
|
|
|
|
|
|
class Meta:
|
2016-02-16 14:06:56 +00:00
|
|
|
model = models.Notification
|
2016-02-09 14:17:42 +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-19 11:37:35 +00:00
|
|
|
# TODO: Remove this schema once the admin app has stopped using the /user/<user_id>code endpoint
|
|
|
|
|
old_request_verify_code_schema = OldRequestVerifyCodeSchema()
|
2016-02-01 10:48:33 +00:00
|
|
|
request_verify_code_schema = RequestVerifyCodeSchema()
|
2016-02-03 13:16:19 +00:00
|
|
|
sms_admin_notification_schema = SmsAdminNotificationSchema()
|
|
|
|
|
sms_template_notification_schema = SmsTemplateNotificationSchema()
|
|
|
|
|
email_notification_schema = EmailNotificationSchema()
|
2016-02-09 14:17:42 +00:00
|
|
|
notification_status_schema = NotificationStatusSchema()
|
|
|
|
|
notifications_status_schema = NotificationStatusSchema(many=True)
|
|
|
|
|
notification_status_schema_load_json = NotificationStatusSchema(load_json=True)
|