mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
Pass message_number to proxy clients
This commit is contained in:
@@ -62,16 +62,30 @@ class CBCProxyClientBase:
|
||||
def send_link_test(
|
||||
self,
|
||||
identifier,
|
||||
sequential_number=None
|
||||
sequential_number
|
||||
):
|
||||
pass
|
||||
"""
|
||||
link test - open up a connection to a specific provider, and send them an xml payload with a <msgType> of
|
||||
test.
|
||||
"""
|
||||
payload = {'message_type': 'test', 'identifier': identifier, 'message_number': sequential_number}
|
||||
|
||||
self._invoke_lambda(payload=payload)
|
||||
|
||||
def create_and_send_broadcast(
|
||||
self,
|
||||
identifier, headline, description, areas,
|
||||
sent, expires,
|
||||
self, identifier, message_number, headline, description, areas, sent, expires,
|
||||
):
|
||||
pass
|
||||
payload = {
|
||||
'message_type': 'alert',
|
||||
'identifier': identifier,
|
||||
'message_number': message_number,
|
||||
'headline': headline,
|
||||
'description': description,
|
||||
'areas': areas,
|
||||
'sent': sent,
|
||||
'expires': expires,
|
||||
}
|
||||
self._invoke_lambda(payload=payload)
|
||||
|
||||
# We have not implementated updating a broadcast
|
||||
def update_and_send_broadcast(
|
||||
@@ -130,48 +144,6 @@ class CBCProxyCanary(CBCProxyClientBase):
|
||||
class CBCProxyEE(CBCProxyClientBase):
|
||||
lambda_name = 'bt-ee-1-proxy'
|
||||
|
||||
def send_link_test(
|
||||
self,
|
||||
identifier,
|
||||
sequential_number=None
|
||||
):
|
||||
"""
|
||||
link test - open up a connection to a specific provider, and send them an xml payload with a <msgType> of
|
||||
test.
|
||||
"""
|
||||
payload = {'message_type': 'test', 'identifier': identifier}
|
||||
|
||||
self._invoke_lambda(payload=payload)
|
||||
|
||||
def create_and_send_broadcast(
|
||||
self,
|
||||
identifier, headline, description, areas,
|
||||
sent, expires,
|
||||
):
|
||||
payload = {
|
||||
'message_type': 'alert',
|
||||
'identifier': identifier,
|
||||
'headline': headline,
|
||||
'description': description,
|
||||
'areas': areas,
|
||||
'sent': sent,
|
||||
'expires': expires,
|
||||
}
|
||||
self._invoke_lambda(payload=payload)
|
||||
|
||||
|
||||
class CBCProxyVodafone(CBCProxyClientBase):
|
||||
lambda_name = 'bt-ee-1-proxy'
|
||||
|
||||
def send_link_test(
|
||||
self,
|
||||
identifier,
|
||||
sequential_number
|
||||
):
|
||||
"""
|
||||
link test - open up a connection to a specific provider, and send them an xml payload with a <msgType> of
|
||||
test.
|
||||
"""
|
||||
payload = {'message_type': 'test', 'identifier': identifier, 'message_number': sequential_number}
|
||||
|
||||
self._invoke_lambda(payload=payload)
|
||||
lambda_name = 'vodafone-1-proxy'
|
||||
|
||||
Reference in New Issue
Block a user