-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrowbot-mojo
executable file
·284 lines (209 loc) · 6.71 KB
/
growbot-mojo
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#!/usr/bin/env perl
=head1 NAME
GrowBot
=head1 SYNOPSIS
=head1 DESCRIPTION
=head1 DEPENDENCIES
GrowBot requires Perl version 5.14 or later, in addition to Mojolicious.
=head1 FEEDBACK
=head2 Reporting Bugs
Report bugs to the GitHub issue tracker at:
https://github.com/sandain/growbot/issues
=head1 AUTHOR - Jason M. Wood
Email sandain@hotmail.com
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2020-2022 Jason M. Wood <sandain@hotmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
=cut
use strict;
use warnings;
use utf8;
use open qw (:std :utf8);
use v5.14;
use lib qw (lib);
use GrowBot;
use DateTime;
use Mojolicious::Lite;
use Mojo::JSON qw (to_json);
use lib qw (lib);
my $configFile = "config.json";
my $growbot = GrowBot->new ($configFile);
=head2 Helper Functions
=head3 config
Return configuration information.
=cut
helper 'config' => sub {
my $self = shift;
return $growbot->{config};
};
=head3 gauge
Return current measurement.
=cut
helper 'gauge' => sub {
my $self = shift;
my ($device, $measurement, $type, $indent) = @_;
my $filepath = sprintf "%s/%s/%s-gauge.%s",
$growbot->dataFolder, $device, $measurement, $type;
return unless (-s $filepath);
open my $fh, '<', $filepath or die "Can't load data: $!";
my $gauge = join " " x $indent, <$fh>;
close $fh;
return $gauge;
};
=head3 history
Return measurement data.
=cut
helper 'history' => sub {
my $self = shift;
my ($device, $measurement, $type, $indent) = @_;
my $filepath = sprintf "%s/%s/%s-history.%s",
$growbot->dataFolder, $device, $measurement, $type;
return unless (-s $filepath);
open my $fh, '<', $filepath or die "Can't load data: $!";
my $history = join " " x $indent, <$fh>;
close $fh;
return $history;
};
=head3 devices
Return the devices.
=cut
helper 'devices' => sub {
my $self = shift;
return sort $growbot->devices;
};
=head3 device
Return device data.
=cut
helper 'device' => sub {
my $self = shift;
my ($name) = @_;
my $folder = sprintf "%s/%s", $growbot->dataFolder, $name;
my $data = {
"name" => $self->config->{Devices}{$name}{Name},
"driver" => $self->config->{Devices}{$name}{Driver},
"type" => $self->config->{Devices}{$name}{Type},
"dashboard" => $self->config->{Devices}{$name}{Dashboard}
};
if (defined $self->config->{Devices}{$name}{Actions}{Measure}{Type}) {
foreach my $m (keys %{$self->config->{Devices}{$name}{Actions}{Measure}{Type}}) {
open my $fh, '<', "$folder/$m.txt" or
die "Can't open file $folder/$m.txt: $!";
my $measure = join "", <$fh>;
close $fh;
$measure =~ s/[\r\n]+//;
my @measure = split /\t/, $measure;
my $date;
my $time;
eval {
my $dt = DateTime::Format::ISO8601->parse_datetime ($measure[0]);
$dt->set_time_zone ($self->config->{TimeZone});
$date = $dt->ymd;
$time = $dt->hms;
} or printf STDERR "Error: Unable to parse datetime '%s'.\n%s",
$measure[0], $@;
$data->{measurements}{$m} = {
"type" => $self->config->{Devices}{$name}{Actions}{Measure}{Type}{$m}{Name},
"date" => $date,
"time" => $time,
"measure" => $measure[1],
"unit" => (defined $measure[2] ? $measure[2] : "")
};
}
}
return to_json $data;
};
=head2 HTTP Request Methods
=head3 get /
Renders the dashboard.
=cut
get '/'
=> [ format => [ 'html' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'dashboard');
};
=head3 get /device/<device name>
Renders the device.
=cut
get '/device/:name'
=> [ format => [ 'html', 'json' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
my $name = $self->param ('name');
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'device');
};
=head3 get /device/<device name>/current
Renders the current status of the device.
=cut
get '/device/:name/current'
=> [ format => [ 'html', 'json' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
my $name = $self->param ('name');
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'device_current');
};
=head3 get /device/<device name>/current/<action type>
Renders the current status of the device action type.
=cut
get '/device/:name/current/:type'
=> [ format => [ 'html', 'json', 'svg', 'txt' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
my $name = $self->param ('name');
my $type = $self->param ('type');
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'device_current_type');
};
=head3 get /device/<device name>/history
Renders the history for the device.
=cut
get '/device/:name/history'
=> [ format => [ 'html', 'json' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
my $name = $self->param ('name');
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'device_history');
};
=head3 get /device/<device name>/history/<action type>
Renders the history for the device action type.
=cut
get '/device/:name/history/:type'
=> [ format => [ 'html', 'json', 'svg', 'txt' ] ]
=> { format => 'html' }
=> sub {
my $self = shift;
my $name = $self->param ('name');
my $type = $self->param ('type');
$self->res->headers->server ($growbot->{config}{AppName});
$self->render (template => 'device_history_type');
};
# Don't serve the default favicon.
delete app->static->extra->{'favicon.ico'};
app->start;