/usr/bin/mygpo-bpsync is in python3-mygpoclient 1.8-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | #!/usr/bin/python3
# BashPodder <-> gpodder.net sync client
# Copyright (c) 2010-04-02 Thomas Perl <thp@gpodder.org>
# Licensed under the same terms as the "mygpoclient" library
# See: http://thp.io/2010/mygpoclient/
from __future__ import print_function
import mygpoclient
from mygpoclient import simple
import os
import sys
class BPSync(object):
def __init__(self, filename, root_url=mygpoclient.ROOT_URL, device='bp'):
self.filename = filename
self.device = device
username = os.environ['MYGPO_USERNAME']
password = os.environ['MYGPO_PASSWORD']
root_url = os.environ.get('MYGPO_HOSTNAME', root_url)
self.client = simple.SimpleClient(username, password, root_url)
def put(self):
lines = open(self.filename).read().strip().splitlines()
podcasts = [line.strip() for line in lines if line.strip()]
self.client.put_subscriptions(self.device, podcasts)
def get(self):
podcasts = self.client.get_subscriptions(self.device)
open(self.filename, 'w').write('\n'.join(podcasts+['']))
def usage(s=None):
print("""
Usage: %s (put|get) [device-id]
e.g %s put ........ Upload bp.conf as device "bp"
%s get ........ Download subscriptions for device "bp"
%s get mydev .. Download subscriptions for device "mydev"
The following environment variables need to be set:
MYGPO_USERNAME .. Username for the web service
MYGPO_PASSWORD .. Password for the web service
The following environment variables are optional:
BPSYNC_BP_CONF .. Path to your bp.conf file
MYGPO_HOSTNAME .. Host or URL of the web service to use
""" % ((os.path.basename(sys.argv[0]),)*4), file=sys.stderr)
if s is not None:
print(s, file=sys.stderr)
sys.exit(1)
if __name__ == '__main__':
if len(sys.argv) not in (2, 3):
usage('Wrong parameter count')
if 'MYGPO_USERNAME' not in os.environ or \
'MYGPO_PASSWORD' not in os.environ:
usage('MYGPO_USERNAME or MYGPO_PASSWORD not set!')
filename = os.environ.get('BPSYNC_BP_CONF', 'bp.conf')
if not os.path.exists(filename):
usage('File not found: ' + filename)
command = sys.argv[1]
if len(sys.argv) == 3:
client = BPSync(filename, device=sys.argv[2])
else:
client = BPSync(filename)
if command == 'put':
client.put()
elif command == 'get':
client.get()
else:
usage('Unknown command')
|