Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
2c4d4215
Commit
2c4d4215
authored
Apr 18, 2016
by
Jérome Perrin
Committed by
Gabriel Monnerat
Nov 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5ShortMessage: fix interface syntax and add some TODO
parent
c4eb444a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
product/ERP5ShortMessage/interfaces/sms_gateway.py
product/ERP5ShortMessage/interfaces/sms_gateway.py
+15
-9
No files found.
product/ERP5ShortMessage/interfaces/sms_gateway.py
View file @
2c4d4215
...
...
@@ -31,17 +31,23 @@ from zope.interface import Interface
class
ISmsGateway
(
Interface
):
def
send
(
self
,
text
,
recipient
,
def
send
(
text
,
recipient
,
sender
=
None
,
sender_title
=
None
,
message_type
=
"text"
,
test
=
False
,
**
kw
):
"""Send a message."""
message_type
=
"text"
,
test
=
False
,
**
kw
):
"""Send a message.
TODO: write
def
receive
(
self
,
REQUEST
):
TODO: is getAllowedMessageType part of this API ?
shouldn't we rely on content_type ? ( text/plain -> SMS, text/html -> MMS ? )
"""
def
receive
(
REQUEST
):
"""Public handler to push notification from the gateway"""
def
getAllowedMessageType
(
self
):
"""List of all allowed message type when send a message."""
def
getAllowedMessageType
():
"""List of all allowed message type when send
ing
a message."""
def
getMessageStatus
(
self
,
message_id
):
"""Retrive the status of a message
Should return x in ['sent', 'delivered', 'queued', 'failed']"""
\ No newline at end of file
def
getMessageStatus
(
message_id
):
"""Retrieve the status of a message
Should return x in ['sent', 'delivered', 'queued', 'failed']"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment