2015-12-04 14:40:16 +00:00
|
|
|
from __future__ import unicode_literals
|
2016-01-14 14:55:07 +00:00
|
|
|
from client.notifications import NotificationsAPIClient
|
2015-12-04 14:40:16 +00:00
|
|
|
|
|
|
|
|
|
2016-01-14 14:55:07 +00:00
|
|
|
class NotificationsAdminAPIClient(NotificationsAPIClient):
|
|
|
|
|
|
2016-01-15 15:15:35 +00:00
|
|
|
# Fudge assert in the super __init__ so
|
|
|
|
|
# we can set those variables later.
|
|
|
|
|
def __init__(self):
|
|
|
|
|
super(NotificationsAdminAPIClient, self).__init__("api_url",
|
|
|
|
|
"client",
|
|
|
|
|
"secret")
|
|
|
|
|
|
|
|
|
|
def init_app(self, application):
|
|
|
|
|
self.base_url = application.config['NOTIFY_API_URL']
|
|
|
|
|
self.client_id = application.config['NOTIFY_API_CLIENT']
|
|
|
|
|
self.secret = application.config['NOTIFY_API_SECRET']
|
|
|
|
|
|
|
|
|
|
def create_service(self, service_name, active, limit, restricted, user_id):
|
2016-01-14 14:55:07 +00:00
|
|
|
"""
|
|
|
|
|
Create a service and return the json.
|
|
|
|
|
"""
|
|
|
|
|
data = {
|
|
|
|
|
"name": service_name,
|
|
|
|
|
"active": active,
|
|
|
|
|
"limit": limit,
|
2016-01-15 15:15:35 +00:00
|
|
|
"users": [user_id],
|
2016-01-14 14:55:07 +00:00
|
|
|
"restricted": restricted
|
|
|
|
|
}
|
|
|
|
|
return self.post("/service", data)
|
|
|
|
|
|
|
|
|
|
def delete_service(self, service_id):
|
|
|
|
|
"""
|
|
|
|
|
Delete a service.
|
|
|
|
|
"""
|
|
|
|
|
endpoint = "/service/{0}".format(service_id)
|
|
|
|
|
return self.delete(endpoint)
|
|
|
|
|
|
|
|
|
|
def update_service(self,
|
|
|
|
|
service_id,
|
|
|
|
|
service_name,
|
|
|
|
|
active,
|
|
|
|
|
limit,
|
2016-01-15 15:15:35 +00:00
|
|
|
restricted,
|
|
|
|
|
users):
|
2016-01-14 14:55:07 +00:00
|
|
|
"""
|
|
|
|
|
Update a service.
|
|
|
|
|
"""
|
|
|
|
|
data = {
|
|
|
|
|
"id": service_id,
|
|
|
|
|
"name": service_name,
|
|
|
|
|
"active": active,
|
|
|
|
|
"limit": limit,
|
2016-01-15 15:15:35 +00:00
|
|
|
"restricted": restricted,
|
|
|
|
|
"users": users
|
2016-01-14 14:55:07 +00:00
|
|
|
}
|
|
|
|
|
endpoint = "/service/{0}".format(service_id)
|
|
|
|
|
return self.put(endpoint, update_dict)
|
|
|
|
|
|
|
|
|
|
def create_service_template(self, name, type_, content, service_id):
|
|
|
|
|
"""
|
|
|
|
|
Create a service template.
|
|
|
|
|
"""
|
|
|
|
|
data = {
|
|
|
|
|
"name": name,
|
|
|
|
|
"template_type": type_,
|
|
|
|
|
"content": content,
|
|
|
|
|
"service": service_id
|
|
|
|
|
}
|
|
|
|
|
endpoint = "/service/{0}/template".format(service_id)
|
|
|
|
|
return self.post(endpoint, data)
|
|
|
|
|
|
|
|
|
|
def delete_service_template(self, service_id, template_id):
|
|
|
|
|
"""
|
|
|
|
|
Delete a service template.
|
|
|
|
|
"""
|
|
|
|
|
endpoint = "/service/{0}/template/{1}".format(service_id, template_id)
|
|
|
|
|
return self.delete(endpoint)
|
2016-01-15 15:15:35 +00:00
|
|
|
|
|
|
|
|
# The implementation of these will change after the notifications-api
|
|
|
|
|
# functionality updates to include the ability to send notifications.
|
|
|
|
|
def send_sms(self,
|
|
|
|
|
mobile_number,
|
|
|
|
|
message,
|
|
|
|
|
job_id=None,
|
|
|
|
|
description=None):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def send_email(self,
|
|
|
|
|
email_address,
|
|
|
|
|
message,
|
|
|
|
|
from_address,
|
|
|
|
|
subject,
|
|
|
|
|
job_id=None,
|
|
|
|
|
description=None):
|
|
|
|
|
pass
|