2012-10-01 15:36:44 -04:00
|
|
|
#!/usr/bin/python
|
2012-11-26 10:55:22 -05:00
|
|
|
# Copyright (C) 2012 Humbug, Inc.
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person
|
|
|
|
# obtaining a copy of this software and associated documentation files
|
|
|
|
# (the "Software"), to deal in the Software without restriction,
|
|
|
|
# including without limitation the rights to use, copy, modify, merge,
|
|
|
|
# publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
# and to permit persons to whom the Software is furnished to do so,
|
|
|
|
# subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2012-10-01 15:36:44 -04:00
|
|
|
import sys
|
2012-11-26 12:17:35 -05:00
|
|
|
from os import path
|
2012-10-01 15:36:44 -04:00
|
|
|
import optparse
|
|
|
|
|
2012-11-13 15:40:29 -05:00
|
|
|
usage = """send-message [options] <recipient>
|
2012-10-01 15:36:44 -04:00
|
|
|
|
2012-11-14 18:03:12 -05:00
|
|
|
Sends a test message to the specified recipients.
|
2012-10-01 15:36:44 -04:00
|
|
|
|
2012-11-26 11:03:41 -05:00
|
|
|
Example: send-message --type=stream commits
|
2012-11-26 11:00:59 -05:00
|
|
|
Example: send-message --site=https://zephyr.humbughq.com iago@humbughq.com
|
2012-10-01 15:36:44 -04:00
|
|
|
"""
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
2012-11-26 12:25:35 -05:00
|
|
|
parser.add_option('--api-key')
|
|
|
|
parser.add_option('--site', default='https://humbughq.com')
|
|
|
|
parser.add_option('--sender', default='othello@humbughq.com')
|
|
|
|
parser.add_option('--type', default='private')
|
2012-10-01 15:36:44 -04:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2012-11-14 18:03:12 -05:00
|
|
|
if len(args) == 0:
|
|
|
|
parser.error("You must specify recipients")
|
2012-11-13 15:40:29 -05:00
|
|
|
|
2012-11-26 12:17:35 -05:00
|
|
|
sys.path.append(path.join(path.dirname(__file__), '../..'))
|
2012-10-01 15:36:44 -04:00
|
|
|
import api.common
|
2012-11-13 15:40:29 -05:00
|
|
|
client = api.common.HumbugAPI(email=options.sender,
|
2012-10-01 15:36:44 -04:00
|
|
|
api_key=options.api_key,
|
|
|
|
verbose=True,
|
|
|
|
site=options.site)
|
|
|
|
|
|
|
|
message_data = {
|
2012-11-14 18:03:12 -05:00
|
|
|
"type": options.type,
|
2012-10-02 17:25:14 -04:00
|
|
|
"content": "test",
|
2012-11-14 18:03:12 -05:00
|
|
|
"subject": "test",
|
|
|
|
"to": args,
|
2012-10-01 15:36:44 -04:00
|
|
|
}
|
|
|
|
print client.send_message(message_data)
|