2014-08-16 20:37:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2013-09-03 20:51:11 +00:00
|
|
|
|
2021-02-05 19:51:15 +00:00
|
|
|
# Slixmpp: The Slick XMPP Library
|
|
|
|
# Implementation of xeps for Internet of Things
|
|
|
|
# http://wiki.xmpp.org/web/Tech_pages/IoT_systems
|
|
|
|
# Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se
|
|
|
|
# This file is part of Slixmpp.
|
|
|
|
# See the file LICENSE for copying permission.
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2015-02-24 17:58:40 +00:00
|
|
|
from os.path import basename, join as pjoin
|
2014-08-16 20:37:29 +00:00
|
|
|
from argparse import ArgumentParser
|
2013-09-03 20:51:11 +00:00
|
|
|
from urllib import urlopen
|
2015-02-24 17:58:40 +00:00
|
|
|
from getpass import getpass
|
2013-09-03 20:51:11 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
import slixmpp
|
|
|
|
from slixmpp.plugins.xep_0323.device import Device
|
2013-09-03 20:51:11 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
#from slixmpp.exceptions import IqError, IqTimeout
|
2013-09-03 20:51:11 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class IoT_TestDevice(slixmpp.ClientXMPP):
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
A simple IoT device that can act as server or client
|
|
|
|
"""
|
|
|
|
def __init__(self, jid, password):
|
2014-07-17 12:19:04 +00:00
|
|
|
slixmpp.ClientXMPP.__init__(self, jid, password)
|
2013-09-03 20:51:11 +00:00
|
|
|
self.add_event_handler("session_start", self.session_start)
|
|
|
|
self.add_event_handler("message", self.message)
|
|
|
|
self.device=None
|
|
|
|
self.releaseMe=False
|
|
|
|
self.beServer=True
|
|
|
|
self.clientJID=None
|
|
|
|
|
|
|
|
def datacallback(self,from_jid,result,nodeId=None,timestamp=None,fields=None,error_msg=None):
|
|
|
|
"""
|
|
|
|
This method will be called when you ask another IoT device for data with the xep_0323
|
|
|
|
se script below for the registration of the callback
|
|
|
|
"""
|
|
|
|
logging.debug("we got data %s from %s",str(result),from_jid)
|
|
|
|
|
|
|
|
def beClientOrServer(self,server=True,clientJID=None ):
|
|
|
|
if server:
|
|
|
|
self.beServer=True
|
|
|
|
self.clientJID=None
|
|
|
|
else:
|
|
|
|
self.beServer=False
|
|
|
|
self.clientJID=clientJID
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
def testForRelease(self):
|
|
|
|
# todo thread safe
|
|
|
|
return self.releaseMe
|
|
|
|
|
|
|
|
def doReleaseMe(self):
|
|
|
|
# todo thread safe
|
|
|
|
self.releaseMe=True
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
def addDevice(self, device):
|
|
|
|
self.device=device
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
def session_start(self, event):
|
|
|
|
self.send_presence()
|
|
|
|
self.get_roster()
|
2013-09-20 18:50:51 +00:00
|
|
|
# tell your preffered friend that you are alive
|
2013-09-03 20:51:11 +00:00
|
|
|
self.send_message(mto='jocke@jabber.sust.se', mbody=self.boundjid.bare +' is now online use xep_323 stanza to talk to me')
|
|
|
|
|
|
|
|
if not(self.beServer):
|
|
|
|
session=self['xep_0323'].request_data(self.boundjid.full,self.clientJID,self.datacallback)
|
|
|
|
|
|
|
|
def message(self, msg):
|
|
|
|
if msg['type'] in ('chat', 'normal'):
|
|
|
|
logging.debug("got normal chat message" + str(msg))
|
|
|
|
ip=urlopen('http://icanhazip.com').read()
|
|
|
|
msg.reply("Hi I am " + self.boundjid.full + " and I am on IP " + ip).send()
|
|
|
|
else:
|
|
|
|
logging.debug("got unknown message type %s", str(msg['type']))
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
class TheDevice(Device):
|
|
|
|
"""
|
|
|
|
This is the actual device object that you will use to get information from your real hardware
|
|
|
|
You will be called in the refresh method when someone is requesting information from you
|
|
|
|
"""
|
|
|
|
def __init__(self,nodeId):
|
|
|
|
Device.__init__(self,nodeId)
|
|
|
|
self.counter=0
|
|
|
|
|
|
|
|
def refresh(self,fields):
|
|
|
|
"""
|
|
|
|
the implementation of the refresh method
|
|
|
|
"""
|
|
|
|
self._set_momentary_timestamp(self._get_timestamp())
|
|
|
|
self.counter+=self.counter
|
2013-09-20 18:50:51 +00:00
|
|
|
self._add_field_momentary_data(self, "Temperature", self.counter)
|
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
# Setup the command line arguments.
|
|
|
|
#
|
|
|
|
# This script can act both as
|
|
|
|
# "server" an IoT device that can provide sensorinformation
|
|
|
|
# python IoT_TestDevice.py -j "serverjid@yourdomain.com" -p "password" -n "TestIoT" --debug
|
|
|
|
#
|
|
|
|
# "client" an IoT device or other party that would like to get data from another device
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
parser = ArgumentParser()
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
# Output verbosity options.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("-q", "--quiet", help="set logging to ERROR",
|
|
|
|
action="store_const", dest="loglevel",
|
|
|
|
const=logging.ERROR, default=logging.INFO)
|
|
|
|
parser.add_argument("-d", "--debug", help="set logging to DEBUG",
|
|
|
|
action="store_const", dest="loglevel",
|
|
|
|
const=logging.DEBUG, default=logging.INFO)
|
|
|
|
parser.add_argument("-t", "--pingto", help="set jid to ping",
|
|
|
|
action="store", type="string", dest="pingjid",
|
|
|
|
default=None)
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
# JID and password options.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("-j", "--jid", dest="jid",
|
|
|
|
help="JID to use")
|
|
|
|
parser.add_argument("-p", "--password", dest="password",
|
|
|
|
help="password to use")
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
# IoT test
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("-c", "--sensorjid", dest="sensorjid",
|
|
|
|
help="Another device to call for data on", default=None)
|
|
|
|
parser.add_argument("-n", "--nodeid", dest="nodeid",
|
|
|
|
help="I am a device get ready to be called", default=None)
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
args = parser.parse_args()
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
# Setup logging.
|
2014-08-16 20:37:29 +00:00
|
|
|
logging.basicConfig(level=args.loglevel,
|
2013-09-03 20:51:11 +00:00
|
|
|
format='%(levelname)-8s %(message)s')
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.jid is None:
|
|
|
|
args.jid = input("Username: ")
|
|
|
|
if args.password is None:
|
|
|
|
args.password = getpass("Password: ")
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp = IoT_TestDevice(args.jid,args.password)
|
2013-09-03 20:51:11 +00:00
|
|
|
xmpp.register_plugin('xep_0030')
|
|
|
|
#xmpp['xep_0030'].add_feature(feature='urn:xmpp:iot:sensordata',
|
|
|
|
# node=None,
|
|
|
|
# jid=None)
|
|
|
|
xmpp.register_plugin('xep_0323')
|
|
|
|
xmpp.register_plugin('xep_0325')
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.nodeid:
|
2013-09-03 20:51:11 +00:00
|
|
|
|
|
|
|
# xmpp['xep_0030'].add_feature(feature='urn:xmpp:sn',
|
2014-08-16 20:37:29 +00:00
|
|
|
# node=args.nodeid,
|
2013-09-03 20:51:11 +00:00
|
|
|
# jid=xmpp.boundjid.full)
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
myDevice = TheDevice(args.nodeid);
|
2013-09-03 20:51:11 +00:00
|
|
|
# myDevice._add_field(name="Relay", typename="numeric", unit="Bool");
|
2014-08-17 22:52:24 +00:00
|
|
|
myDevice._add_field(name="Temperature", typename="numeric", unit="C")
|
2013-09-03 20:51:11 +00:00
|
|
|
myDevice._set_momentary_timestamp("2013-03-07T16:24:30")
|
2014-08-17 22:52:24 +00:00
|
|
|
myDevice._add_field_momentary_data("Temperature", "23.4", flags={"automaticReadout": "true"})
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp['xep_0323'].register_node(nodeId=args.nodeid, device=myDevice, commTimeout=10);
|
2013-09-03 20:51:11 +00:00
|
|
|
xmpp.beClientOrServer(server=True)
|
|
|
|
while not(xmpp.testForRelease()):
|
|
|
|
xmpp.connect()
|
2021-01-26 23:09:26 +00:00
|
|
|
xmpp.process(forever=False)
|
2013-09-03 20:51:11 +00:00
|
|
|
logging.debug("lost connection")
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.sensorjid:
|
2013-09-03 20:51:11 +00:00
|
|
|
logging.debug("will try to call another device for data")
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp.beClientOrServer(server=False,clientJID=args.sensorjid)
|
2013-09-03 20:51:11 +00:00
|
|
|
xmpp.connect()
|
2021-01-26 23:09:26 +00:00
|
|
|
xmpp.process(forever=False)
|
2013-09-03 20:51:11 +00:00
|
|
|
logging.debug("ready ending")
|
2013-09-20 18:50:51 +00:00
|
|
|
|
2013-09-03 20:51:11 +00:00
|
|
|
else:
|
2015-02-24 17:58:40 +00:00
|
|
|
print("noopp didn't happen")
|