mirror of
https://github.com/no2chem/wideq.git
synced 2025-05-16 07:10:09 -07:00
Move Client to main module
This commit is contained in:
parent
f50c8d0221
commit
2ce09e9642
72
example.py
72
example.py
@ -34,73 +34,6 @@ def authenticate(gateway):
|
|||||||
return wideq.Auth.from_url(gateway, callback_url)
|
return wideq.Auth.from_url(gateway, callback_url)
|
||||||
|
|
||||||
|
|
||||||
class Client(object):
|
|
||||||
"""A higher-level API wrapper that provides a session.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
# The three steps required to get access to call the API.
|
|
||||||
self._gateway = None
|
|
||||||
self._auth = None
|
|
||||||
self._session = None
|
|
||||||
|
|
||||||
# The last list of devices we got from the server.
|
|
||||||
self._devices = None
|
|
||||||
|
|
||||||
@property
|
|
||||||
def gateway(self):
|
|
||||||
if not self._gateway:
|
|
||||||
self._gateway = wideq.Gateway.discover()
|
|
||||||
return self._gateway
|
|
||||||
|
|
||||||
@property
|
|
||||||
def auth(self):
|
|
||||||
if not self._auth:
|
|
||||||
assert False, "unauthenticated"
|
|
||||||
return self._auth
|
|
||||||
|
|
||||||
@property
|
|
||||||
def session(self):
|
|
||||||
if not self._session:
|
|
||||||
self._session, self._devices = self.auth.start_session()
|
|
||||||
return self._session
|
|
||||||
|
|
||||||
@property
|
|
||||||
def devices(self):
|
|
||||||
if not self._devices:
|
|
||||||
self._devices = self.session.get_devices()
|
|
||||||
return self._devices
|
|
||||||
|
|
||||||
def load(self, state):
|
|
||||||
"""Load the client objects from the encoded state data.
|
|
||||||
"""
|
|
||||||
|
|
||||||
if 'gateway' in state:
|
|
||||||
self._gateway = wideq.Gateway.load(state['gateway'])
|
|
||||||
|
|
||||||
if 'auth' in state:
|
|
||||||
self._auth = wideq.Auth.load(self._gateway, state['auth'])
|
|
||||||
|
|
||||||
if 'session' in state:
|
|
||||||
self._session = wideq.Session.load(self._auth, state['session'])
|
|
||||||
|
|
||||||
def dump(self):
|
|
||||||
"""Serialize the client state."""
|
|
||||||
|
|
||||||
out = {}
|
|
||||||
if self._gateway:
|
|
||||||
out['gateway'] = self._gateway.dump()
|
|
||||||
if self._auth:
|
|
||||||
out['auth'] = self._auth.dump()
|
|
||||||
if self._session:
|
|
||||||
out['session'] = self._session.dump()
|
|
||||||
return out
|
|
||||||
|
|
||||||
def refresh(self):
|
|
||||||
self._auth = self.auth.refresh()
|
|
||||||
self._session, self._devices = self.auth.start_session()
|
|
||||||
|
|
||||||
|
|
||||||
def example_command(client, args):
|
def example_command(client, args):
|
||||||
if not args or args[0] == 'ls':
|
if not args or args[0] == 'ls':
|
||||||
for device in client.devices:
|
for device in client.devices:
|
||||||
@ -126,13 +59,12 @@ def example_command(client, args):
|
|||||||
temp = args[1]
|
temp = args[1]
|
||||||
device_id = args[2]
|
device_id = args[2]
|
||||||
|
|
||||||
client.session.set_device_controls(device_id,
|
client.session.set_device_controls(device_id, {'TempCfg': temp})
|
||||||
{'TempCfg': temp})
|
|
||||||
|
|
||||||
|
|
||||||
def example(args):
|
def example(args):
|
||||||
state = load_state()
|
state = load_state()
|
||||||
client = Client()
|
client = wideq.Client()
|
||||||
client.load(state)
|
client.load(state)
|
||||||
|
|
||||||
if not client._auth:
|
if not client._auth:
|
||||||
|
68
wideq.py
68
wideq.py
@ -364,3 +364,71 @@ class Monitor(object):
|
|||||||
|
|
||||||
def __exit__(self, type, value, tb):
|
def __exit__(self, type, value, tb):
|
||||||
self.session.monitor_stop(self.device_id, self.work_id)
|
self.session.monitor_stop(self.device_id, self.work_id)
|
||||||
|
|
||||||
|
|
||||||
|
class Client(object):
|
||||||
|
"""A higher-level API wrapper that provides a session more easily
|
||||||
|
and allows serialization of state.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
# The three steps required to get access to call the API.
|
||||||
|
self._gateway = None
|
||||||
|
self._auth = None
|
||||||
|
self._session = None
|
||||||
|
|
||||||
|
# The last list of devices we got from the server.
|
||||||
|
self._devices = None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def gateway(self):
|
||||||
|
if not self._gateway:
|
||||||
|
self._gateway = Gateway.discover()
|
||||||
|
return self._gateway
|
||||||
|
|
||||||
|
@property
|
||||||
|
def auth(self):
|
||||||
|
if not self._auth:
|
||||||
|
assert False, "unauthenticated"
|
||||||
|
return self._auth
|
||||||
|
|
||||||
|
@property
|
||||||
|
def session(self):
|
||||||
|
if not self._session:
|
||||||
|
self._session, self._devices = self.auth.start_session()
|
||||||
|
return self._session
|
||||||
|
|
||||||
|
@property
|
||||||
|
def devices(self):
|
||||||
|
if not self._devices:
|
||||||
|
self._devices = self.session.get_devices()
|
||||||
|
return self._devices
|
||||||
|
|
||||||
|
def load(self, state):
|
||||||
|
"""Load the client objects from the encoded state data.
|
||||||
|
"""
|
||||||
|
|
||||||
|
if 'gateway' in state:
|
||||||
|
self._gateway = Gateway.load(state['gateway'])
|
||||||
|
|
||||||
|
if 'auth' in state:
|
||||||
|
self._auth = Auth.load(self._gateway, state['auth'])
|
||||||
|
|
||||||
|
if 'session' in state:
|
||||||
|
self._session = Session.load(self._auth, state['session'])
|
||||||
|
|
||||||
|
def dump(self):
|
||||||
|
"""Serialize the client state."""
|
||||||
|
|
||||||
|
out = {}
|
||||||
|
if self._gateway:
|
||||||
|
out['gateway'] = self._gateway.dump()
|
||||||
|
if self._auth:
|
||||||
|
out['auth'] = self._auth.dump()
|
||||||
|
if self._session:
|
||||||
|
out['session'] = self._session.dump()
|
||||||
|
return out
|
||||||
|
|
||||||
|
def refresh(self):
|
||||||
|
self._auth = self.auth.refresh()
|
||||||
|
self._session, self._devices = self.auth.start_session()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user