unofficial_sense_api 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d213928a8c1d4fd351ca47e6a43e32caeb2fb01348b1bfb708ca7ef0ef2bcce2
4
+ data.tar.gz: 0dd6fdc5a66b58ee5ce0230d51db8ba36a0c0cc46eb6b949d62190f932fc6057
5
+ SHA512:
6
+ metadata.gz: a1f0aaf7adffa2d42c0f62e54f87d84f1de1296d7e67874f69b991e10b4aef1c3f78b1f5df85caba6079d16d714902976a62b1deeca4c002869452e8f54492a7
7
+ data.tar.gz: 974bb20d06cc9c659446ff3bd524eb87f51708ce90bb96d3ed828dae7ee470ec94f615ae95ec62c4fbcf2929898060aa4a87f54fc0b48b439a95fdb9020a2139
@@ -0,0 +1,3 @@
1
+ /.bundle
2
+ Gemfile.lock
3
+ .ruby-gemset
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Making Sense
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,94 @@
1
+ # Unofficial Sense Api
2
+
3
+ Access your Sense data.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'unofficial_sense_api'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install unofficial_sense_api
20
+
21
+ ## Usage
22
+
23
+ Getting Realtime Data (starts a websocket to `wss://clientrt.sense.com/monitors/#{api.first_monitor_id}/realtimefeed`)
24
+
25
+ ```ruby
26
+ require 'sense_api'
27
+ require 'pp'
28
+
29
+ api = SenseApi.new("USERNAME", "PASSWORD")
30
+
31
+ count = 0
32
+ api.realtime do |json|
33
+ pp json
34
+
35
+ # Be sure to return :exit to terminate the connection and shut down EventMachine!
36
+ count += 1
37
+ count > 5 ? :exit : nil
38
+ end
39
+ ```
40
+
41
+ Use `fetch` to pull from REST endpoints of your choice. None have been added to this gem yet.
42
+
43
+ ```ruby
44
+ require 'sense_api'
45
+ api = SenseApi.new("USERNAME", "PASSWORD")
46
+
47
+ timeline = api.fetch("https://api.sense.com/apiservice/api/v1/users/#{api.user_id}/timeline?n_item=30")
48
+
49
+ trends = api.fetch("https://api.sense.com/apiservice/api/v1/app/history/trends?monitor_id=#{api.first_monitor_id}&scale=WEEK&start=2017-10-23T04:00:00.000Z")
50
+
51
+ devices = api.fetch("https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices?include_merged=true")
52
+
53
+ first_device_id = devices.first["id"]
54
+
55
+ first_device_details = api.fetch("https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices/#{first_device_id}")
56
+ first_device_hostory = api.fetch("https://api.sense.com/apiservice/api/v1/app/history/usage?monitor_id=#{api.first_monitor_id}&granularity=MINUTE&start=2017-10-21T11:00:00.000Z&frames=5400&device_id=#{first_device_id}")
57
+ ```
58
+
59
+ Here are the endpoints we know about so far:
60
+
61
+ * `"https://api.sense.com/apiservice/api/v1/users/#{api.user_id}/timeline?n_item=30"`
62
+ * `"https://api.sense.com/apiservice/api/v1/app/history/trends?monitor_id=#{api.first_monitor_id}&scale=WEEK&start=2017-10-23T04:00:00.000Z"`
63
+ * `"https://api.sense.com/apiservice/api/v1/app/history/usage?monitor_id=#{api.first_monitor_id}&granularity=SECOND&start=2017-10-25T03:54:00.000Z&frames=5400"` (`granularity` seems to accept `SECOND` or `MINUTE`)
64
+
65
+ List devices:
66
+ * `"https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices?include_merged=true"`
67
+
68
+ You can add a `device_id` to the history request:
69
+ * `"https://api.sense.com/apiservice/api/v1/app/history/usage?monitor_id=#{api.first_monitor_id}&granularity=MINUTE&start=2017-10-21T11:00:00.000Z&frames=5400&device_id=SOME_DEVICE_ID"`
70
+
71
+ And get the data for devices:
72
+ * `"https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices/always_on"`
73
+ * `"https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices/unknown"`
74
+ * `"https://api.sense.com/apiservice/api/v1/app/monitors/#{api.first_monitor_id}/devices/SOME_DEVICE_ID"`
75
+
76
+ ### Accessing the API with Curl
77
+
78
+ If you'd like, you can skip Ruby entirely and talk to the Sense API with curl:
79
+
80
+ `curl -k --data "email=email@example.com" --data "password=URL_ENCODED_PASSWORD" -H "Sense-Client-Version: 1.17.1-20c25f9" -H "X-Sense-Protocol: 3" -H "User-Agent: okhttp/3.8.0" "https://api.sense.com/apiservice/api/v1/authenticate"`
81
+
82
+ The response will have an `access_token`, as well as a `user_id` and a `monitors` array that you can use to access the Sense APIs. For example:
83
+
84
+ `curl -k -H "Authorization: bearer ACCESS_TOKEN" -H "Sense-Client-Version: 1.17.1-20c25f9" -H "X-Sense-Protocol: 3" -H "User-Agent: okhttp/3.8.0" "https://api.sense.com/apiservice/api/v1/app/history/usage?monitor_id=A_MONITOR_ID&granularity=SECOND&start=2017-10-24T05:36:00.000Z&frames=5400"`
85
+
86
+ ## Development
87
+
88
+ You can run `bin/console` for an interactive prompt that will allow you to experiment.
89
+
90
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
91
+
92
+ ## License
93
+
94
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "sense_api"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,115 @@
1
+ require "sense_api/version"
2
+ require 'net/http'
3
+ require 'openssl'
4
+ require 'json'
5
+ require 'eventmachine'
6
+ require 'websocket/eventmachine/client'
7
+
8
+ class SenseApi
9
+ attr_accessor :email, :password, :token, :monitors, :user_id, :account_id
10
+
11
+ class SenseApiError < StandardError; end
12
+
13
+ def initialize(email, password, token: nil, monitors: nil)
14
+ self.email = email
15
+ self.password = password
16
+ self.token = token
17
+ self.monitors = monitors
18
+
19
+ login! unless token
20
+ end
21
+
22
+ def fetch(url, depth = 0)
23
+ uri = URI(url)
24
+ req = Net::HTTP::Get.new(uri)
25
+
26
+ req['Authorization'] = "bearer #{token}"
27
+ req['Sense-Client-Version'] = '1.17.1-20c25f9'
28
+ req['X-Sense-Protocol'] = '3'
29
+ req['User-Agent'] = 'okhttp/3.8.0'
30
+
31
+ http = Net::HTTP.new(uri.host, uri.port)
32
+ http.use_ssl = true
33
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
34
+ res = http.request(req)
35
+
36
+ case res
37
+ when Net::HTTPRedirection
38
+ if depth < 2
39
+ fetch(res['Location'], depth + 1)
40
+ else
41
+ raise SenseApiError, "Too many redirects"
42
+ end
43
+ when Net::HTTPSuccess
44
+ JSON.parse(res.body)
45
+ else
46
+ raise SenseApiError, "Error: #{res.value}"
47
+ end
48
+ end
49
+
50
+ def first_monitor_id
51
+ monitors.first["id"]
52
+ end
53
+
54
+ def realtime(monitor_id = first_monitor_id)
55
+ raise ArgumentError, "block required" unless block_given?
56
+
57
+ exiting = false
58
+ EM.run do
59
+ ws = WebSocket::EventMachine::Client.connect(
60
+ uri: "wss://clientrt.sense.com/monitors/#{monitor_id}/realtimefeed",
61
+ headers: {
62
+ 'Authorization' => "bearer #{token}",
63
+ 'Sense-Client-Version' => '1.17.1-20c25f9',
64
+ 'X-Sense-Protocol' => '3',
65
+ 'User-Agent' => 'okhttp/3.8.0'
66
+ },
67
+ tls_options: { fail_if_no_peer_cert: false, verify_peer: false }
68
+ )
69
+
70
+ ws.onmessage do |msg, type|
71
+ if yield(JSON.parse(msg)) == :exit
72
+ exiting = true
73
+ ws.close
74
+ end
75
+ end
76
+
77
+ ws.onclose do |code, reason|
78
+ raise SenseApiError, "Connection closed: #{code} #{reason}" unless exiting
79
+ EM.stop_event_loop
80
+ end
81
+ end
82
+ end
83
+
84
+ private
85
+
86
+ def login!
87
+ uri = URI('https://api.sense.com/apiservice/api/v1/authenticate')
88
+ req = Net::HTTP::Post.new(uri)
89
+
90
+ req.set_form_data(email: email, password: password)
91
+ req['Sense-Client-Version'] = '1.17.1-20c25f9'
92
+ req['X-Sense-Protocol'] = '3'
93
+ req['User-Agent'] = 'okhttp/3.8.0'
94
+
95
+ http = Net::HTTP.new(uri.host, uri.port)
96
+ http.use_ssl = true
97
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
98
+ res = http.request(req)
99
+
100
+ case res
101
+ when Net::HTTPSuccess, Net::HTTPRedirection
102
+ json = JSON.parse(res.body)
103
+ if json["authorized"]
104
+ self.token = json["access_token"]
105
+ self.monitors = json["monitors"]
106
+ self.account_id = json["account_id"]
107
+ self.user_id = json["user_id"]
108
+ else
109
+ raise SenseApiError, "Login failed"
110
+ end
111
+ else
112
+ raise SenseApiError, "Error: #{res.value}"
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,3 @@
1
+ class SenseApi
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1 @@
1
+ require "sense_api"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "sense_api/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "unofficial_sense_api"
8
+ spec.version = SenseApi::VERSION
9
+ spec.authors = ["Making Sense"]
10
+
11
+ spec.summary = %q{Get access to your home's power data from Sense}
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
15
+ f.match(%r{^(test|spec|features)/})
16
+ end
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.15"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_dependency "json"
24
+ spec.add_dependency "eventmachine"
25
+ spec.add_dependency "websocket-eventmachine-client"
26
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: unofficial_sense_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Making Sense
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-03-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: json
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: eventmachine
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: websocket-eventmachine-client
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description:
84
+ email:
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - ".gitignore"
90
+ - Gemfile
91
+ - LICENSE.txt
92
+ - README.md
93
+ - Rakefile
94
+ - bin/console
95
+ - bin/setup
96
+ - lib/sense_api.rb
97
+ - lib/sense_api/version.rb
98
+ - lib/unofficial_sense_api.rb
99
+ - unofficial_sense_api.gemspec
100
+ homepage:
101
+ licenses:
102
+ - MIT
103
+ metadata: {}
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project:
120
+ rubygems_version: 2.7.3
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Get access to your home's power data from Sense
124
+ test_files: []