""" .. module: lemur.notifications.views :platform: Unix :synopsis: This module contains all of the accounts view code. :copyright: (c) 2018 by Netflix Inc., see AUTHORS for more :license: Apache, see LICENSE for more details. .. moduleauthor:: Kevin Glisson """ from flask import Blueprint from flask_restful import Api, reqparse, inputs from lemur.notifications import service from lemur.notifications.schemas import notification_input_schema, notification_output_schema, notifications_output_schema from lemur.auth.service import AuthenticatedResource from lemur.common.utils import paginated_parser from lemur.common.schema import validate_schema mod = Blueprint('notifications', __name__) api = Api(mod) class NotificationsList(AuthenticatedResource): """ Defines the 'notifications' endpoint """ def __init__(self): self.reqparse = reqparse.RequestParser() super(NotificationsList, self).__init__() @validate_schema(None, notifications_output_schema) def get(self): """ .. http:get:: /notifications The current account list **Example request**: .. sourcecode:: http GET /notifications HTTP/1.1 Host: example.com Accept: application/json, text/javascript **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "items": [ { "description": "An example", "options": [ { "name": "interval", "required": true, "value": 5, "helpMessage": "Number of days to be alert before expiration.", "validation": "^\\d+$", "type": "int" }, { "available": [ "days", "weeks", "months" ], "name": "unit", "required": true, "value": "weeks", "helpMessage": "Interval unit", "validation": "", "type": "select" }, { "name": "recipients", "required": true, "value": "kglisson@netflix.com,example@netflix.com", "helpMessage": "Comma delimited list of email addresses", "validation": "^([\\w+-.%]+@[\\w-.]+\\.[A-Za-z]{2,4},?)+$", "type": "str" } ], "label": "example", "pluginName": "email-notification", "active": true, "id": 2 } ], "total": 1 } :query sortBy: field to sort on :query sortDir: asc or desc :query page: int default is 1 :query filter: key value pair format is k;v :query count: count number default is 10 :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error """ parser = paginated_parser.copy() parser.add_argument('active', type=inputs.boolean, location='args') args = parser.parse_args() return service.render(args) @validate_schema(notification_input_schema, notification_output_schema) def post(self, data=None): """ .. http:post:: /notifications Creates a new account **Example request**: .. sourcecode:: http POST /notifications HTTP/1.1 Host: example.com Accept: application/json, text/javascript { "description": "a test", "options": [ { "name": "interval", "required": true, "value": 5, "helpMessage": "Number of days to be alert before expiration.", "validation": "^\\d+$", "type": "int" }, { "available": [ "days", "weeks", "months" ], "name": "unit", "required": true, "value": "weeks", "helpMessage": "Interval unit", "validation": "", "type": "select" }, { "name": "recipients", "required": true, "value": "kglisson@netflix.com,example@netflix.com", "helpMessage": "Comma delimited list of email addresses", "validation": "^([\\w+-.%]+@[\\w-.]+\\.[A-Za-z]{2,4},?)+$", "type": "str" } ], "label": "test", "pluginName": "email-notification", "active": true, "id": 2 } **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "description": "a test", "options": [ { "name": "interval", "required": true, "value": 5, "helpMessage": "Number of days to be alert before expiration.", "validation": "^\\d+$", "type": "int" }, { "available": [ "days", "weeks", "months" ], "name": "unit", "required": true, "value": "weeks", "helpMessage": "Interval unit", "validation": "", "type": "select" }, { "name": "recipients", "required": true, "value": "kglisson@netflix.com,example@netflix.com", "helpMessage": "Comma delimited list of email addresses", "validation": "^([\\w+-.%]+@[\\w-.]+\\.[A-Za-z]{2,4},?)+$", "type": "str" } ], "label": "test", "pluginName": "email-notification", "active": true, "id": 2 } :arg accountNumber: aws account number :arg label: human readable account label :arg comments: some description about the account :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error """ return service.create( data['label'], data['plugin']['slug'], data['plugin']['plugin_options'], data['description'], data['certificates'] ) class Notifications(AuthenticatedResource): def __init__(self): self.reqparse = reqparse.RequestParser() super(Notifications, self).__init__() @validate_schema(None, notification_output_schema) def get(self, notification_id): """ .. http:get:: /notifications/1 Get a specific account **Example request**: .. sourcecode:: http GET /notifications/1 HTTP/1.1 Host: example.com Accept: application/json, text/javascript **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "description": "a test", "options": [ { "name": "interval", "required": true, "value": 5, "helpMessage": "Number of days to be alert before expiration.", "validation": "^\\d+$", "type": "int" }, { "available": [ "days", "weeks", "months" ], "name": "unit", "required": true, "value": "weeks", "helpMessage": "Interval unit", "validation": "", "type": "select" }, { "name": "recipients", "required": true, "value": "kglisson@netflix.com,example@netflix.com", "helpMessage": "Comma delimited list of email addresses", "validation": "^([\\w+-.%]+@[\\w-.]+\\.[A-Za-z]{2,4},?)+$", "type": "str" } ], "label": "test", "pluginName": "email-notification", "active": true, "id": 2 } :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error """ return service.get(notification_id) @validate_schema(notification_input_schema, notification_output_schema) def put(self, notification_id, data=None): """ .. http:put:: /notifications/1 Updates an account **Example request**: .. sourcecode:: http POST /notifications/1 HTTP/1.1 Host: example.com Accept: application/json, text/javascript **Example response**: .. sourcecode:: http HTTP/1.1 200 OK Vary: Accept Content-Type: text/javascript { "id": 1, "accountNumber": 11111111111, "label": "labelChanged", "comments": "this is a thing" } :arg accountNumber: aws account number :arg label: human readable account label :arg comments: some description about the account :reqheader Authorization: OAuth token to authenticate :statuscode 200: no error """ return service.update( notification_id, data['label'], data['plugin']['plugin_options'], data['description'], data['active'], data['certificates'] ) def delete(self, notification_id): service.delete(notification_id) return {'result': True} class CertificateNotifications(AuthenticatedResource): """ Defines the 'certificate/', endpoint='notification') api.add_resource(CertificateNotifications, '/certificates//notifications', endpoint='certificateNotifications')