2017-11-03 15:06:29 +01:00
|
|
|
#!python
|
|
|
|
|
2017-11-04 14:02:56 +01:00
|
|
|
import argparse
|
2017-11-03 11:34:26 +01:00
|
|
|
import json
|
|
|
|
import os
|
2017-11-04 14:02:56 +01:00
|
|
|
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():
|
2017-11-04 12:28:15 +01:00
|
|
|
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
|
2017-11-04 12:28:15 +01:00
|
|
|
-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()
|
2017-11-03 11:34:26 +01:00
|
|
|
API_KEY = config['pushbullet']['token']
|
|
|
|
pb = Pushbullet(API_KEY)
|
|
|
|
|
|
|
|
devices = [
|
|
|
|
_ for _ in pb.devices if _.nickname == config['pushbullet']['device']
|
|
|
|
]
|
|
|
|
|
|
|
|
if len(devices) > 0:
|
|
|
|
device = devices[0]
|
|
|
|
else:
|
|
|
|
print('Device {} not found - please create a virtual device on ' +
|
|
|
|
'your PushBullet account'.format(config['pushbullet']['device']))
|
|
|
|
return
|
|
|
|
|
2017-11-04 14:02:56 +01:00
|
|
|
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
|
|
|
|
2017-11-04 14:02:56 +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 = {}
|
|
|
|
|
2017-11-04 14:02:56 +01:00
|
|
|
if len(args) % 2 != 0:
|
|
|
|
raise RuntimeError('Odd number of key-value options passed: {}'.
|
|
|
|
format(args))
|
2017-11-03 11:34:26 +01:00
|
|
|
|
2017-11-04 14:02:56 +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 = {
|
2017-11-04 14:02:56 +01:00
|
|
|
'target': opts.target,
|
|
|
|
'action': opts.action,
|
2017-11-04 12:28:15 +01:00
|
|
|
**payload,
|
2017-11-03 11:34:26 +01:00
|
|
|
}
|
|
|
|
|
2017-11-04 12:28:15 +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:
|
|
|
|
|