transpub/transwhat.py

103 lines
2.6 KiB
Python
Raw Normal View History

2013-06-28 21:10:28 +00:00
#!/usr/bin/python
2015-12-29 19:03:14 +00:00
__author__ = u"Steffen Vogel"
__copyright__ = u"Copyright 2015, Steffen Vogel"
__license__ = u"GPLv3"
__maintainer__ = u"Steffen Vogel"
__email__ = u"post@steffenvogel.de"
2013-08-01 23:45:51 +00:00
2015-12-29 19:03:14 +00:00
u"""
2013-08-01 23:45:51 +00:00
This file is part of transWhat
transWhat 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, either version 3 of the License, or
any later version.
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
"""
2013-06-28 21:10:28 +00:00
import argparse
import traceback
2013-06-28 21:10:28 +00:00
import logging
import asyncore
import sys, os
import e4u
import threading
import Queue
2013-06-28 21:10:28 +00:00
sys.path.insert(0, os.getcwd())
from Spectrum2.iochannel import IOChannel
from whatsappbackend import WhatsAppBackend
2015-06-21 12:01:05 +00:00
from yowsup.common import YowConstants
from yowsup.stacks import YowStack
2013-06-28 21:10:28 +00:00
# Arguments
parser = argparse.ArgumentParser()
2015-12-29 19:03:14 +00:00
parser.add_argument(u'--debug', action=u'store_true')
parser.add_argument(u'--host', type=str, required=True)
parser.add_argument(u'--port', type=int, required=True)
parser.add_argument(u'--service.backend_id', metavar=u"ID", type=int, required=True)
parser.add_argument(u'config', type=str)
parser.add_argument(u'-j', type=str, required=True)
2013-06-28 21:10:28 +00:00
args, unknown = parser.parse_known_args()
2015-12-29 19:03:14 +00:00
YowConstants.PATH_STORAGE=u'/var/lib/spectrum2/' + args.j
loggingfile = u'/var/log/spectrum2/' + args.j + u'/backends/backend.log'
2013-06-28 21:10:28 +00:00
# Logging
logging.basicConfig( \
filename=loggingfile,\
2015-12-29 19:03:14 +00:00
format = u"%(asctime)-15s %(levelname)s %(name)s: %(message)s", \
2013-06-28 21:10:28 +00:00
level = logging.DEBUG if args.debug else logging.INFO \
)
# Handler
def handleTransportData(data):
plugin.handleDataRead(data)
e4u.load()
closed = False
def connectionClosed():
global closed
closed = True
2013-06-28 21:10:28 +00:00
# Main
io = IOChannel(args.host, args.port, handleTransportData, connectionClosed)
2013-06-28 21:10:28 +00:00
2015-12-02 21:06:56 +00:00
plugin = WhatsAppBackend(io, args.j)
2013-06-28 21:10:28 +00:00
2015-12-18 18:33:32 +00:00
plugin.handleBackendConfig({
2015-12-29 19:03:14 +00:00
u'features': [
(u'send_buddies_on_login', 1),
(u'muc', u'true'),
2015-12-18 18:33:32 +00:00
],
})
2015-12-01 21:21:38 +00:00
while True:
try:
asyncore.loop(timeout=1.0, count=10, use_poll = True)
try:
2015-12-29 19:03:14 +00:00
callback = YowStack._YowStack__detachedQueue.get(False) #doesnu't block
callback()
except Queue.Empty:
pass
else:
break
if closed:
break
except SystemExit:
break
except:
logger = logging.getLogger('transwhat')
logger.error(traceback.format_exc())