openlp/scripts/openlp-remoteclient.py

69 lines
3.2 KiB
Python
Raw Normal View History

2009-08-10 18:20:46 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
2009-10-30 01:26:45 +00:00
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
# Copyright (c) 2008-2011 Raoul Snyman #
# Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael #
2011-03-24 19:04:02 +00:00
# Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, #
# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, #
# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode #
# Woldsund #
2009-10-30 01:26:45 +00:00
# --------------------------------------------------------------------------- #
# This program is free software; you can redistribute it and/or modify it #
# under the terms of the GNU General Public License as published by the Free #
# Software Foundation; version 2 of the License. #
# #
# This program is distributed in the hope that it will be useful, but WITHOUT #
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
# more details. #
# #
# You should have received a copy of the GNU General Public License along #
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
###############################################################################
2009-08-10 18:20:46 +00:00
import urllib
2009-08-12 16:29:00 +00:00
import sys
from optparse import OptionParser
def sendData(options):
addr = 'http://%s:%s/send/%s?q=%s' % (options.address, options.port,
options.event, options.message)
2009-08-12 16:29:00 +00:00
try:
urllib.urlopen(addr)
print u'Message sent ', addr
2009-08-12 16:29:00 +00:00
except:
print u'Error thrown ', sys.exc_info()[1]
2009-08-12 16:29:00 +00:00
def main():
usage = "usage: %prog [-a address] [-p port] [-e event] [-m message]"
2009-08-12 16:29:00 +00:00
parser = OptionParser(usage=usage)
2010-02-03 18:53:31 +00:00
parser.add_option("-p", "--port", default=4316,
2009-08-12 16:29:00 +00:00
help="IP Port number %default ")
parser.add_option("-a", "--address",
help="Recipient address ",
default="localhost")
parser.add_option("-e", "--event",
2010-12-13 14:24:16 +00:00
help="Action to be performed",
default="alerts_text")
2009-08-12 16:29:00 +00:00
parser.add_option("-m", "--message",
help="Message to be passed for the action",
default="")
2009-08-10 18:20:46 +00:00
2009-08-12 16:29:00 +00:00
(options, args) = parser.parse_args()
2010-03-09 19:43:11 +00:00
if args:
2009-08-12 16:29:00 +00:00
parser.print_help()
parser.error("incorrect number of arguments")
elif options.address is None:
parser.print_help()
parser.error("IP address missing")
else:
sendData(options)
2009-08-10 18:20:46 +00:00
if __name__ == u'__main__':
2010-07-27 09:32:52 +00:00
main()