2012-10-01 21:36:44 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import optparse
|
|
|
|
|
2012-11-13 21:40:29 +01:00
|
|
|
usage = """send-message [options] <recipient>
|
2012-10-01 21:36:44 +02:00
|
|
|
|
2012-11-13 21:40:29 +01:00
|
|
|
Sends a test message to the specified user.
|
2012-10-01 21:36:44 +02:00
|
|
|
|
2012-11-13 21:40:29 +01:00
|
|
|
Example: send-message --site=http://127.0.0.1:8000 iago@humbughq.com
|
2012-10-01 21:36:44 +02:00
|
|
|
"""
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
|
|
|
parser.add_option('--site',
|
|
|
|
dest='site',
|
2012-10-27 17:36:55 +02:00
|
|
|
default="https://humbughq.com",
|
2012-10-01 21:36:44 +02:00
|
|
|
action='store')
|
|
|
|
parser.add_option('--api-key',
|
|
|
|
dest='api_key',
|
2012-11-13 21:40:29 +01:00
|
|
|
default='4e5d97591bec64bf57d2698ffbb563e3',
|
2012-10-01 21:36:44 +02:00
|
|
|
action='store')
|
2012-11-13 21:40:29 +01:00
|
|
|
parser.add_option('--sender',
|
|
|
|
dest='sender',
|
|
|
|
default='othello@humbughq.com',
|
|
|
|
action='store')
|
|
|
|
parser.add_option('--recipient',
|
|
|
|
dest='recipient',
|
2012-10-01 21:36:44 +02:00
|
|
|
action='store')
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2012-11-13 21:40:29 +01:00
|
|
|
if len(args) != 1:
|
|
|
|
parser.error("Wrong number of arguments")
|
|
|
|
|
2012-10-01 21:36:44 +02:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
|
|
|
|
import api.common
|
2012-11-13 21:40:29 +01:00
|
|
|
client = api.common.HumbugAPI(email=options.sender,
|
2012-10-01 21:36:44 +02:00
|
|
|
api_key=options.api_key,
|
|
|
|
verbose=True,
|
|
|
|
site=options.site)
|
|
|
|
|
|
|
|
message_data = {
|
2012-11-08 00:38:21 +01:00
|
|
|
"type": "private",
|
2012-10-02 23:25:14 +02:00
|
|
|
"content": "test",
|
2012-11-14 23:21:46 +01:00
|
|
|
"to": args[0],
|
2012-10-01 21:36:44 +02:00
|
|
|
}
|
|
|
|
print client.send_message(message_data)
|