sensorpush-proxy

command module
v0.0.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 18, 2023 License: ISC Imports: 2 Imported by: 0

README

sensorpush-proxy

A rate-limiting, authentication-hiding proxy for SensorPush data.

Usage

More than likely, you’ll want to use the already-built Docker image for this, so that you can just throw your credentials and sensor config at it and let it run behind something like Traefik or nginx. Regardless of whether you use Docker or the raw binary, sensorpush-proxy includes both the proxy itself and also a query sub-command to help you discover the sensor IDs available to you.

Get SensorPush credentials

If you have any SensorPush devices, you ought to already have an account with SensorPush. In order to activate API access, you need to sign into their Gateway Cloud Dashboard at least once and agree to the terms of service. Once you've done that, the username and password you use for that dashboard are the same ones you need for this proxy. Unfortunately, SensorPush does not allow you to create limited-use (and revocable) tokens to use in place of your password for API access. This proxy only uses the password you provide in order to retrieve the sensor data you request. Use secure best practices to ensure that the configuration you pass to this proxy is kept secret/encrypted until the last possible moment.

Get sensorpush-proxy

Either docker pull sensorpush-proxy for the Docker image, or grab a binary distribution for your platform from the releases page. You can also build from source, in which case you may want to take a look at the CONTRIBUTING documentation for more about the tooling and expected process.

Note that in the below sensorpush-proxy command lines, you will need to use something like docker run --rm -ti jaredreisinger/sensorpush-proxy followed by the command-line flags, and/or with a configuration file mounted and available to the container.

Discover sensor IDs

Use the query subcommand with your SensorPush credentials to discover the sensor IDs available to you:

sensorpush-proxy query --username YOUR_SENSORPUSH_USERNAME --password YOUR_SENSORPUSH_PASSWORD

You should see as output several log lines that show the name, ID, and type of the sensors on your account (IDs shown below are not real!):

2023/01/17 15:30:24 Kitchen
2023/01/17 15:30:24   ID  : "123456.67834768348756683478"
2023/01/17 15:30:24   Type: HT1
2023/01/17 15:30:24 Humidor
2023/01/17 15:30:24   ID  : "134567.9834598734598734598"
2023/01/17 15:30:24   Type: HT1
2023/01/17 15:30:24 Garage
2023/01/17 15:30:24   ID  : "135678.0934908340980985858"
2023/01/17 15:30:24   Type: HT1

Figure out your desired configuration and run the proxy

sensorpush-proxy supports configuration by command-line flags, by environment variables, or by configuration file; use whichever form or combination of forms is the most convenient. However, please be aware of the risk of putting your SensorPush password in plaintext in any form. The generally-accepted best practice for things like passwords is to keep them as secrets in your CI/CD pipeline or container orchestration tool, and to provide them to sensorpush-proxy from there. That said, the examples here won’t show any use of secrets.

Given the above example, let’s assume that we want to proxy the “Kitchen” (123456.67834768348756683478) and “Garage” (135678.0934908340980985858) sensors, using the names “inside” and “outside” respectively.

As command-line flags

(Shown here across multiple lines for readability...)

sensorpush-proxy proxy \
  --username YOUR_SENSORPUSH_USERNAME --password YOUR_SENSORPUSH_PASSWORD \
  --device-ids inside=123456.67834768348756683478,outside=135678.0934908340980985858
As environment variables
export SPP_SENSORPUSH_USERNAME=YOUR_SENSORPUSH_USERNAME
export SPP_SENSORPUSH_PASSWORD=YOUR_SENSORPUSH_PASSWORD
export SPP_PROXY_DEVICEIDS=inside=123456.67834768348756683478,outside=135678.0934908340980985858

sensorpush-proxy proxy
As a config file

(in ./config.yaml, say)

sensorPush:
  username: YOUR_SENSORPUSH_USERNAME
  password: YOUR_SENSORPUSH_PASSWORD

proxy:
  deviceIds:
    inside: "123456.67834768348756683478"
    outside: "135678.0934908340980985858"
sensorpush-proxy proxy --config ./config.yaml

Background

For further details, peruse the background and/or other documentation in the docs folder.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
config
Package config provides common config and CLI support for the sensorpush proxy and tools, so that each tool does not need to duplicate the common settings and config parsing logic.
Package config provides common config and CLI support for the sensorpush proxy and tools, so that each tool does not need to duplicate the common settings and config parsing logic.
jsonapi
Package jsonapi provides a very basic JSON REST-like API client.
Package jsonapi provides a very basic JSON REST-like API client.
sensorpush
Package sensorpush provides a wrapper for accessing the SensorPush API.
Package sensorpush provides a wrapper for accessing the SensorPush API.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL