2016-08-19 16:36:20 +01:00
|
|
|
|
import itertools
|
2017-03-29 11:05:31 +01:00
|
|
|
|
from datetime import datetime
|
2016-08-19 16:36:20 +01:00
|
|
|
|
|
2021-12-09 17:18:28 +00:00
|
|
|
|
from flask import Blueprint, current_app, jsonify, request
|
2021-04-13 15:02:46 +01:00
|
|
|
|
from sqlalchemy.exc import IntegrityError
|
2016-01-08 17:51:46 +00:00
|
|
|
|
from sqlalchemy.orm.exc import NoResultFound
|
2021-12-16 14:12:47 +00:00
|
|
|
|
from werkzeug.datastructures import MultiDict
|
2016-02-19 15:53:45 +00:00
|
|
|
|
|
2019-05-10 15:32:24 +01:00
|
|
|
|
from app.config import QueueNames
|
2019-07-19 10:57:14 +01:00
|
|
|
|
from app.dao import fact_notification_status_dao, notifications_dao
|
2021-04-07 09:58:12 +01:00
|
|
|
|
from app.dao.annual_billing_dao import set_default_free_allowance_for_service
|
2016-02-25 12:11:51 +00:00
|
|
|
|
from app.dao.api_key_dao import (
|
2021-03-10 13:55:06 +00:00
|
|
|
|
expire_api_key,
|
2016-02-25 12:11:51 +00:00
|
|
|
|
get_model_api_keys,
|
2016-06-22 15:27:28 +01:00
|
|
|
|
get_unsigned_secret,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
save_model_api_key,
|
|
|
|
|
|
)
|
2021-04-14 07:11:01 +01:00
|
|
|
|
from app.dao.dao_utils import dao_rollback, transaction
|
2023-06-14 13:19:11 -07:00
|
|
|
|
from app.dao.date_util import get_calendar_year
|
2018-06-28 15:10:14 +01:00
|
|
|
|
from app.dao.fact_notification_status_dao import (
|
2021-03-10 13:55:06 +00:00
|
|
|
|
fetch_monthly_template_usage_for_service,
|
2018-06-28 15:10:14 +01:00
|
|
|
|
fetch_notification_status_for_service_by_month,
|
2018-11-06 13:30:37 +00:00
|
|
|
|
fetch_notification_status_for_service_for_day,
|
2019-01-04 16:45:39 +00:00
|
|
|
|
fetch_notification_status_for_service_for_today_and_7_previous_days,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
fetch_stats_for_all_services_by_date_range,
|
2019-01-10 16:24:51 +00:00
|
|
|
|
)
|
2017-10-19 09:58:23 +01:00
|
|
|
|
from app.dao.inbound_numbers_dao import dao_allocate_number_for_service
|
2023-09-27 11:32:39 -06:00
|
|
|
|
from app.dao.notifications_dao import dao_get_notification_count_for_service
|
2023-07-10 11:06:29 -07:00
|
|
|
|
from app.dao.organization_dao import dao_get_organization_by_service_id
|
2018-07-13 15:18:27 +01:00
|
|
|
|
from app.dao.service_data_retention_dao import (
|
|
|
|
|
|
fetch_service_data_retention,
|
|
|
|
|
|
fetch_service_data_retention_by_id,
|
2018-08-13 16:44:24 +01:00
|
|
|
|
fetch_service_data_retention_by_notification_type,
|
2018-07-13 15:18:27 +01:00
|
|
|
|
insert_service_data_retention,
|
|
|
|
|
|
update_service_data_retention,
|
|
|
|
|
|
)
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.dao.service_email_reply_to_dao import (
|
|
|
|
|
|
add_reply_to_email_address_for_service,
|
|
|
|
|
|
archive_reply_to_email_address,
|
|
|
|
|
|
dao_get_reply_to_by_id,
|
|
|
|
|
|
dao_get_reply_to_by_service_id,
|
|
|
|
|
|
update_reply_to_email_address,
|
|
|
|
|
|
)
|
|
|
|
|
|
from app.dao.service_guest_list_dao import (
|
|
|
|
|
|
dao_add_and_commit_guest_list_contacts,
|
|
|
|
|
|
dao_fetch_service_guest_list,
|
|
|
|
|
|
dao_remove_service_guest_list,
|
|
|
|
|
|
)
|
2017-10-19 13:51:33 +01:00
|
|
|
|
from app.dao.service_sms_sender_dao import (
|
2018-04-26 09:05:17 +01:00
|
|
|
|
archive_sms_sender,
|
2017-10-19 13:51:33 +01:00
|
|
|
|
dao_add_sms_sender_for_service,
|
|
|
|
|
|
dao_get_service_sms_senders_by_id,
|
2017-10-25 11:58:54 +01:00
|
|
|
|
dao_get_sms_senders_by_service_id,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
dao_update_service_sms_sender,
|
|
|
|
|
|
update_existing_sms_sender_with_inbound_number,
|
2017-11-07 14:26:18 +00:00
|
|
|
|
)
|
2016-01-12 10:39:49 +00:00
|
|
|
|
from app.dao.services_dao import (
|
2017-11-14 14:32:34 +00:00
|
|
|
|
dao_add_user_to_service,
|
|
|
|
|
|
dao_archive_service,
|
2016-02-19 15:53:45 +00:00
|
|
|
|
dao_create_service,
|
2017-11-14 14:32:34 +00:00
|
|
|
|
dao_fetch_all_services,
|
2016-03-01 15:36:31 +00:00
|
|
|
|
dao_fetch_all_services_by_user,
|
2019-04-25 18:09:33 +01:00
|
|
|
|
dao_fetch_live_services_data,
|
2017-11-14 14:32:34 +00:00
|
|
|
|
dao_fetch_service_by_id,
|
2016-11-10 17:07:02 +00:00
|
|
|
|
dao_fetch_todays_stats_for_all_services,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
dao_fetch_todays_stats_for_service,
|
2017-11-14 14:32:34 +00:00
|
|
|
|
dao_remove_user_from_service,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
dao_resume_service,
|
2017-11-14 14:32:34 +00:00
|
|
|
|
dao_suspend_service,
|
|
|
|
|
|
dao_update_service,
|
2019-08-13 17:20:37 +01:00
|
|
|
|
get_services_by_partial_name,
|
2017-11-14 14:32:34 +00:00
|
|
|
|
)
|
2019-05-10 15:32:24 +01:00
|
|
|
|
from app.dao.templates_dao import dao_get_template_by_id
|
2016-11-07 17:42:23 +00:00
|
|
|
|
from app.dao.users_dao import get_user_by_id
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.errors import InvalidRequest, register_errors
|
2023-04-12 13:30:50 -04:00
|
|
|
|
from app.models import KEY_TYPE_NORMAL, EmailBranding, Permission, Service
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.notifications.process_notifications import (
|
|
|
|
|
|
persist_notification,
|
|
|
|
|
|
send_notification_to_queue,
|
2019-05-10 15:32:24 +01:00
|
|
|
|
)
|
2017-06-15 11:32:51 +01:00
|
|
|
|
from app.schema_validation import validate
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.schemas import (
|
|
|
|
|
|
api_key_schema,
|
|
|
|
|
|
detailed_service_schema,
|
|
|
|
|
|
email_data_request_schema,
|
|
|
|
|
|
notification_with_template_schema,
|
|
|
|
|
|
notifications_filter_schema,
|
|
|
|
|
|
service_schema,
|
|
|
|
|
|
)
|
2016-09-28 10:16:10 +01:00
|
|
|
|
from app.service import statistics
|
2023-03-02 20:20:31 -05:00
|
|
|
|
from app.service.send_notification import send_one_off_notification
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.service.sender import send_notification_to_service_users
|
2018-07-11 17:02:49 +01:00
|
|
|
|
from app.service.service_data_retention_schema import (
|
|
|
|
|
|
add_service_data_retention_request,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
update_service_data_retention_request,
|
2018-07-11 17:02:49 +01:00
|
|
|
|
)
|
2017-10-04 14:41:36 +01:00
|
|
|
|
from app.service.service_senders_schema import (
|
|
|
|
|
|
add_service_email_reply_to_request,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
add_service_sms_sender_request,
|
2017-11-07 14:26:18 +00:00
|
|
|
|
)
|
2020-07-28 10:19:46 +01:00
|
|
|
|
from app.service.utils import get_guest_list_objects
|
2019-03-12 19:07:12 +00:00
|
|
|
|
from app.user.users_schema import post_set_permissions_schema
|
2023-03-02 20:20:31 -05:00
|
|
|
|
from app.utils import get_prev_next_pagination_links
|
2017-03-15 16:52:44 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
service_blueprint = Blueprint("service", __name__)
|
2017-03-15 16:52:44 +00:00
|
|
|
|
|
2016-08-19 17:30:25 +01:00
|
|
|
|
register_errors(service_blueprint)
|
2016-02-17 17:04:50 +00:00
|
|
|
|
|
2016-01-08 17:51:46 +00:00
|
|
|
|
|
2018-02-19 14:33:44 +00:00
|
|
|
|
@service_blueprint.errorhandler(IntegrityError)
|
|
|
|
|
|
def handle_integrity_error(exc):
|
|
|
|
|
|
"""
|
2023-07-10 11:06:29 -07:00
|
|
|
|
Handle integrity errors caused by the unique constraint on ix_organization_name
|
2018-02-19 14:33:44 +00:00
|
|
|
|
"""
|
2019-03-14 12:09:29 +00:00
|
|
|
|
if any(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
'duplicate key value violates unique constraint "{}"'.format(constraint)
|
|
|
|
|
|
in str(exc)
|
|
|
|
|
|
for constraint in {"services_name_key", "services_email_from_key"}
|
2019-03-14 12:09:29 +00:00
|
|
|
|
):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return (
|
|
|
|
|
|
jsonify(
|
|
|
|
|
|
result="error",
|
|
|
|
|
|
message={
|
|
|
|
|
|
"name": [
|
|
|
|
|
|
"Duplicate service name '{}'".format(
|
|
|
|
|
|
exc.params.get("name", exc.params.get("email_from", ""))
|
|
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
},
|
|
|
|
|
|
),
|
|
|
|
|
|
400,
|
|
|
|
|
|
)
|
2018-02-19 14:33:44 +00:00
|
|
|
|
current_app.logger.exception(exc)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return jsonify(result="error", message="Internal server error"), 500
|
2018-02-19 14:33:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("", methods=["GET"])
|
2016-02-19 15:53:45 +00:00
|
|
|
|
def get_services():
|
2023-08-29 14:54:30 -07:00
|
|
|
|
only_active = request.args.get("only_active") == "True"
|
|
|
|
|
|
detailed = request.args.get("detailed") == "True"
|
|
|
|
|
|
user_id = request.args.get("user_id", None)
|
|
|
|
|
|
include_from_test_key = request.args.get("include_from_test_key", "True") != "False"
|
2017-01-31 16:12:46 +00:00
|
|
|
|
|
2016-12-29 13:50:41 +00:00
|
|
|
|
# If start and end date are not set, we are expecting today's stats.
|
2017-01-31 16:12:46 +00:00
|
|
|
|
today = str(datetime.utcnow().date())
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
start_date = datetime.strptime(
|
|
|
|
|
|
request.args.get("start_date", today), "%Y-%m-%d"
|
|
|
|
|
|
).date()
|
|
|
|
|
|
end_date = datetime.strptime(request.args.get("end_date", today), "%Y-%m-%d").date()
|
2016-11-09 15:07:23 +00:00
|
|
|
|
|
2016-02-19 15:53:45 +00:00
|
|
|
|
if user_id:
|
2016-11-09 15:07:23 +00:00
|
|
|
|
services = dao_fetch_all_services_by_user(user_id, only_active)
|
|
|
|
|
|
elif detailed:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
result = jsonify(
|
|
|
|
|
|
data=get_detailed_services(
|
|
|
|
|
|
start_date=start_date,
|
|
|
|
|
|
end_date=end_date,
|
|
|
|
|
|
only_active=only_active,
|
|
|
|
|
|
include_from_test_key=include_from_test_key,
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
2017-09-15 14:40:56 +01:00
|
|
|
|
return result
|
2016-02-19 15:53:45 +00:00
|
|
|
|
else:
|
2016-11-09 15:07:23 +00:00
|
|
|
|
services = dao_fetch_all_services(only_active)
|
2022-05-06 15:52:44 +01:00
|
|
|
|
data = service_schema.dump(services, many=True)
|
2016-02-19 15:53:45 +00:00
|
|
|
|
return jsonify(data=data)
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/find-services-by-name", methods=["GET"])
|
2019-08-13 17:20:37 +01:00
|
|
|
|
def find_services_by_name():
|
2023-08-29 14:54:30 -07:00
|
|
|
|
service_name = request.args.get("service_name")
|
2019-08-13 17:20:37 +01:00
|
|
|
|
if not service_name:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
errors = {"service_name": ["Missing data for required field."]}
|
2019-08-13 17:20:37 +01:00
|
|
|
|
raise InvalidRequest(errors, status_code=400)
|
|
|
|
|
|
fetched_services = get_services_by_partial_name(service_name)
|
2019-08-16 17:30:04 +01:00
|
|
|
|
data = [service.serialize_for_org_dashboard() for service in fetched_services]
|
2019-08-13 17:20:37 +01:00
|
|
|
|
return jsonify(data=data), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/live-services-data", methods=["GET"])
|
2019-04-25 18:09:33 +01:00
|
|
|
|
def get_live_services_data():
|
|
|
|
|
|
data = dao_fetch_live_services_data()
|
|
|
|
|
|
return jsonify(data=data)
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>", methods=["GET"])
|
2016-02-19 15:53:45 +00:00
|
|
|
|
def get_service_by_id(service_id):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if request.args.get("detailed") == "True":
|
|
|
|
|
|
data = get_detailed_service(
|
|
|
|
|
|
service_id, today_only=request.args.get("today_only") == "True"
|
|
|
|
|
|
)
|
2016-07-18 12:03:44 +01:00
|
|
|
|
else:
|
|
|
|
|
|
fetched = dao_fetch_service_by_id(service_id)
|
2016-03-11 15:34:20 +00:00
|
|
|
|
|
2022-05-06 15:52:44 +01:00
|
|
|
|
data = service_schema.dump(fetched)
|
2017-05-22 11:33:24 +01:00
|
|
|
|
return jsonify(data=data)
|
2016-02-19 15:53:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/statistics")
|
2018-05-09 11:36:42 +01:00
|
|
|
|
def get_service_notification_statistics(service_id):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return jsonify(
|
|
|
|
|
|
data=get_service_statistics(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
request.args.get("today_only") == "True",
|
|
|
|
|
|
int(request.args.get("limit_days", 7)),
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
2018-05-09 11:36:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("", methods=["POST"])
|
2016-01-08 17:51:46 +00:00
|
|
|
|
def create_service():
|
2016-02-19 15:53:45 +00:00
|
|
|
|
data = request.get_json()
|
2017-12-06 11:01:18 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if not data.get("user_id"):
|
|
|
|
|
|
errors = {"user_id": ["Missing data for required field."]}
|
2016-06-14 15:07:23 +01:00
|
|
|
|
raise InvalidRequest(errors, status_code=400)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
data.pop("service_domain", None)
|
2019-04-05 16:26:52 +01:00
|
|
|
|
|
2023-09-06 12:26:37 -04:00
|
|
|
|
data["total_message_limit"] = current_app.config["TOTAL_MESSAGE_LIMIT"]
|
|
|
|
|
|
|
2017-05-24 16:27:12 +01:00
|
|
|
|
# validate json with marshmallow
|
2017-12-01 16:31:21 +00:00
|
|
|
|
service_schema.load(data)
|
2017-05-24 16:27:12 +01:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
user = get_user_by_id(data.pop("user_id"))
|
2017-05-24 16:27:12 +01:00
|
|
|
|
|
|
|
|
|
|
# unpack valid json into service object
|
|
|
|
|
|
valid_service = Service.from_json(data)
|
|
|
|
|
|
|
2021-04-14 07:11:01 +01:00
|
|
|
|
with transaction():
|
2023-11-06 11:49:17 -07:00
|
|
|
|
dao_create_service(valid_service, user)
|
2021-04-12 13:52:40 +01:00
|
|
|
|
set_default_free_allowance_for_service(service=valid_service, year_start=None)
|
2021-04-07 09:58:12 +01:00
|
|
|
|
|
2022-05-06 15:52:44 +01:00
|
|
|
|
return jsonify(data=service_schema.dump(valid_service)), 201
|
2016-01-08 17:51:46 +00:00
|
|
|
|
|
2016-02-19 15:53:45 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>", methods=["POST"])
|
2016-01-08 17:51:46 +00:00
|
|
|
|
def update_service(service_id):
|
2017-09-08 12:09:45 +01:00
|
|
|
|
req_json = request.get_json()
|
2016-02-19 15:53:45 +00:00
|
|
|
|
fetched_service = dao_fetch_service_by_id(service_id)
|
2017-05-12 14:07:06 +01:00
|
|
|
|
# Capture the status change here as Marshmallow changes this later
|
2023-08-29 14:54:30 -07:00
|
|
|
|
service_going_live = fetched_service.restricted and not req_json.get(
|
|
|
|
|
|
"restricted", True
|
|
|
|
|
|
)
|
2022-05-06 15:52:44 +01:00
|
|
|
|
current_data = dict(service_schema.dump(fetched_service).items())
|
2016-02-19 15:53:45 +00:00
|
|
|
|
current_data.update(request.get_json())
|
2017-12-04 16:07:26 +00:00
|
|
|
|
|
2022-05-06 15:25:14 +01:00
|
|
|
|
service = service_schema.load(current_data)
|
2018-02-01 17:16:48 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if "email_branding" in req_json:
|
|
|
|
|
|
email_branding_id = req_json["email_branding"]
|
|
|
|
|
|
service.email_branding = (
|
|
|
|
|
|
None
|
|
|
|
|
|
if not email_branding_id
|
|
|
|
|
|
else EmailBranding.query.get(email_branding_id)
|
|
|
|
|
|
)
|
2018-02-01 17:16:48 +00:00
|
|
|
|
dao_update_service(service)
|
2017-09-25 12:26:29 +01:00
|
|
|
|
|
2017-05-12 14:07:06 +01:00
|
|
|
|
if service_going_live:
|
|
|
|
|
|
send_notification_to_service_users(
|
|
|
|
|
|
service_id=service_id,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
template_id=current_app.config["SERVICE_NOW_LIVE_TEMPLATE_ID"],
|
2017-05-12 14:07:06 +01:00
|
|
|
|
personalisation={
|
2023-12-06 10:13:27 -05:00
|
|
|
|
"service_name": current_data["name"]
|
2017-05-12 14:07:06 +01:00
|
|
|
|
},
|
2023-08-29 14:54:30 -07:00
|
|
|
|
include_user_fields=["name"],
|
2017-05-12 14:07:06 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
2022-05-06 15:52:44 +01:00
|
|
|
|
return jsonify(data=service_schema.dump(fetched_service)), 200
|
2016-01-13 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/api-key", methods=["POST"])
|
2016-06-23 16:44:57 +01:00
|
|
|
|
def create_api_key(service_id=None):
|
2016-02-19 15:53:45 +00:00
|
|
|
|
fetched_service = dao_fetch_service_by_id(service_id=service_id)
|
2022-05-06 15:25:14 +01:00
|
|
|
|
valid_api_key = api_key_schema.load(request.get_json())
|
2016-04-20 17:25:20 +01:00
|
|
|
|
valid_api_key.service = fetched_service
|
|
|
|
|
|
save_model_api_key(valid_api_key)
|
|
|
|
|
|
unsigned_api_key = get_unsigned_secret(valid_api_key.id)
|
2016-01-19 12:07:00 +00:00
|
|
|
|
return jsonify(data=unsigned_api_key), 201
|
2016-01-13 14:05:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/api-key/revoke/<uuid:api_key_id>", methods=["POST"]
|
|
|
|
|
|
)
|
2016-01-20 14:48:44 +00:00
|
|
|
|
def revoke_api_key(service_id, api_key_id):
|
2016-06-22 15:27:28 +01:00
|
|
|
|
expire_api_key(service_id=service_id, api_key_id=api_key_id)
|
2016-01-14 11:30:45 +00:00
|
|
|
|
return jsonify(), 202
|
2016-01-13 09:25:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/api-keys", methods=["GET"])
|
|
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/api-keys/<uuid:key_id>", methods=["GET"])
|
2016-01-21 12:13:17 +00:00
|
|
|
|
def get_api_keys(service_id, key_id=None):
|
2016-03-11 15:34:20 +00:00
|
|
|
|
dao_fetch_service_by_id(service_id=service_id)
|
|
|
|
|
|
|
2016-01-20 15:23:32 +00:00
|
|
|
|
try:
|
2016-01-21 12:13:17 +00:00
|
|
|
|
if key_id:
|
|
|
|
|
|
api_keys = [get_model_api_keys(service_id=service_id, id=key_id)]
|
|
|
|
|
|
else:
|
|
|
|
|
|
api_keys = get_model_api_keys(service_id=service_id)
|
|
|
|
|
|
except NoResultFound:
|
2016-06-14 15:07:23 +01:00
|
|
|
|
error = "API key not found for id: {}".format(service_id)
|
|
|
|
|
|
raise InvalidRequest(error, status_code=404)
|
2016-01-20 15:23:32 +00:00
|
|
|
|
|
2022-05-06 15:52:44 +01:00
|
|
|
|
return jsonify(apiKeys=api_key_schema.dump(api_keys, many=True)), 200
|
2016-02-23 17:52:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/users", methods=["GET"])
|
2016-02-23 17:52:55 +00:00
|
|
|
|
def get_users_for_service(service_id):
|
|
|
|
|
|
fetched = dao_fetch_service_by_id(service_id)
|
2018-03-06 17:47:29 +00:00
|
|
|
|
return jsonify(data=[x.serialize() for x in fetched.users])
|
2016-02-25 12:11:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/users/<user_id>", methods=["POST"])
|
2016-02-29 17:38:02 +00:00
|
|
|
|
def add_user_to_service(service_id, user_id):
|
|
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
2016-11-07 17:42:23 +00:00
|
|
|
|
user = get_user_by_id(user_id=user_id)
|
2016-02-29 17:38:02 +00:00
|
|
|
|
|
|
|
|
|
|
if user in service.users:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
error = "User id: {} already part of service id: {}".format(user_id, service_id)
|
2016-06-14 15:07:23 +01:00
|
|
|
|
raise InvalidRequest(error, status_code=400)
|
2016-02-29 17:38:02 +00:00
|
|
|
|
|
2019-03-12 16:46:15 +00:00
|
|
|
|
data = request.get_json()
|
2019-03-12 19:07:12 +00:00
|
|
|
|
validate(data, post_set_permissions_schema)
|
|
|
|
|
|
|
|
|
|
|
|
permissions = [
|
2023-08-29 14:54:30 -07:00
|
|
|
|
Permission(service_id=service_id, user_id=user_id, permission=p["permission"])
|
|
|
|
|
|
for p in data["permissions"]
|
2019-03-12 19:07:12 +00:00
|
|
|
|
]
|
2023-08-29 14:54:30 -07:00
|
|
|
|
folder_permissions = data.get("folder_permissions", [])
|
2019-03-12 16:46:15 +00:00
|
|
|
|
|
2019-03-14 16:55:48 +00:00
|
|
|
|
dao_add_user_to_service(service, user, permissions, folder_permissions)
|
2022-05-06 15:52:44 +01:00
|
|
|
|
data = service_schema.dump(service)
|
2016-02-29 17:38:02 +00:00
|
|
|
|
return jsonify(data=data), 201
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/users/<user_id>", methods=["DELETE"])
|
2016-03-22 13:14:23 +00:00
|
|
|
|
def remove_user_from_service(service_id, user_id):
|
|
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
2016-11-07 17:42:23 +00:00
|
|
|
|
user = get_user_by_id(user_id=user_id)
|
2016-03-22 13:14:23 +00:00
|
|
|
|
if user not in service.users:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
error = "User not found"
|
2016-06-14 15:07:23 +01:00
|
|
|
|
raise InvalidRequest(error, status_code=404)
|
|
|
|
|
|
|
2016-03-22 13:14:23 +00:00
|
|
|
|
elif len(service.users) == 1:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
error = "You cannot remove the only user for a service"
|
2016-06-14 15:07:23 +01:00
|
|
|
|
raise InvalidRequest(error, status_code=400)
|
|
|
|
|
|
|
2016-03-22 13:14:23 +00:00
|
|
|
|
dao_remove_user_from_service(service, user)
|
|
|
|
|
|
return jsonify({}), 204
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-21 16:32:20 +01:00
|
|
|
|
# This is placeholder get method until more thought
|
|
|
|
|
|
# goes into how we want to fetch and view various items in history
|
|
|
|
|
|
# tables. This is so product owner can pass stories as done
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/history", methods=["GET"])
|
2016-04-25 10:38:37 +01:00
|
|
|
|
def get_service_history(service_id):
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.models import ApiKey, Service, TemplateHistory
|
2016-04-25 10:38:37 +01:00
|
|
|
|
from app.schemas import (
|
|
|
|
|
|
api_key_history_schema,
|
2021-03-10 13:55:06 +00:00
|
|
|
|
service_history_schema,
|
|
|
|
|
|
template_history_schema,
|
2016-04-25 10:38:37 +01:00
|
|
|
|
)
|
2016-04-21 16:32:20 +01:00
|
|
|
|
|
|
|
|
|
|
service_history = Service.get_history_model().query.filter_by(id=service_id).all()
|
2022-05-06 15:52:44 +01:00
|
|
|
|
service_data = service_history_schema.dump(service_history, many=True)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
api_key_history = (
|
|
|
|
|
|
ApiKey.get_history_model().query.filter_by(service_id=service_id).all()
|
|
|
|
|
|
)
|
2022-05-06 15:52:44 +01:00
|
|
|
|
api_keys_data = api_key_history_schema.dump(api_key_history, many=True)
|
2016-04-21 16:32:20 +01:00
|
|
|
|
|
2016-08-02 16:23:14 +01:00
|
|
|
|
template_history = TemplateHistory.query.filter_by(service_id=service_id).all()
|
2022-05-06 15:52:44 +01:00
|
|
|
|
template_data = template_history_schema.dump(template_history, many=True)
|
2016-04-25 10:38:37 +01:00
|
|
|
|
|
|
|
|
|
|
data = {
|
2023-08-29 14:54:30 -07:00
|
|
|
|
"service_history": service_data,
|
|
|
|
|
|
"api_key_history": api_keys_data,
|
|
|
|
|
|
"template_history": template_data,
|
|
|
|
|
|
"events": [],
|
|
|
|
|
|
}
|
2016-04-21 16:32:20 +01:00
|
|
|
|
|
|
|
|
|
|
return jsonify(data=data)
|
2016-06-28 15:17:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/notifications", methods=["GET", "POST"])
|
2016-06-28 15:17:36 +01:00
|
|
|
|
def get_all_notifications_for_service(service_id):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if request.method == "GET":
|
2022-05-06 15:25:14 +01:00
|
|
|
|
data = notifications_filter_schema.load(request.args)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
elif request.method == "POST":
|
2021-12-16 14:12:47 +00:00
|
|
|
|
# Must transform request.get_json() to MultiDict as NotificationsFilterSchema expects a MultiDict.
|
|
|
|
|
|
# Unlike request.args, request.get_json() does not return a MultiDict but instead just a dict.
|
2022-05-06 15:25:14 +01:00
|
|
|
|
data = notifications_filter_schema.load(MultiDict(request.get_json()))
|
2021-12-16 14:12:47 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if data.get("to"):
|
|
|
|
|
|
notification_type = (
|
|
|
|
|
|
data.get("template_type")[0] if data.get("template_type") else None
|
|
|
|
|
|
)
|
|
|
|
|
|
return search_for_notification_by_to_field(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
search_term=data["to"],
|
|
|
|
|
|
statuses=data.get("status"),
|
|
|
|
|
|
notification_type=notification_type,
|
|
|
|
|
|
)
|
|
|
|
|
|
page = data["page"] if "page" in data else 1
|
|
|
|
|
|
page_size = (
|
|
|
|
|
|
data["page_size"]
|
|
|
|
|
|
if "page_size" in data
|
|
|
|
|
|
else current_app.config.get("PAGE_SIZE")
|
|
|
|
|
|
)
|
|
|
|
|
|
limit_days = data.get("limit_days")
|
|
|
|
|
|
include_jobs = data.get("include_jobs", True)
|
|
|
|
|
|
include_from_test_key = data.get("include_from_test_key", False)
|
|
|
|
|
|
include_one_off = data.get("include_one_off", True)
|
2016-06-28 15:17:36 +01:00
|
|
|
|
|
2021-12-03 17:07:03 +00:00
|
|
|
|
# count_pages is not being used for whether to count the number of pages, but instead as a flag
|
|
|
|
|
|
# for whether to show pagination links
|
2023-08-29 14:54:30 -07:00
|
|
|
|
count_pages = data.get("count_pages", True)
|
2019-01-07 17:12:00 +00:00
|
|
|
|
|
2016-06-28 15:17:36 +01:00
|
|
|
|
pagination = notifications_dao.get_notifications_for_service(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
filter_dict=data,
|
|
|
|
|
|
page=page,
|
|
|
|
|
|
page_size=page_size,
|
2021-12-03 17:07:03 +00:00
|
|
|
|
count_pages=False,
|
2016-09-15 16:00:46 +01:00
|
|
|
|
limit_days=limit_days,
|
2016-09-23 10:35:31 +01:00
|
|
|
|
include_jobs=include_jobs,
|
2018-07-18 10:54:20 +01:00
|
|
|
|
include_from_test_key=include_from_test_key,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
include_one_off=include_one_off,
|
2016-09-23 10:35:31 +01:00
|
|
|
|
)
|
2019-01-07 17:12:00 +00:00
|
|
|
|
|
2016-06-28 15:17:36 +01:00
|
|
|
|
kwargs = request.args.to_dict()
|
2023-08-29 14:54:30 -07:00
|
|
|
|
kwargs["service_id"] = service_id
|
2018-06-21 17:04:49 +01:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
if data.get("format_for_csv"):
|
|
|
|
|
|
notifications = [
|
|
|
|
|
|
notification.serialize_for_csv() for notification in pagination.items
|
|
|
|
|
|
]
|
2018-06-21 17:04:49 +01:00
|
|
|
|
else:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
notifications = notification_with_template_schema.dump(
|
|
|
|
|
|
pagination.items, many=True
|
|
|
|
|
|
)
|
2021-12-03 17:07:03 +00:00
|
|
|
|
# We try and get the next page of results to work out if we need provide a pagination link to the next page
|
|
|
|
|
|
# in our response if it exists. Note, this could be done instead by changing `count_pages` in the previous
|
|
|
|
|
|
# call to be True which will enable us to use Flask-Sqlalchemy to tell if there is a next page of results but
|
|
|
|
|
|
# this way is much more performant for services with many results (unlike Flask SqlAlchemy, this approach
|
|
|
|
|
|
# doesn't do an additional query to count all the results of which there could be millions but instead only
|
|
|
|
|
|
# asks for a single extra page of results).
|
|
|
|
|
|
next_page_of_pagination = notifications_dao.get_notifications_for_service(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
filter_dict=data,
|
|
|
|
|
|
page=page + 1,
|
|
|
|
|
|
page_size=page_size,
|
|
|
|
|
|
count_pages=False,
|
|
|
|
|
|
limit_days=limit_days,
|
|
|
|
|
|
include_jobs=include_jobs,
|
|
|
|
|
|
include_from_test_key=include_from_test_key,
|
|
|
|
|
|
include_one_off=include_one_off,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
error_out=False, # False so that if there are no results, it doesn't end in aborting with a 404
|
2021-12-03 17:07:03 +00:00
|
|
|
|
)
|
2021-12-02 09:44:43 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return (
|
|
|
|
|
|
jsonify(
|
|
|
|
|
|
notifications=notifications,
|
|
|
|
|
|
page_size=page_size,
|
|
|
|
|
|
links=get_prev_next_pagination_links(
|
|
|
|
|
|
page,
|
|
|
|
|
|
len(next_page_of_pagination.items),
|
|
|
|
|
|
".get_all_notifications_for_service",
|
|
|
|
|
|
**kwargs
|
|
|
|
|
|
)
|
|
|
|
|
|
if count_pages
|
|
|
|
|
|
else {},
|
|
|
|
|
|
),
|
|
|
|
|
|
200,
|
|
|
|
|
|
)
|
2016-07-18 12:03:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/notifications/<uuid:notification_id>", methods=["GET"]
|
|
|
|
|
|
)
|
2017-06-06 16:21:57 +01:00
|
|
|
|
def get_notification_for_service(service_id, notification_id):
|
|
|
|
|
|
notification = notifications_dao.get_notification_with_personalisation(
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
notification_id,
|
|
|
|
|
|
key_type=None,
|
|
|
|
|
|
)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return (
|
|
|
|
|
|
jsonify(
|
|
|
|
|
|
notification_with_template_schema.dump(notification),
|
|
|
|
|
|
),
|
|
|
|
|
|
200,
|
|
|
|
|
|
)
|
2017-06-06 16:21:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
def search_for_notification_by_to_field(
|
|
|
|
|
|
service_id, search_term, statuses, notification_type
|
|
|
|
|
|
):
|
2019-12-16 10:27:55 +00:00
|
|
|
|
results = notifications_dao.dao_get_notifications_by_recipient_or_reference(
|
2018-03-07 18:13:40 +00:00
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
search_term=search_term,
|
|
|
|
|
|
statuses=statuses,
|
2020-05-01 11:18:33 +01:00
|
|
|
|
notification_type=notification_type,
|
|
|
|
|
|
page=1,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
page_size=current_app.config["PAGE_SIZE"],
|
2018-03-07 18:13:40 +00:00
|
|
|
|
)
|
2021-12-10 12:06:55 +00:00
|
|
|
|
|
|
|
|
|
|
# We try and get the next page of results to work out if we need provide a pagination link to the next page
|
|
|
|
|
|
# in our response. Note, this was previously be done by having
|
|
|
|
|
|
# notifications_dao.dao_get_notifications_by_recipient_or_reference use count=False when calling
|
|
|
|
|
|
# Flask-Sqlalchemys `paginate'. But instead we now use this way because it is much more performant for
|
|
|
|
|
|
# services with many results (unlike using Flask SqlAlchemy `paginate` with `count=True`, this approach
|
|
|
|
|
|
# doesn't do an additional query to count all the results of which there could be millions but instead only
|
|
|
|
|
|
# asks for a single extra page of results).
|
|
|
|
|
|
next_page_of_pagination = notifications_dao.dao_get_notifications_by_recipient_or_reference(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
search_term=search_term,
|
|
|
|
|
|
statuses=statuses,
|
|
|
|
|
|
notification_type=notification_type,
|
|
|
|
|
|
page=2,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
page_size=current_app.config["PAGE_SIZE"],
|
|
|
|
|
|
error_out=False, # False so that if there are no results, it doesn't end in aborting with a 404
|
2021-12-10 12:06:55 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return (
|
|
|
|
|
|
jsonify(
|
|
|
|
|
|
notifications=notification_with_template_schema.dump(
|
|
|
|
|
|
results.items, many=True
|
|
|
|
|
|
),
|
|
|
|
|
|
links=get_prev_next_pagination_links(
|
|
|
|
|
|
1,
|
|
|
|
|
|
len(next_page_of_pagination.items),
|
|
|
|
|
|
".get_all_notifications_for_service",
|
|
|
|
|
|
statuses=statuses,
|
|
|
|
|
|
notification_type=notification_type,
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
),
|
2020-05-01 11:18:33 +01:00
|
|
|
|
),
|
2023-08-29 14:54:30 -07:00
|
|
|
|
200,
|
|
|
|
|
|
)
|
2017-05-05 14:12:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/notifications/monthly", methods=["GET"])
|
2017-01-30 15:17:26 +00:00
|
|
|
|
def get_monthly_notification_stats(service_id):
|
2018-06-28 15:10:14 +01:00
|
|
|
|
# check service_id validity
|
|
|
|
|
|
dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
2017-01-30 15:17:26 +00:00
|
|
|
|
try:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
year = int(request.args.get("year", "NaN"))
|
2017-01-30 15:17:26 +00:00
|
|
|
|
except ValueError:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
raise InvalidRequest("Year must be a number", status_code=400)
|
2017-01-30 15:17:26 +00:00
|
|
|
|
|
2023-06-14 13:19:11 -07:00
|
|
|
|
start_date, end_date = get_calendar_year(year)
|
2018-06-28 15:10:14 +01:00
|
|
|
|
|
|
|
|
|
|
data = statistics.create_empty_monthly_notification_status_stats_dict(year)
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
stats = fetch_notification_status_for_service_by_month(
|
|
|
|
|
|
start_date, end_date, service_id
|
|
|
|
|
|
)
|
2018-06-28 15:10:14 +01:00
|
|
|
|
statistics.add_monthly_notification_status_stats(data, stats)
|
|
|
|
|
|
|
|
|
|
|
|
now = datetime.utcnow()
|
|
|
|
|
|
if end_date > now:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
todays_deltas = fetch_notification_status_for_service_for_day(
|
|
|
|
|
|
now, service_id=service_id
|
|
|
|
|
|
)
|
2018-06-28 15:10:14 +01:00
|
|
|
|
statistics.add_monthly_notification_status_stats(data, todays_deltas)
|
|
|
|
|
|
|
|
|
|
|
|
return jsonify(data=data)
|
|
|
|
|
|
|
2017-01-30 15:17:26 +00:00
|
|
|
|
|
2016-07-25 14:27:06 +01:00
|
|
|
|
def get_detailed_service(service_id, today_only=False):
|
2016-07-18 12:03:44 +01:00
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
2018-08-03 14:35:36 +01:00
|
|
|
|
service.statistics = get_service_statistics(service_id, today_only)
|
2022-05-06 15:52:44 +01:00
|
|
|
|
return detailed_service_schema.dump(service)
|
2016-08-11 17:24:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
2018-08-13 16:34:04 +01:00
|
|
|
|
def get_service_statistics(service_id, today_only, limit_days=7):
|
2018-08-03 14:35:36 +01:00
|
|
|
|
# today_only flag is used by the send page to work out if the service will exceed their daily usage by sending a job
|
2018-08-13 16:34:04 +01:00
|
|
|
|
if today_only:
|
|
|
|
|
|
stats = dao_fetch_todays_stats_for_service(service_id)
|
|
|
|
|
|
else:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
stats = fetch_notification_status_for_service_for_today_and_7_previous_days(
|
|
|
|
|
|
service_id, limit_days=limit_days
|
|
|
|
|
|
)
|
2018-08-13 16:34:04 +01:00
|
|
|
|
|
2018-08-03 14:35:36 +01:00
|
|
|
|
return statistics.format_statistics(stats)
|
2018-05-09 11:36:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
def get_detailed_services(
|
|
|
|
|
|
start_date, end_date, only_active=False, include_from_test_key=True
|
|
|
|
|
|
):
|
2016-12-29 13:50:41 +00:00
|
|
|
|
if start_date == datetime.utcnow().date():
|
2023-08-29 14:54:30 -07:00
|
|
|
|
stats = dao_fetch_todays_stats_for_all_services(
|
|
|
|
|
|
include_from_test_key=include_from_test_key, only_active=only_active
|
|
|
|
|
|
)
|
2016-12-29 13:50:41 +00:00
|
|
|
|
else:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
stats = fetch_stats_for_all_services_by_date_range(
|
|
|
|
|
|
start_date=start_date,
|
|
|
|
|
|
end_date=end_date,
|
|
|
|
|
|
include_from_test_key=include_from_test_key,
|
|
|
|
|
|
)
|
2017-10-26 12:15:52 +01:00
|
|
|
|
results = []
|
2023-07-21 10:42:17 -07:00
|
|
|
|
|
|
|
|
|
|
mylist = itertools.groupby(stats, lambda x: x.service_id)
|
|
|
|
|
|
for _service_id, rows in mylist:
|
2017-10-26 12:15:52 +01:00
|
|
|
|
rows = list(rows)
|
2019-01-09 11:43:40 +00:00
|
|
|
|
s = statistics.format_statistics(rows)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
results.append(
|
|
|
|
|
|
{
|
|
|
|
|
|
"id": str(rows[0].service_id),
|
|
|
|
|
|
"name": rows[0].name,
|
|
|
|
|
|
"notification_type": rows[0].notification_type,
|
|
|
|
|
|
"restricted": rows[0].restricted,
|
|
|
|
|
|
"active": rows[0].active,
|
|
|
|
|
|
"created_at": rows[0].created_at,
|
|
|
|
|
|
"statistics": s,
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
2017-10-26 12:15:52 +01:00
|
|
|
|
return results
|
2016-09-20 17:35:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/guest-list", methods=["GET"])
|
2020-07-28 10:16:48 +01:00
|
|
|
|
def get_guest_list(service_id):
|
2021-03-10 13:55:06 +00:00
|
|
|
|
from app.models import EMAIL_TYPE, MOBILE_TYPE
|
2023-08-29 14:54:30 -07:00
|
|
|
|
|
2016-09-27 13:47:53 +01:00
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
|
|
|
|
|
if not service:
|
|
|
|
|
|
raise InvalidRequest("Service does not exist", status_code=404)
|
2016-09-20 17:35:15 +01:00
|
|
|
|
|
2020-07-28 10:18:47 +01:00
|
|
|
|
guest_list = dao_fetch_service_guest_list(service.id)
|
2016-09-23 12:21:00 +01:00
|
|
|
|
return jsonify(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
email_addresses=[
|
|
|
|
|
|
item.recipient for item in guest_list if item.recipient_type == EMAIL_TYPE
|
|
|
|
|
|
],
|
|
|
|
|
|
phone_numbers=[
|
|
|
|
|
|
item.recipient for item in guest_list if item.recipient_type == MOBILE_TYPE
|
|
|
|
|
|
],
|
2016-09-23 12:21:00 +01:00
|
|
|
|
)
|
2016-09-20 17:35:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/guest-list", methods=["PUT"])
|
2020-07-28 10:16:48 +01:00
|
|
|
|
def update_guest_list(service_id):
|
2016-09-23 12:21:00 +01:00
|
|
|
|
# doesn't commit so if there are any errors, we preserve old values in db
|
2020-07-28 10:18:47 +01:00
|
|
|
|
dao_remove_service_guest_list(service_id)
|
2016-09-23 12:21:00 +01:00
|
|
|
|
try:
|
2020-07-28 10:19:46 +01:00
|
|
|
|
guest_list_objects = get_guest_list_objects(service_id, request.get_json())
|
2016-09-23 12:21:00 +01:00
|
|
|
|
except ValueError as e:
|
|
|
|
|
|
current_app.logger.exception(e)
|
|
|
|
|
|
dao_rollback()
|
2023-08-29 14:54:30 -07:00
|
|
|
|
msg = "{} is not a valid email address or phone number".format(str(e))
|
2017-01-31 11:33:36 +00:00
|
|
|
|
raise InvalidRequest(msg, 400)
|
2016-09-23 12:21:00 +01:00
|
|
|
|
else:
|
2020-07-28 10:18:47 +01:00
|
|
|
|
dao_add_and_commit_guest_list_contacts(guest_list_objects)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return "", 204
|
2016-09-30 19:44:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/archive", methods=["POST"])
|
2017-01-30 16:32:44 +00:00
|
|
|
|
def archive_service(service_id):
|
|
|
|
|
|
"""
|
|
|
|
|
|
When a service is archived the service is made inactive, templates are archived and api keys are revoked.
|
|
|
|
|
|
There is no coming back from this operation.
|
|
|
|
|
|
:param service_id:
|
|
|
|
|
|
:return:
|
|
|
|
|
|
"""
|
|
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
2017-01-31 11:33:36 +00:00
|
|
|
|
if service.active:
|
|
|
|
|
|
dao_archive_service(service.id)
|
2017-01-30 16:32:44 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return "", 204
|
2017-01-30 16:32:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/suspend", methods=["POST"])
|
2017-01-30 16:32:44 +00:00
|
|
|
|
def suspend_service(service_id):
|
|
|
|
|
|
"""
|
|
|
|
|
|
Suspending a service will mark the service as inactive and revoke API keys.
|
|
|
|
|
|
:param service_id:
|
|
|
|
|
|
:return:
|
|
|
|
|
|
"""
|
|
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
2017-01-31 11:33:36 +00:00
|
|
|
|
if service.active:
|
|
|
|
|
|
dao_suspend_service(service.id)
|
2017-01-30 16:32:44 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return "", 204
|
2017-01-30 16:32:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/resume", methods=["POST"])
|
2017-01-30 16:32:44 +00:00
|
|
|
|
def resume_service(service_id):
|
|
|
|
|
|
"""
|
|
|
|
|
|
Resuming a service that has been suspended will mark the service as active.
|
|
|
|
|
|
The service will need to re-create API keys
|
|
|
|
|
|
:param service_id:
|
|
|
|
|
|
:return:
|
|
|
|
|
|
"""
|
|
|
|
|
|
service = dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
|
2017-01-31 11:33:36 +00:00
|
|
|
|
if not service.active:
|
|
|
|
|
|
dao_resume_service(service.id)
|
2016-11-01 16:09:55 +00:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return "", 204
|
2016-11-01 16:09:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/notifications/templates_usage/monthly", methods=["GET"]
|
|
|
|
|
|
)
|
2017-11-14 14:32:34 +00:00
|
|
|
|
def get_monthly_template_usage(service_id):
|
|
|
|
|
|
try:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
start_date, end_date = get_calendar_year(int(request.args.get("year", "NaN")))
|
2019-01-10 16:24:51 +00:00
|
|
|
|
data = fetch_monthly_template_usage_for_service(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
start_date=start_date, end_date=end_date, service_id=service_id
|
2017-11-15 15:55:00 +00:00
|
|
|
|
)
|
|
|
|
|
|
stats = list()
|
|
|
|
|
|
for i in data:
|
|
|
|
|
|
stats.append(
|
|
|
|
|
|
{
|
2023-08-29 14:54:30 -07:00
|
|
|
|
"template_id": str(i.template_id),
|
|
|
|
|
|
"name": i.name,
|
|
|
|
|
|
"type": i.template_type,
|
|
|
|
|
|
"month": i.month,
|
|
|
|
|
|
"year": i.year,
|
|
|
|
|
|
"count": i.count,
|
2017-11-15 15:55:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
return jsonify(stats=stats), 200
|
2017-11-14 14:32:34 +00:00
|
|
|
|
except ValueError:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
raise InvalidRequest("Year must be a number", status_code=400)
|
2017-11-14 14:32:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/send-notification", methods=["POST"])
|
2017-06-15 13:40:38 +01:00
|
|
|
|
def create_one_off_notification(service_id):
|
2017-06-13 17:33:04 +01:00
|
|
|
|
resp = send_one_off_notification(service_id, request.get_json())
|
|
|
|
|
|
return jsonify(resp), 201
|
2017-08-09 15:12:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/email-reply-to", methods=["GET"])
|
2017-09-13 15:27:00 +01:00
|
|
|
|
def get_email_reply_to_addresses(service_id):
|
|
|
|
|
|
result = dao_get_reply_to_by_service_id(service_id)
|
|
|
|
|
|
return jsonify([i.serialize() for i in result]), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/email-reply-to/<uuid:reply_to_id>", methods=["GET"]
|
|
|
|
|
|
)
|
2017-09-22 15:52:11 +01:00
|
|
|
|
def get_email_reply_to_address(service_id, reply_to_id):
|
|
|
|
|
|
result = dao_get_reply_to_by_id(service_id=service_id, reply_to_id=reply_to_id)
|
|
|
|
|
|
return jsonify(result.serialize()), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/email-reply-to/verify", methods=["POST"])
|
2019-05-22 16:07:27 +01:00
|
|
|
|
def verify_reply_to_email_address(service_id):
|
2022-05-06 15:25:14 +01:00
|
|
|
|
email_address = email_data_request_schema.load(request.get_json())
|
|
|
|
|
|
|
2019-05-15 15:23:27 +01:00
|
|
|
|
check_if_reply_to_address_already_in_use(service_id, email_address["email"])
|
2023-08-29 14:54:30 -07:00
|
|
|
|
template = dao_get_template_by_id(
|
|
|
|
|
|
current_app.config["REPLY_TO_EMAIL_ADDRESS_VERIFICATION_TEMPLATE_ID"]
|
|
|
|
|
|
)
|
|
|
|
|
|
notify_service = Service.query.get(current_app.config["NOTIFY_SERVICE_ID"])
|
2019-05-10 15:32:24 +01:00
|
|
|
|
saved_notification = persist_notification(
|
|
|
|
|
|
template_id=template.id,
|
|
|
|
|
|
template_version=template.version,
|
|
|
|
|
|
recipient=email_address["email"],
|
2019-05-15 15:23:27 +01:00
|
|
|
|
service=notify_service,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
personalisation="",
|
2019-05-10 15:32:24 +01:00
|
|
|
|
notification_type=template.template_type,
|
|
|
|
|
|
api_key_id=None,
|
|
|
|
|
|
key_type=KEY_TYPE_NORMAL,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
reply_to_text=notify_service.get_default_reply_to_email_address(),
|
2019-05-10 15:32:24 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
2023-08-25 12:09:00 -07:00
|
|
|
|
send_notification_to_queue(saved_notification, queue=QueueNames.NOTIFY)
|
2019-05-10 15:32:24 +01:00
|
|
|
|
|
|
|
|
|
|
return jsonify(data={"id": saved_notification.id}), 201
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/email-reply-to", methods=["POST"])
|
2017-09-22 15:52:11 +01:00
|
|
|
|
def add_service_reply_to_email_address(service_id):
|
|
|
|
|
|
# validate the service exists, throws ResultNotFound exception.
|
|
|
|
|
|
dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
form = validate(request.get_json(), add_service_email_reply_to_request)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
check_if_reply_to_address_already_in_use(service_id, form["email_address"])
|
|
|
|
|
|
new_reply_to = add_reply_to_email_address_for_service(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
email_address=form["email_address"],
|
|
|
|
|
|
is_default=form.get("is_default", True),
|
|
|
|
|
|
)
|
2017-09-22 15:52:11 +01:00
|
|
|
|
return jsonify(data=new_reply_to.serialize()), 201
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/email-reply-to/<uuid:reply_to_email_id>", methods=["POST"]
|
|
|
|
|
|
)
|
2017-09-22 15:52:11 +01:00
|
|
|
|
def update_service_reply_to_email_address(service_id, reply_to_email_id):
|
|
|
|
|
|
# validate the service exists, throws ResultNotFound exception.
|
|
|
|
|
|
dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
form = validate(request.get_json(), add_service_email_reply_to_request)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
new_reply_to = update_reply_to_email_address(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
reply_to_id=reply_to_email_id,
|
|
|
|
|
|
email_address=form["email_address"],
|
|
|
|
|
|
is_default=form.get("is_default", True),
|
|
|
|
|
|
)
|
2017-09-22 15:52:11 +01:00
|
|
|
|
return jsonify(data=new_reply_to.serialize()), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/email-reply-to/<uuid:reply_to_email_id>/archive",
|
|
|
|
|
|
methods=["POST"],
|
|
|
|
|
|
)
|
2018-04-25 16:34:36 +01:00
|
|
|
|
def delete_service_reply_to_email_address(service_id, reply_to_email_id):
|
|
|
|
|
|
archived_reply_to = archive_reply_to_email_address(service_id, reply_to_email_id)
|
|
|
|
|
|
|
|
|
|
|
|
return jsonify(data=archived_reply_to.serialize()), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/sms-sender", methods=["POST"])
|
2017-10-19 09:58:23 +01:00
|
|
|
|
def add_service_sms_sender(service_id):
|
|
|
|
|
|
dao_fetch_service_by_id(service_id)
|
|
|
|
|
|
form = validate(request.get_json(), add_service_sms_sender_request)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
inbound_number_id = form.get("inbound_number_id", None)
|
|
|
|
|
|
sms_sender = form.get("sms_sender")
|
2017-10-25 11:58:54 +01:00
|
|
|
|
|
2017-10-19 09:58:23 +01:00
|
|
|
|
if inbound_number_id:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
updated_number = dao_allocate_number_for_service(
|
|
|
|
|
|
service_id=service_id, inbound_number_id=inbound_number_id
|
|
|
|
|
|
)
|
2017-10-25 11:58:54 +01:00
|
|
|
|
# the sms_sender in the form is not set, use the inbound number
|
2017-10-19 16:29:54 +01:00
|
|
|
|
sms_sender = updated_number.number
|
2017-10-25 11:58:54 +01:00
|
|
|
|
existing_sms_sender = dao_get_sms_senders_by_service_id(service_id)
|
|
|
|
|
|
# we don't want to create a new sms sender for the service if we are allocating an inbound number.
|
|
|
|
|
|
if len(existing_sms_sender) == 1:
|
|
|
|
|
|
update_existing_sms_sender = existing_sms_sender[0]
|
|
|
|
|
|
new_sms_sender = update_existing_sms_sender_with_inbound_number(
|
|
|
|
|
|
service_sms_sender=update_existing_sms_sender,
|
|
|
|
|
|
sms_sender=sms_sender,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
inbound_number_id=inbound_number_id,
|
|
|
|
|
|
)
|
2017-10-25 11:58:54 +01:00
|
|
|
|
|
|
|
|
|
|
return jsonify(new_sms_sender.serialize()), 201
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
new_sms_sender = dao_add_sms_sender_for_service(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
sms_sender=sms_sender,
|
|
|
|
|
|
is_default=form["is_default"],
|
|
|
|
|
|
inbound_number_id=inbound_number_id,
|
|
|
|
|
|
)
|
2017-10-19 13:59:22 +01:00
|
|
|
|
return jsonify(new_sms_sender.serialize()), 201
|
2017-10-19 09:58:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/sms-sender/<uuid:sms_sender_id>", methods=["POST"]
|
|
|
|
|
|
)
|
2017-10-19 09:58:23 +01:00
|
|
|
|
def update_service_sms_sender(service_id, sms_sender_id):
|
|
|
|
|
|
form = validate(request.get_json(), add_service_sms_sender_request)
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
sms_sender_to_update = dao_get_service_sms_senders_by_id(
|
|
|
|
|
|
service_id=service_id, service_sms_sender_id=sms_sender_id
|
|
|
|
|
|
)
|
|
|
|
|
|
if (
|
|
|
|
|
|
sms_sender_to_update.inbound_number_id
|
|
|
|
|
|
and form["sms_sender"] != sms_sender_to_update.sms_sender
|
|
|
|
|
|
):
|
|
|
|
|
|
raise InvalidRequest(
|
|
|
|
|
|
"You can not change the inbound number for service {}".format(service_id),
|
|
|
|
|
|
status_code=400,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
new_sms_sender = dao_update_service_sms_sender(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
service_sms_sender_id=sms_sender_id,
|
|
|
|
|
|
is_default=form["is_default"],
|
|
|
|
|
|
sms_sender=form["sms_sender"],
|
|
|
|
|
|
)
|
2017-10-19 13:59:22 +01:00
|
|
|
|
return jsonify(new_sms_sender.serialize()), 200
|
2017-10-19 09:58:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/sms-sender/<uuid:sms_sender_id>/archive", methods=["POST"]
|
|
|
|
|
|
)
|
2018-04-26 09:05:17 +01:00
|
|
|
|
def delete_service_sms_sender(service_id, sms_sender_id):
|
|
|
|
|
|
sms_sender = archive_sms_sender(service_id, sms_sender_id)
|
|
|
|
|
|
|
|
|
|
|
|
return jsonify(data=sms_sender.serialize()), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/sms-sender/<uuid:sms_sender_id>", methods=["GET"]
|
|
|
|
|
|
)
|
2017-10-19 10:43:49 +01:00
|
|
|
|
def get_service_sms_sender_by_id(service_id, sms_sender_id):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
sms_sender = dao_get_service_sms_senders_by_id(
|
|
|
|
|
|
service_id=service_id, service_sms_sender_id=sms_sender_id
|
|
|
|
|
|
)
|
2017-10-19 13:59:22 +01:00
|
|
|
|
return jsonify(sms_sender.serialize()), 200
|
2017-10-19 10:43:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/sms-sender", methods=["GET"])
|
2017-10-19 10:43:49 +01:00
|
|
|
|
def get_service_sms_senders_for_service(service_id):
|
|
|
|
|
|
sms_senders = dao_get_sms_senders_by_service_id(service_id=service_id)
|
2017-10-19 13:59:22 +01:00
|
|
|
|
return jsonify([sms_sender.serialize() for sms_sender in sms_senders]), 200
|
2017-10-19 10:43:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/organization", methods=["GET"])
|
2023-07-10 11:06:29 -07:00
|
|
|
|
def get_organization_for_service(service_id):
|
|
|
|
|
|
organization = dao_get_organization_by_service_id(service_id=service_id)
|
|
|
|
|
|
return jsonify(organization.serialize() if organization else {}), 200
|
2018-02-10 01:37:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/data-retention", methods=["GET"])
|
2018-07-13 15:18:27 +01:00
|
|
|
|
def get_data_retention_for_service(service_id):
|
|
|
|
|
|
data_retention_list = fetch_service_data_retention(service_id)
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return (
|
|
|
|
|
|
jsonify([data_retention.serialize() for data_retention in data_retention_list]),
|
|
|
|
|
|
200,
|
|
|
|
|
|
)
|
2018-07-13 15:18:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/data-retention/notification-type/<notification_type>",
|
|
|
|
|
|
methods=["GET"],
|
|
|
|
|
|
)
|
2018-08-13 16:44:24 +01:00
|
|
|
|
def get_data_retention_for_service_notification_type(service_id, notification_type):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
data_retention = fetch_service_data_retention_by_notification_type(
|
|
|
|
|
|
service_id, notification_type
|
|
|
|
|
|
)
|
2018-08-13 16:44:24 +01:00
|
|
|
|
return jsonify(data_retention.serialize() if data_retention else {}), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/data-retention/<uuid:data_retention_id>", methods=["GET"]
|
|
|
|
|
|
)
|
2018-07-13 15:18:27 +01:00
|
|
|
|
def get_data_retention_for_service_by_id(service_id, data_retention_id):
|
|
|
|
|
|
data_retention = fetch_service_data_retention_by_id(service_id, data_retention_id)
|
|
|
|
|
|
return jsonify(data_retention.serialize() if data_retention else {}), 200
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/data-retention", methods=["POST"])
|
2018-07-11 17:02:49 +01:00
|
|
|
|
def create_service_data_retention(service_id):
|
|
|
|
|
|
form = validate(request.get_json(), add_service_data_retention_request)
|
|
|
|
|
|
try:
|
|
|
|
|
|
new_data_retention = insert_service_data_retention(
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
notification_type=form.get("notification_type"),
|
2023-08-29 14:54:30 -07:00
|
|
|
|
days_of_retention=form.get("days_of_retention"),
|
2018-07-11 17:02:49 +01:00
|
|
|
|
)
|
|
|
|
|
|
except IntegrityError:
|
|
|
|
|
|
raise InvalidRequest(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
message="Service already has data retention for {} notification type".format(
|
|
|
|
|
|
form.get("notification_type")
|
|
|
|
|
|
),
|
|
|
|
|
|
status_code=400,
|
2018-07-11 17:02:49 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
return jsonify(result=new_data_retention.serialize()), 201
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route(
|
|
|
|
|
|
"/<uuid:service_id>/data-retention/<uuid:data_retention_id>", methods=["POST"]
|
|
|
|
|
|
)
|
2018-07-11 17:02:49 +01:00
|
|
|
|
def modify_service_data_retention(service_id, data_retention_id):
|
|
|
|
|
|
form = validate(request.get_json(), update_service_data_retention_request)
|
|
|
|
|
|
|
|
|
|
|
|
update_count = update_service_data_retention(
|
|
|
|
|
|
service_data_retention_id=data_retention_id,
|
|
|
|
|
|
service_id=service_id,
|
2023-08-29 14:54:30 -07:00
|
|
|
|
days_of_retention=form.get("days_of_retention"),
|
2018-07-11 17:02:49 +01:00
|
|
|
|
)
|
|
|
|
|
|
if update_count == 0:
|
|
|
|
|
|
raise InvalidRequest(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
message="The service data retention for id: {} was not found for service: {}".format(
|
|
|
|
|
|
data_retention_id, service_id
|
|
|
|
|
|
),
|
|
|
|
|
|
status_code=404,
|
|
|
|
|
|
)
|
2018-07-11 17:02:49 +01:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
return "", 204
|
2018-07-11 17:02:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
@service_blueprint.route("/monthly-data-by-service")
|
2019-07-19 10:57:14 +01:00
|
|
|
|
def get_monthly_notification_data_by_service():
|
2023-08-29 14:54:30 -07:00
|
|
|
|
start_date = request.args.get("start_date")
|
|
|
|
|
|
end_date = request.args.get("end_date")
|
2019-07-19 10:57:14 +01:00
|
|
|
|
|
2023-08-29 14:54:30 -07:00
|
|
|
|
rows = fact_notification_status_dao.fetch_monthly_notification_statuses_per_service(
|
|
|
|
|
|
start_date, end_date
|
|
|
|
|
|
)
|
2021-06-23 16:03:43 +01:00
|
|
|
|
|
|
|
|
|
|
serialized_results = [
|
|
|
|
|
|
[
|
|
|
|
|
|
str(row.date_created),
|
|
|
|
|
|
str(row.service_id),
|
|
|
|
|
|
row.service_name,
|
|
|
|
|
|
row.notification_type,
|
|
|
|
|
|
row.count_sending,
|
|
|
|
|
|
row.count_delivered,
|
|
|
|
|
|
row.count_technical_failure,
|
|
|
|
|
|
row.count_temporary_failure,
|
|
|
|
|
|
row.count_permanent_failure,
|
|
|
|
|
|
row.count_sent,
|
|
|
|
|
|
]
|
|
|
|
|
|
for row in rows
|
|
|
|
|
|
]
|
|
|
|
|
|
return jsonify(serialized_results)
|
2019-07-19 10:57:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-08-09 15:12:52 +01:00
|
|
|
|
def check_request_args(request):
|
2023-08-29 14:54:30 -07:00
|
|
|
|
service_id = request.args.get("service_id")
|
|
|
|
|
|
name = request.args.get("name", None)
|
|
|
|
|
|
email_from = request.args.get("email_from", None)
|
2017-08-09 15:12:52 +01:00
|
|
|
|
errors = []
|
2018-02-14 14:47:03 +00:00
|
|
|
|
if not service_id:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
errors.append({"service_id": ["Can't be empty"]})
|
2017-08-09 15:12:52 +01:00
|
|
|
|
if not name:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
errors.append({"name": ["Can't be empty"]})
|
2017-08-09 15:12:52 +01:00
|
|
|
|
if not email_from:
|
2023-08-29 14:54:30 -07:00
|
|
|
|
errors.append({"email_from": ["Can't be empty"]})
|
2017-08-09 15:12:52 +01:00
|
|
|
|
if errors:
|
|
|
|
|
|
raise InvalidRequest(errors, status_code=400)
|
2018-02-13 15:25:24 +00:00
|
|
|
|
return service_id, name, email_from
|
2019-05-15 15:23:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def check_if_reply_to_address_already_in_use(service_id, email_address):
|
|
|
|
|
|
existing_reply_to_addresses = dao_get_reply_to_by_service_id(service_id)
|
|
|
|
|
|
if email_address in [i.email_address for i in existing_reply_to_addresses]:
|
|
|
|
|
|
raise InvalidRequest(
|
2023-08-29 14:54:30 -07:00
|
|
|
|
"Your service already uses ‘{}’ as an email reply-to address.".format(
|
|
|
|
|
|
email_address
|
|
|
|
|
|
),
|
|
|
|
|
|
status_code=409,
|
2019-05-15 15:23:27 +01:00
|
|
|
|
)
|
2023-09-27 11:32:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
2023-10-23 10:24:00 -06:00
|
|
|
|
@service_blueprint.route("/<uuid:service_id>/notification-count", methods=["GET"])
|
|
|
|
|
|
def get_notification_count_for_service_id(service_id):
|
2023-10-13 14:07:10 -06:00
|
|
|
|
count = dao_get_notification_count_for_service(service_id=service_id)
|
2023-10-23 10:33:37 -06:00
|
|
|
|
return jsonify(count=count), 200
|