Exemple #1
0
def device_attribute(device_id, attribute, value = None, ts_start = None, ts_end = None ):
  if value != None:
    xml = api.request("setDeviceAttribute", devId = device_id, name = attribute, value = str(value))
    return api.xml_value(xml, "retCode") == "0"
  else:
    if attribute.find("-ts"):
      xml = api.request("getDeviceTS2", devId = device_id, propName = attribute, start = ts_start, end = ts_end )
      return api.xml_values(xml)
    else:
      xml = api.request("getDeviceAttribute", devId = device_id, name = attribute)
    return api.xml_value(xml, "value")
Exemple #2
0
def add_alert(device_id, action, attr_name, operation, threshold, address, msg):
  if action != "email" and action != "twitter":
    raise Exception("Error: action must be one of \"email\" or \"twitter\"")
  xml = api.request("addTrigger", devId = device_id, action = action,
      attrName = attr_name, operation = operation, threshold = str(threshold),
      address = address, msg = urllib.quote(msg))
  return api.xml_value(xml, "triggerId")
Exemple #3
0
def alert_info(alert_id):
  xml = api.request("getTrigger", triggerId = alert_id)
  return {
    "device_id": api.xml_value(xml, "devId"),
    "action": api.xml_value(xml, "action"),
    "attr_name": api.xml_value(xml, "attrName"),
    "operation": api.xml_value(xml, "operation"),
    "threshold": float(api.xml_value(xml, "threshold")),
    "address": api.xml_value(xml, "address"),
    "msg": api.xml_value(xml, "msgText"),
    "auto_disarm": api.xml_value(xml, "autoDisarm") == "true",
    "disarmed": api.xml_value(xml, "disarmed") == "true",
  }
Exemple #4
0
def remove_alert(alert_id):
  xml = api.request("removeTrigger", triggerId = str(alert_id))
  return api.xml_value(xml, "retCode")
Exemple #5
0
def device_status(device_id):
  xml = api.request("getDevicePresenceInfo", devId = device_id)
  return api.xml_value(xml, "state")
Exemple #6
0
def user_id(username):
  xml = api.request("getUserValueList", userName = username)
  return api.xml_value(xml, "userId")
Exemple #7
0
def security_token(username, password):
  url = config.server + "userLogin?name=" + username + "&password="******"&appId=" + config.app_id
  xml = urllib.urlopen(url).read()
  return api.xml_value(xml, "securityToken")