-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
235 lines (207 loc) · 6.66 KB
/
index.php
File metadata and controls
235 lines (207 loc) · 6.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
require __DIR__ . '/vendor/autoload.php';
use Prometheus\Storage\Adapter;
use Prometheus\Storage\Redis;
use Prometheus\CollectorRegistry;
use Prometheus\Exception\MetricsRegistrationException;
class Tedee
{
const UNKNOWN = 'unknown';
const METRIC_NAMESPACE = 'tedee';
const DEVICE_TYPE = [
2 => 'Lock Pro',
4 => 'Lock Go',
];
const STATUS_CONNECTED = [
0 => 'disconnected',
1 => 'connected',
];
const STATUS_LOCK = [
0 => 'uncalibrated',
1 => 'calibration',
2 => 'open',
3 => 'partially_open',
4 => 'opening',
5 => 'closing',
6 => 'closed',
7 => 'pull_spring',
8 => 'pulling',
9 => 'unknown',
255 => 'unpulling',
];
const STATUS_JAMMED = [
0 => 'not jammed',
1 => 'jammed',
];
private array $request;
private CollectorRegistry $registry;
function __construct(
private Adapter $storage
)
{
$this->registry = new CollectorRegistry($this->storage);
}
public function register(array $request): void
{
$this->request = $request;
try {
if (!$this->isValid()) {
throw new MetricsRegistrationException("Invalid request");
}
$this->metrics();
} catch (MetricsRegistrationException $e) {
user_error('Metrics registration error: ' . $e->getMessage(), E_USER_WARNING);
}
}
public function debug(): void
{
file_put_contents('webhook', json_encode($this->request) . PHP_EOL, FILE_APPEND | LOCK_EX);
}
private function getEvent(): string
{
return $this->request['event'];
}
/**
* @throws MetricsRegistrationException
*/
private function metrics(): void
{
match ($this->getEvent()) {
'backend-connection-changed' => $this->backendConnectionChanged(),
'device-connection-changed' => $this->deviceConnectionChanged(),
'device-settings-changed' => $this->deviceSettingsChanged(),
'lock-status-changed' => $this->lockStatusChanged(),
'device-battery-level-changed' => $this->deviceBatteryLevelChanged(),
'device-battery-start-charging',
'device-battery-stop-charging' => $this->deviceBatteryCharging(),
'device-battery-fully-charged' => $this->deviceBatteryCharged(),
default => $this->unknownEvent(),
};
}
/**
* @throws MetricsRegistrationException
*/
private function backendConnectionChanged(): void
{
$this->registry
->getOrRegisterCounter(
self::METRIC_NAMESPACE,
'backend_connection_changed_total',
'it observes change of backend connection', ['isConnected'])
->inc([
self::STATUS_CONNECTED[$this->request['isConnected']] ?? self::UNKNOWN,
]);
}
/**
* @throws MetricsRegistrationException
*/
private function deviceConnectionChanged(): void
{
$this->registry
->getOrRegisterCounter(
self::METRIC_NAMESPACE,
'device_connection_changed_total',
'it observes change of device connection to the bridge', ['deviceType', 'isConnected'])
->inc([
self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN,
self::STATUS_CONNECTED[$this->request['isConnected']] ?? self::UNKNOWN,
]);
}
/**
* @throws MetricsRegistrationException
*/
private function deviceSettingsChanged(): void
{
$this->registry
->getOrRegisterCounter(
self::METRIC_NAMESPACE,
'device_settings_changed_total',
'it observes change of device settings', ['deviceType'])
->inc([
self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN,
]);
}
/**
* @throws MetricsRegistrationException
*/
private function lockStatusChanged(): void
{
$this->registry
->getOrRegisterCounter(
self::METRIC_NAMESPACE,
'lock_status_changed_total',
'it observes lock status change', ['state', 'deviceType', 'jammed'])
->inc([
self::STATUS_LOCK[(int)($this->request['state'])] ?? self::UNKNOWN,
self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN,
self::STATUS_JAMMED[$this->request['jammed']] ?? self::UNKNOWN,
]);
}
/**
* @throws MetricsRegistrationException
*/
private function deviceBatteryLevelChanged(): void
{
$this->registry
->getOrRegisterGauge(
self::METRIC_NAMESPACE,
'device_battery_level_ratio',
'it observes lock battery level change', ['deviceType']
)
->set(
$this->request['batteryLevel'],
[
self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN,
]
);
}
/**
* @throws MetricsRegistrationException
*/
private function deviceBatteryCharging(): void
{
$this->registry
->getOrRegisterHistogram(
self::METRIC_NAMESPACE,
'device_battery_charging_duration_seconds',
'it observes lock charging status', ['deviceType'])
->observe(time(), [self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN]);
}
/**
* @throws MetricsRegistrationException
*/
private function deviceBatteryCharged(): void
{
$this->registry
->getOrRegisterCounter(
self::METRIC_NAMESPACE,
'device_battery_fully_charged_total',
'it observes fully charge state', ['deviceType'])
->inc([
self::DEVICE_TYPE[$this->request['deviceType']] ?? self::UNKNOWN,
]);
}
private function unknownEvent(): void
{
user_error('Unknown event: ' . json_encode($this->request), E_USER_WARNING);
}
private function isValid(): bool
{
return !empty($this->request) && isset($this->request['event']);
}
}
Redis::setDefaultOptions(
[
'host' => '127.0.0.1',
'port' => 6379,
'password' => null,
'timeout' => 0.1, // in seconds
'read_timeout' => '10', // in seconds
'persistent_connections' => false
]
);
$tedee = new Tedee(new Redis());
$tedee->register($_REQUEST);
$tedee->debug();