2015-11-23 15:09:01 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import fedmsg
|
2015-12-08 17:29:12 +00:00
|
|
|
import fedmsg.config
|
2015-11-23 15:09:01 +00:00
|
|
|
import json
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def send(cmd, data):
|
|
|
|
topic = 'compose.%s' % cmd.replace('-', '.').lower()
|
|
|
|
fedmsg.publish(topic=topic, modname='pungi', msg=data)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('cmd')
|
|
|
|
opts = parser.parse_args()
|
2015-12-08 17:29:12 +00:00
|
|
|
|
|
|
|
config = fedmsg.config.load_config()
|
|
|
|
config['active'] = True # Connect out to a fedmsg-relay instance
|
|
|
|
config['cert_prefix'] = 'releng' # Use this cert.
|
|
|
|
fedmsg.init(**config)
|
|
|
|
|
2015-11-23 15:09:01 +00:00
|
|
|
data = json.load(sys.stdin)
|
|
|
|
send(opts.cmd, data)
|