platypush/runbullet/bin/pusher

70 lines
1.9 KiB
Plaintext
Raw Normal View History

2017-11-03 15:06:29 +01:00
#!python
import argparse
2017-11-03 11:34:26 +01:00
import json
import os
import re
2017-11-03 11:34:26 +01:00
import sys
import yaml
from pushbullet import Pushbullet
2017-11-03 15:06:29 +01:00
from runbullet import parse_config_file
2017-11-03 11:34:26 +01:00
def print_usage():
print ('''Usage: {} [-h|--help] <-t|--target <target name>> <-a|--action <action name>> payload
2017-11-03 11:34:26 +01:00
-h, --help:\t\tShow this help and exit
-t, --target:\tName of the target device/host
-a, --action\tAction to run, it includes both the package name and the method (e.g. shell.exec or music.mpd.play)
payload:\t\tArguments to the action
2017-11-03 11:34:26 +01:00
'''.format(sys.argv[0]))
def main():
2017-11-03 15:06:29 +01:00
config = parse_config_file()
API_KEY = config['backend.pushbullet']['token']
2017-11-03 11:34:26 +01:00
pb = Pushbullet(API_KEY)
devices = [
_ for _ in pb.devices if _.nickname == config['backend.pushbullet']['device']
2017-11-03 11:34:26 +01:00
]
if len(devices) > 0:
device = devices[0]
else:
print('Device {} not found - please create a virtual device on ' +
'your PushBullet account'.format(config['backend.pushbullet']['device']))
2017-11-03 11:34:26 +01:00
return
parser = argparse.ArgumentParser()
parser.add_argument('--target', '-t', dest='target', required=True,
help="Destination of the command")
2017-11-03 11:34:26 +01:00
parser.add_argument('--action', '-a', dest='action', required=True,
help="Action to execute, as package.method")
opts, args = parser.parse_known_args(sys.argv[1:])
2017-11-03 11:34:26 +01:00
payload = {}
if len(args) % 2 != 0:
raise RuntimeError('Odd number of key-value options passed: {}'.
format(args))
2017-11-03 11:34:26 +01:00
for i in range(0, len(args), 2):
payload[re.sub('^-+', '', args[i])] = args[i+1]
2017-11-03 11:34:26 +01:00
msg = {
'target': opts.target,
'action': opts.action,
**payload,
2017-11-03 11:34:26 +01:00
}
print('msg: {}'.format(msg))
2017-11-03 11:34:26 +01:00
pb.push_note('', json.dumps(msg), device)
if __name__ == '__main__':
main()
# vim:sw=4:ts=4:et: