1.11.3 • Published 3 years ago

node-telussecurity-dot-com v1.11.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Node.js Telus SmartHome Security Interface

Unofficial interface module written in Node.js to access and operate Telus Smarthome Security security systems.

This interface works best with the fork: https://github.com/prsng/homebridge-node-telussecurity-dot-com, based off of John Hurliman's FrontPoint* plugin for Homebridge. This variation adds changes the default login authentication for to Alarm.com. with a switch to use the FrontPoint login authentication process if desired.

*FrontPoint is simply a rebranded service provider for Alarm.com.

Originally intended for use with the fork: https://github.com/prsng/homebridge-node-telussecurity-dot-com, originally created by Bryan Bartow for his Alarm.com plugin for Homebridge.

Supported Features

  • Querying panels
    • Arming
    • Disarming
  • Sensors
    • Contact states
    • Occupancy states (this does not work due to lag in the Telus Smarthome Security webAPI itself)
    • Water Leak states
  • Lights
    • On/Off switch
    • Dimmer switch
  • Locks
    • Lock/Unlock switch

Usage

Install:

npm i node-telussecurity-dot-com

Querying:

const nodeADC = require('node-telussecurity-dot-com')

nodeADC
  .login('your_username', 'your_password')
  .then(authOpts => nodeADC.getCurrentState(authOpts.systems[0], authOpts))
  .then(res => {
    console.log('Security Systems:', res.partitions)
    console.log('Sensors:', res.sensors)
  })
  .catch(err => console.error(err))

Arming:

const nodeADC = require('node-telussecurity-dot-com')

nodeADC
  .login('your_username', 'your_password')
  .then(authOpts => {
    return nodeADC
      .getCurrentState(authOpts.systems[0], authOpts)
      .then(res => {
        // This will take 20-30 seconds
        nodeADC.armStay(res.partitions[0].id, authOpts).then(res => {
          console.log(res)
        })
      })
  })
  .catch(err => console.error(err))

Documentation

nodeADC~login(username, password) ⇒ Promise

Authenticate with smarthome-security.telus.com using the mobile webpage login form (loads faster than the desktop webpage login form). Returns an authentication object that can be passed to other methods.

Kind: inner method of module_nodeADC

ParamTypeDescription
usernamestringFrontPoint username.
passwordstringFrontPoint password.

nodeADC~getCurrentState(systemID, authOpts) ⇒ Promise

Retrieve information about the current state of a security system including attributes, partitions, sensors, and relationships.

Kind: inner method of nodeADC

ParamTypeDescription
systemIDstringID of the FrontPoint system to query. The Authentication object returned from the login method contains a systems property which is an array of system IDs.
authOptsObjectAuthentication object returned from the login method.

nodeADC~getPartition(partitionID, authOpts) ⇒ Promise

Get information for a single security system partition.

Kind: inner method of nodeADC

ParamTypeDescription
partitionIDstringPartition ID to retrieve
authOptsObjectAuthentication object returned from the login method.

nodeADC~getSensors(sensorIDs, authOpts) ⇒ Promise

Get information for one or more sensors.

Kind: inner method of nodeADC

ParamTypeDescription
sensorIDsstring | Array.<string>Array of sensor ID strings.
authOptsObjectAuthentication object returned from the login method.

nodeADC~getLights(lightIDs, authOpts) ⇒ Promise

Get information for one or more lights.

Kind: inner method of nodeADC

ParamTypeDescription
lightIDsstring | Array.<string>Array of light ID strings.
authOptsObjectAuthentication object returned from the login method.

nodeADC~turnOnLight(lightID, brightness, authOpts) ⇒ Promise

Sets a light to ON and adjusts brightness level (1-100) of dimmable lights.

Kind: inner method of nodeADC

ParamTypeDescription
lightIDstringLight ID string.
brightnessnumberAn integer, 1-100, indicating brightness.
authOptsObjectAuthentication object returned from the login method.

nodeADC~turnOffLight(lightID, brightness, authOpts) ⇒ Promise

Sets a light to OFF. The brightness level is ignored.

Kind: inner method of nodeADC

ParamTypeDescription
lightIDstringLight ID string.
brightnessnumberAn integer, 1-100, indicating brightness. Ignored.
authOptsObjectAuthentication object returned from the login method.

nodeADC~getLocks(lightIDs, authOpts) ⇒ Promise

Get information for one or more locks.

Kind: inner method of nodeADC

ParamTypeDescription
lockIDsstring | Array.<string>Array of lock ID strings.
authOptsObjectAuthentication object returned from the login method.

nodeADC~secureLock(lockID, authOpts) ⇒ Promise

Sets a lock to "locked" (SECURED).

Kind: inner method of nodeADC

ParamTypeDescription
lockIDstringLock ID string.
authOptsObjectAuthentication object returned from the login method.

nodeADC~unsecureLock(lockID, authOpts) ⇒ Promise

Sets a lock to "unlocked" (UNSECURED).

Kind: inner method of nodeADC

ParamTypeDescription
lockIDstringLock ID string.
authOptsObjectAuthentication object returned from the login method.

nodeADC~armStay(partitionID, authOpts, opts) ⇒ Promise

Arm a security system panel in "stay" mode. NOTE: This call may take 20-30 seconds to complete.

Kind: inner method of nodeADC

ParamTypeDescription
partitionIDstringPartition ID to arm.
authOptsObjectAuthentication object returned from the login method.
optsObjectOptional arguments for arming the system.
opts.noEntryDelaybooleanDisable the 30-second entry delay.
opts.silentArmingbooleanDisable audible beeps and double the exit delay.

nodeADC~armAway(partitionID, authOpts, opts) ⇒ Promise

Arm a security system panel in "away" mode. NOTE: This call may take 20-30 seconds to complete.

Kind: inner method of nodeADC

ParamTypeDescription
partitionIDstringPartition ID to arm.
authOptsObjectAuthentication object returned from the login method.
optsObjectOptional arguments for arming the system.
opts.noEntryDelaybooleanDisable the 30-second entry delay.
opts.silentArmingbooleanDisable audible beeps and double the exit delay.

nodeADC~disarm(partitionID, authOpts) ⇒ Promise

Disarm a security system panel.

Kind: inner method of nodeADC

ParamTypeDescription
partitionIDstringPartition ID to disarm.
authOptsObjectAuthentication object returned from the login method.

Notes

In efforts to maintain this project as a native smarthome-security.telus.com implementation, authentication and reference to FrontPoint have been removed altogether within the code as of versions 1.0.0. This allows for the codebase to be cleaner without having to solve everyone else's extraneous smarthome-security.telus.com Verified-Partner setups, encouraging separate forks and augmentation for those unique scenarios.

Acknowledgements