forked from robertraaijmakers/com.trashchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
894 lines (777 loc) · 28.7 KB
/
app.js
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
/*globals Homey, module, require, setInterval*/
"use strict";
const Homey = require('homey');
const DateTimeHelper = require('./lib/datetime.js');
var http = require('http');
var apiArray = require('./trashapis.js');
var supportedTypes = ["GFT","PLASTIC","PAPIER","PMD","REST","TEXTIEL"];
class TrashcanReminder extends Homey.App
{
onInit()
{
this.manualInput = false;
this.gdates = '';
this.trashToken = null;
this.intervalRefreshToken = null;
this.collectingDaysSet = false;
// Update manual input dates when settings change.
Homey.ManagerSettings.on('set', this.onSettingsChanged.bind(this));
// Register flow card
let daysToCollect = new Homey.FlowCardCondition('days_to_collect');
daysToCollect
.register()
.registerRunListener(this.flowDaysToCollect.bind(this));
// Register speech events
Homey.ManagerSpeechInput.on('speechEval', this.speechEvalExecute.bind(this));
Homey.ManagerSpeechInput.on('speechMatch', this.parseSpeechExecute.bind(this));
// Check if we have to handle manual input, or automatically.
if(Homey.ManagerSettings.get('manualInput'))
{
var manually = Homey.ManagerSettings.get('manualInput');
this.manualInput = Boolean(manually);
}
// Manually kick off data retrieval
this.onUpdateData(true, false);
// Every 24 hours update API or manual dates
let msTillUpdateApi = this.millisecondsTillSaturdayNight();
setTimeout(this.onUpdateData.bind(this), msTillUpdateApi, true, true); // Every Saturday night (and on refresh), but this prevents data from getting lost when it is retrieved through the week.
setInterval(this.onUpdateLabel.bind(this), 10*60*1000); // Update label every 10 minutes.
// Make sure the label is updated every 10 minutes
let trashCollectionToken = new Homey.FlowToken( 'trash_collection_token', {
type: 'string',
title: Homey.__('tokens.trashcollection')
});
trashCollectionToken
.register()
.then(() => {
this.trashToken = trashCollectionToken;
return this.onUpdateLabel ( );
})
.catch( err => {
this.error( err );
});
this.log("App initialized");
}
/* ******************
SPEECH FUNCTIONS
********************/
speechEvalExecute(speech, callback)
{
callback ( null, true)
return;
}
parseSpeechExecute(speech, onSpeechEvalData)
{
var result = this.parseSpeech(speech, Homey.ManagerSettings.get("collectingDays"));
if(result != null && result != "")
{
speech.say( result );
return true;
}
// Only execute 1 trigger
return false;
}
parseSpeech(speech, gdates)
{
// TYPE OF QUESTIONS
// WHAT type of trash is collected << TODAY | TOMORROW | DAY AFTER TOMORROW >>
// WHEN is <<TYPE>> collected?
// IS <<TYn38PE>> collected << TODAY | TOMORROW | DAY AFTER TOMORROW >>
// WHICH type will be collected << TODAY | TOMORROW | DAY AFTER TOMORROW >>
var regexReplace = new RegExp("(" + Homey.__('speech.replacequestion') + ")", 'gi');
var newTranscript = speech.transcript.replace(regexReplace, "");
console.log(speech);
/* ******************
FIND TRASH TYPE INDICATOR
********************/
var foundType = null;
var differenceInDaysForType = null;
for (var i = 0, len = supportedTypes.length; i < len; i++) {
if (newTranscript.indexOf(Homey.__('speech.type.' + supportedTypes[i])) > -1)
{
foundType = supportedTypes[i];
break; // stop loop after first match.
}
// Other words for types (search via regex)
var regex = new RegExp("(" +Homey.__('speech.type_multipleother.' + supportedTypes[i])+ ")", 'gi');
if (newTranscript.match(regex) !== null)
{
foundType = supportedTypes[i];
break; // stop loop after first match.
}
}
// Find first collection date for this type of trash
if(foundType != null && gdates != null && typeof gdates !== 'undefined' && typeof gdates[ foundType ] !== 'undefined')
{
var today = new Date();
for (var i = 0, len = gdates[foundType].length; i < len; i++)
{
var date = new Date(gdates[foundType][i].substring(6,10), (parseInt(gdates[foundType][i].substring(3,5))-1), gdates[foundType][i].substring(0,2));
if(DateTimeHelper.daysBetween(today, date) >= 0)
{
differenceInDaysForType = DateTimeHelper.daysBetween(today, date);
break;
}
}
}
//console.log("type and difference in days");
//console.log(foundType);
//console.log(differenceInDaysForType);
/* ******************
FIND TIME INDICATOR
********************/
var checkDate = null;
var typeCollectedOnThisDay = [];
var matchesWithGivenType = false;
// If bigger then one, someone probably asked something like 'is the container picked up tomorrow or the day after tomorrow'
if(speech.times != null && speech.times !== false && speech.times.length == 1)
{
var dateInput = null;
try {
dateInput = new Date(speech.times[0].time.year, speech.times[0].time.month, speech.times[0].time.day);
} catch(e) { console.log(e); }
//console.log("given date via speech");
//console.log(dateInput);
checkDate = dateInput;
}
if(checkDate != null)
{
// Go through types
for (var i = 0, len = supportedTypes.length; i < len; i++) {
if( typeof gdates[ supportedTypes[i] ] !== 'undefined' )
{
if(gdates[ supportedTypes[i] ].indexOf(this.dateToString(checkDate)) > -1 && typeCollectedOnThisDay.indexOf(Homey.__('speech.type.' + supportedTypes[i])) <= -1)
{
typeCollectedOnThisDay.push(Homey.__('speech.output.type.' + supportedTypes[i]));
if(!matchesWithGivenType)
{
matchesWithGivenType = supportedTypes[i] == foundType;
}
}
}
}
//console.log("types collected on this day");
//console.log(typeCollectedOnThisDay);
}
/* ******************
FIND TYPE OF QUESTION (sentence starting with WHAT, IS, WHEN)
********************/
var questionType = 0;
if(newTranscript.toLowerCase().startsWith(Homey.__('speech.questiontype.what')) ||
newTranscript.toLowerCase().startsWith(Homey.__('speech.questiontype.which')))
{
questionType = 1;
}
else if(newTranscript.toLowerCase().startsWith(Homey.__('speech.questiontype.when')))
{
questionType = 2;
}
else if(newTranscript.toLowerCase().startsWith(Homey.__('speech.questiontype.is')))
{
questionType = 3;
}
//console.log("defined question type");
//console.log(questionType);
var responseText = "";
try {
// which, what type of trash is collected <<time>>
if(questionType == 1 && checkDate != null)
{
if(typeCollectedOnThisDay.length == 0)
{
responseText = Homey.__('speech.output.notrashcollectedonx', { time: speech.times[0].transcript });
}
else if(typeCollectedOnThisDay.length > 1)
{
var multiTypeString = "";
for (var i = 0, len = multiTypeString.length; i < len; i++) {
multiTypeString += typeCollectedOnThisDay[i] + (i < (len-2) ? ", " : (i == (len-2) ? " " + Homey.__('speech.output.and') + " " : ""));
}
responseText = Homey.__('speech.output.trashtypesycollectedonx', { time: speech.times[0].transcript, types: multiTypeString.toLowerCase() });
}
else
{
responseText = Homey.__('speech.output.trashtypeycollectedonx', { time: speech.times[0].transcript, type: typeCollectedOnThisDay[0] });
}
}
// when is <<type>> collected?
else if(questionType == 2 && foundType != null)
{
if(differenceInDaysForType === null)
{
responseText = Homey.__('speech.output.notrashcollectionforx', { type: Homey.__('speech.output.type.' + foundType) });
}
else
{
responseText = Homey.__('speech.output.trashtypexcollectedony', { type: Homey.__('speech.output.type.' + foundType), time: TrashcanReminder.toDateOutputString(differenceInDaysForType).toLowerCase() });
}
}
// is <<type>> collected on <<date>>
else if(questionType == 3 && foundType != null && checkDate != null)
{
if(differenceInDaysForType === null)
{
responseText = Homey.__('speech.output.notrashcollectionforx', { type: Homey.__('speech.output.type.' + foundType) });
}
else if(matchesWithGivenType)
{
responseText = Homey.__('speech.output.yesyiscollectedonx', { time: speech.times[0].transcript.toLowerCase(), type: Homey.__('speech.output.type.' + foundType).toLowerCase() });
}
else
{
responseText = Homey.__('speech.output.noyiscollectedonxbutonz', { time: speech.times[0].transcript.toLowerCase(), type: Homey.__('speech.output.type.' + foundType).toLowerCase(), time2: TrashcanReminder.toDateOutputString(differenceInDaysForType).toLowerCase() });
}
}
else if(questionType == 1) // what|which type is collected next?
{
// Find the container that is picked up next
var nextContainerNotBefore = new Date();
var containerDateNext = new Date();
containerDateNext.setDate(containerDateNext.getDate() + 366);
var containerTypesNext = [];
for (var i = 0, len = supportedTypes.length; i < len; i++) {
if( typeof gdates[ supportedTypes[i] ] !== 'undefined' )
{
for (var y = 0, len = gdates[supportedTypes[i]].length; y < len; y++)
{
var date = new Date(gdates[supportedTypes[i]][y].substring(6,10), (parseInt(gdates[supportedTypes[i]][y].substring(3,5))-1), gdates[supportedTypes[i]][y].substring(0,2));
if(DateTimeHelper.daysBetween(nextContainerNotBefore, date) >= 0 && DateTimeHelper.daysBetween(containerDateNext, date) <= 0)
{
var diff = DateTimeHelper.daysBetween(containerDateNext, date);
if(diff === 0)
{
containerTypesNext.push(Homey.__('speech.output.type.' + supportedTypes[i]));
}
else
{
containerDateNext = date;
containerTypesNext = [];
containerTypesNext.push(Homey.__('speech.output.type.' + supportedTypes[i]));
}
}
}
}
}
//console.log(containerTypesNext);
var differenceInDaysForNextCollection = DateTimeHelper.daysBetween(nextContainerNotBefore, containerDateNext);
if(containerTypesNext.length == 0)
{
responseText = Homey.__('speech.output.noknowntrashcollected');
}
else if(containerTypesNext.length > 1)
{
var multiTypeString = "";
for (var i = 0, len = multiTypeString.length; i < len; i++) {
multiTypeString += containerTypesNext[i] + (i < (len-2) ? ", " : (i == (len-2) ? " " + Homey.__('speech.output.and') + " " : ""));
}
responseText = Homey.__('speech.output.trashtypesycollectedonx', { time: TrashcanReminder.toDateOutputString(differenceInDaysForNextCollection), types: multiTypeString.toLowerCase() });
}
else
{
responseText = Homey.__('speech.output.trashtypeycollectedonx', { time: TrashcanReminder.toDateOutputString(differenceInDaysForNextCollection), type: containerTypesNext[0].toLowerCase() });
}
}
}
catch(e)
{
console.log(e);
}
console.log(responseText);
return responseText;
}
/* ******************
FLOW FUNCTIONS
********************/
flowDaysToCollect(args, state)
{
// For testing use these variables, will become pulled from settings
//Homey.log(Object.keys(gdates));
if( typeof this.gdates[ args.trash_type.toUpperCase() ] === 'undefined' && args.trash_type.toUpperCase() !== "ANY")
{
if(this.manualInput)
{
var message = Homey.__('error.typenotsupported.addviasettings');
console.log(message);
return Promise.resolve(false);
}
else
{
var message = Homey.__('error.typenotsupported.onyouraddress');
console.log(message);
return Promise.resolve(false);
}
}
var now = new Date();
//uncomment below to test on working date(or some other number)
//now.setDate(now.getDate() -1);
if(args.when == 'tomorrow') {
now.setDate(now.getDate() + 1);
} else if(args.when == 'datomorrow') {
now.setDate(now.getDate() + 2);
}
var dateString = this.dateToString(now);
if(args.trash_type.toUpperCase() == "ANY") {
var result = false;
for(var i=0; i<supportedTypes.length; i++)
{
if(result === false && typeof(this.gdates[supportedTypes[i].toUpperCase()]) !== 'undefined') {
result = this.gdates[ supportedTypes[i].toUpperCase() ].indexOf(dateString) > -1;
}
}
return Promise.resolve( result );
}
//Homey.log(dateString);
return Promise.resolve( this.gdates[ args.trash_type.toUpperCase() ].indexOf(dateString) > -1 );
}
/* ******************
EVENT HANDLERS
********************/
onSettingsChanged(parameterName)
{
console.log("Updating settings for: " + parameterName);
if(parameterName === "manualEntryData")
{
this.GenerateNewDaysBasedOnManualInput();
}
if(parameterName === "collectingDays")
{
this.collectingDaysSet = true;
console.log("Updating label because collecting days changed.");
this.onUpdateLabel( );
}
if(parameterName === "labelSettings" && this.collectingDaysSet == true)
{
console.log("Updating label because label settings changed.");
this.onUpdateLabel( );
}
}
onUpdateData(shouldExecute, shouldSetTimeout)
{
if (this.manualInput === false &&
Homey.ManagerSettings.get('postcode') &&
Homey.ManagerSettings.get('hnumber') &&
Homey.ManagerSettings.get('country') &&
shouldExecute === true)
{
var apiId = Homey.ManagerSettings.get('apiId');
this.updateAPI(
Homey.ManagerSettings.get('postcode'),
Homey.ManagerSettings.get('hnumber'),
Homey.ManagerSettings.get('country'),
apiId,
function(success, that, newApiId)
{
if(success)
{
console.log('retrieved house information');
// Update label
that.onUpdateLabel();
}
else
{
console.log('house information has not been set');
}
}
);
}
else if (this.manualInput === true && shouldExecute === true)
{
// Generate new days based on manual input
this.GenerateNewDaysBasedOnManualInput();
}
// Make sure it is executed every saturday around midnight (+1 sec)
if(shouldSetTimeout === true)
{
let msTillSaturday = this.millisecondsTillSaturdayNight();
setTimeout(this.onUpdateData.bind(this), msTillSaturday, true, true);
}
}
onUpdateLabel( )
{
// Retrieve label settings
console.log("Updating label");
var labelSettings = Homey.ManagerSettings.get('labelSettings');
var dates = Homey.ManagerSettings.get('collectingDays');
// DEBUG
console.log(dates);
console.log(labelSettings);
if(labelSettings === 'undefined' || labelSettings == null)
{
labelSettings = {
timeindicator: 0,
type: {
gft: Homey.__('speech.output.type.GFT') + " " + Homey.__('settings.labelplaceholder'),
rest: Homey.__('speech.output.type.REST') + " " + Homey.__('settings.labelplaceholder'),
pmd: Homey.__('speech.output.type.PMD') + " " + Homey.__('settings.labelplaceholder'),
plastic: Homey.__('speech.output.type.PLASTIC') + " " + Homey.__('settings.labelplaceholder'),
papier: Homey.__('speech.output.type.PAPIER') + " " + Homey.__('settings.labelplaceholder'),
textiel: Homey.__('speech.output.type.TEXTIEL') + " " + Homey.__('settings.labelplaceholder'),
none: Homey.__('speech.output.type.NONE') + " " + Homey.__('settings.labelplaceholder')
}
};
// Fill default label settings
Homey.ManagerSettings.set('labelSettings', labelSettings);
}
var checkDate = new Date();
if(labelSettings.timeindicator == 1) {
checkDate.setDate(checkDate.getDate() + 1);
} else if(labelSettings.timeindicator == 2) {
checkDate.setDate(checkDate.getDate() + 2);
}
// Check trash type that is collected on x-day
var typeCollected = null;
var textLabel = "";
if(typeof dates !== 'undefined' && dates !== null)
{
for (var i = 0, len = supportedTypes.length; i < len; i++) {
if( typeof dates[ supportedTypes[i] ] !== 'undefined' )
{
if(dates[ supportedTypes[i] ].indexOf(this.dateToString(checkDate)) > -1)
{
typeCollected = supportedTypes[i];
}
}
}
}
if(typeof typeCollected === 'undefined' || typeCollected === null)
{
typeCollected = "NONE";
}
// Find sentence
if(typeof labelSettings.type[typeCollected.toLowerCase()] !== 'undefined')
{
textLabel = labelSettings.type[typeCollected.toLowerCase()];
}
// Set global token with value found.
if(this.trashToken !== null)
{
console.log("Label is updated");
return this.trashToken.setValue(textLabel);
}
else
{
console.log("Trash token is empty");
}
}
/* ******************
COMMON FUNCTIONS
******************* */
// updateLabel ( shouldExecute, shouldSetTimeout )
// {
// if( shouldExecute === true)
// {
// let result = this.onUpdateLabel();
// if(typeof result !== 'undefined' && result !== null && typeof result === 'function')
// {
// result.resolve();
// }
// }
// // Make sure it is executed every day at midnight (+1 sec)
// if(shouldSetTimeout === true)
// {
// let msTillMidnight = this.millisecondsTillMidnight();
// setTimeout(this.updateLabel.bind(this), (msTillMidnight + (1000*60*60*2)), true, true);
// }
// }
// Exctualy calculates MS till 5 O clock
millisecondsTillMidnight()
{
var now = new Date();
var currentHour = now.getHours();
var night = new Date(
now.getFullYear(),
now.getMonth(),
currentHour < 5 ? (now.getDate()) : (now.getDate() + 1),
5, 0, 1
);
let msTillMidnight = night.getTime() - now.getTime();
console.log(msTillMidnight);
return msTillMidnight <= 0 ? 1000 : msTillMidnight;
}
millisecondsTillSaturdayNight()
{
var now = new Date();
var currentDay = now.getDay()%6 == 0 ? 6 : now.getDay()%6;
var msTillMidnight = this.millisecondsTillMidnight();
var msTillSaturday = ((currentDay * 24 * 60 * 60 * 1000) + msTillMidnight);
console.log("ms till Saturday night");
console.log(msTillSaturday);
return msTillSaturday <= 0 ? 1000 : msTillSaturday;
}
pad(n, width, z)
{
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
updateAPI(postcode, homenumber, country, apiId, callback)
{
let newDates = null;
if(typeof postcode !== 'undefined' && postcode !== null && postcode !== '')
{
postcode = postcode.toUpperCase();
}
// check if we already know which API is chosen
if(typeof apiId !== 'undefined' && apiId !== null && apiId != "" && isNaN(apiId))
{
console.log("API ID Known: " + apiId);
var result = apiArray.find(o => o.id === apiId);
if(result == null || typeof result === 'undefined')
{
return;
}
// only load that API, this is so that we won't send requests to all data providers all the time.
result['execute'](postcode,homenumber,country,
(err,result) => {
if(err) {
console.log('Error in API', err);
callback(false, this, null);
return;
}
else if(Object.keys(result).length > 0)
{
Homey.ManagerSettings.set('collectingDays', null);
newDates = result;
this.gdates = newDates;
Homey.ManagerSettings.set('apiId', apiId);
Homey.ManagerSettings.set('collectingDays', newDates);
callback(true, this, apiId);
return;
}
else if(Object.keys(result).length === 0) {
console.log('No information found, go to settings to reset your API settings.');
callback(false, this, null);
return;
}
});
return;
}
function asyncLoop(iterations, that, func, callback)
{
var index = 0;
var done = false;
var loop = {
next: function() {
if (done) {
return;
}
if (index < iterations) {
index++;
func(loop, that);
} else {
done = true;
callback();
}
},
iteration: function() {
return index - 1;
},
break: function() {
done = true;
callback();
}
};
loop.next();
return loop;
}
asyncLoop(apiArray.length, this, function(loop, that)
{
console.log(loop.iteration());
console.log(apiArray[loop.iteration()]);
apiArray[loop.iteration()]['execute'](postcode,homenumber,country,
(err,result) => {
if(err) {
console.log('error while looping', err);
loop.next();
} else if(Object.keys(result).length > 0) {
newDates = result;
that.gdates = newDates;
Homey.ManagerSettings.set('apiId', apiArray[loop.iteration()]['id']);
Homey.ManagerSettings.set('collectingDays', newDates);
callback(true, that, apiArray[loop.iteration()]['id']);
} else if(Object.keys(result).length === 0) {
loop.next();
}
});
},
() => {
console.log('Checked all APIs');
return callback(false);
});
}
dateToString(inputDate)
{
var dateString = this.pad( inputDate.getDate(), 2);
dateString += '-';
dateString += this.pad( inputDate.getMonth()+1, 2);
dateString += '-';
dateString += inputDate.getFullYear();
return dateString;
}
GenerateNewDaysBasedOnManualInput()
{
// Retrieve settings
var manualSettings = Homey.ManagerSettings.get('manualEntryData');
var dates = {};
if(typeof manualSettings === 'undefined' || manualSettings == null)
{
return;
}
// Parse dates per type
if(typeof manualSettings.gft !== 'undefined' && manualSettings.gft)
{
dates.GFT = this.CalculatePickupDates(manualSettings.gft);
}
if(typeof manualSettings.paper !== 'undefined' && manualSettings.paper)
{
dates.PAPIER = this.CalculatePickupDates(manualSettings.paper);
}
if(typeof manualSettings.rest !== 'undefined' && manualSettings.rest)
{
dates.REST = this.CalculatePickupDates(manualSettings.rest);
}
if(typeof manualSettings.pmd !== 'undefined' && manualSettings.pmd)
{
dates.PMD = this.CalculatePickupDates(manualSettings.pmd);
}
if(typeof manualSettings.plastic !== 'undefined' && manualSettings.plastic)
{
dates.PLASTIC = this.CalculatePickupDates(manualSettings.plastic);
}
if(typeof manualSettings.textile !== 'undefined' && manualSettings.textile)
{
dates.TEXTIEL = this.CalculatePickupDates(manualSettings.textile);
}
// Push to gdates
Homey.ManagerSettings.set('collectingDays', dates);
this.gdates = dates;
}
CalculatePickupDates(settings)
{
var result = [];
var interval = -1;
try {
interval = parseInt(settings.option);
} catch(e) { console.log(e); }
var intervalExtended = -1;
try {
intervalExtended = parseInt(settings.option_extension);
} catch(e) { console.log(e); }
var startDate = new Date(Date.now());
try {
startDate = settings.startdate;
} catch(e) { console.log(e); }
var dayOfWeek = null;
try {
dayOfWeek = parseInt(settings.day);
} catch(e) { console.log(e); }
var currentDate = new Date(Date.now());
var startDate = new Date(startDate);
var firstDayInCurrentMonth = new Date(currentDate.getFullYear(), currentDate.getMonth(), 1);
var previousMonth = new Date(new Date(firstDayInCurrentMonth).setMonth(firstDayInCurrentMonth.getMonth()-1));
var nextMonth = new Date(new Date(firstDayInCurrentMonth).setMonth(firstDayInCurrentMonth.getMonth()+1));
var afterNextMonth = new Date(new Date(firstDayInCurrentMonth).setMonth(firstDayInCurrentMonth.getMonth()+2));
if(interval >= 5 && interval <= 8) // every x-th week of month/quarter/year
{
var nThWeek = interval-4;
var date1 = new Date();
var date2 = new Date();
var date3 = new Date();
if(intervalExtended == 12) // every x-th week of the year
{
date1 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, 0, currentDate.getFullYear()-1);
date2 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, 0, currentDate.getFullYear());
date3 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, 0, currentDate.getFullYear()+1);
}
else if(intervalExtended == 3) // every x-th week of the quarter
{
var currentQuarter = ((currentDate.getMonth()-((currentDate.getMonth()+3)%3))/3);
var currentQuarterStart = new Date(currentDate.getFullYear(), currentQuarter*3, 1);
var previousQuarterStart = new Date(new Date(currentQuarterStart).setMonth(currentQuarterStart.getMonth()-3));
var nextQuarterStart = new Date(new Date(currentQuarterStart).setMonth(currentQuarterStart.getMonth()+3));
date1 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, previousQuarterStart.getMonth(), previousQuarterStart.getFullYear());
date2 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, currentQuarterStart.getMonth(), currentQuarterStart.getFullYear());
date3 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, nextQuarterStart.getMonth(), nextQuarterStart.getFullYear());
}
else // every x-th week of the month
{
date1 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, previousMonth.getMonth(), previousMonth.getFullYear());
date2 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, firstDayInCurrentMonth.getMonth(), firstDayInCurrentMonth.getFullYear());
date3 = DateTimeHelper.nthDayInMonth(nThWeek, dayOfWeek, nextMonth.getMonth(), nextMonth.getFullYear());
}
result.push(this.dateToString(date1));
result.push(this.dateToString(date2));
result.push(this.dateToString(date3));
}
else if(interval <= 4) // per week
{
var date0 = DateTimeHelper.everyNthWeek(interval, dayOfWeek, startDate, currentDate, -2);
var date1 = DateTimeHelper.everyNthWeek(interval, dayOfWeek, startDate, currentDate, -1);
var date2 = DateTimeHelper.everyNthWeek(interval, dayOfWeek, startDate, currentDate, 0);
var date3 = DateTimeHelper.everyNthWeek(interval, dayOfWeek, startDate, currentDate, 1);
var date4 = DateTimeHelper.everyNthWeek(interval, dayOfWeek, startDate, currentDate, 2);
result.push(this.dateToString(date0));
result.push(this.dateToString(date1));
result.push(this.dateToString(date2));
result.push(this.dateToString(date3));
result.push(this.dateToString(date4));
}
else if(interval >= 9 && interval <= 10) // every last, every second last
{
var nthLastWeekOf = interval-8;
var date1 = new Date();
var date2 = new Date();
var date3 = new Date();
var date4 = new Date();
if(intervalExtended == 12) // every x-th last week of the year
{
date1 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, 0, currentDate.getFullYear()-1);
date2 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, 0, currentDate.getFullYear());
date3 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, 0, currentDate.getFullYear()+1);
date4 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, 0, currentDate.getFullYear()+2);
}
else if(intervalExtended == 3) // every x-th last week of the quarter
{
var currentQuarter = ((currentDate.getMonth()-((currentDate.getMonth()+3)%3))/3);
var currentQuarterStart = new Date(currentDate.getFullYear(), currentQuarter*3, 1);
var previousQuarterStart = new Date(new Date(currentQuarterStart).setMonth(currentQuarterStart.getMonth()-3));
var nextQuarterStart = new Date(new Date(currentQuarterStart).setMonth(currentQuarterStart.getMonth()+3));
var overNextQuarterStart = new Date(new Date(currentQuarterStart).setMonth(currentQuarterStart.getMonth()+6));
date1 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, previousQuarterStart.getMonth(), previousQuarterStart.getFullYear());
date2 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, currentQuarterStart.getMonth(), currentQuarterStart.getFullYear());
date3 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, nextQuarterStart.getMonth(), nextQuarterStart.getFullYear());
date4 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, overNextQuarterStart.getMonth(), overNextQuarterStart.getFullYear());
}
else // every x-th last week of the month
{
date1 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, previousMonth.getMonth(), previousMonth.getFullYear());
date2 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, firstDayInCurrentMonth.getMonth(), firstDayInCurrentMonth.getFullYear());
date3 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, nextMonth.getMonth(), nextMonth.getFullYear());
date4 = DateTimeHelper.nthLastDayInMonth(nthLastWeekOf, dayOfWeek, afterNextMonth.getMonth(), afterNextMonth.getFullYear());
}
result.push(this.dateToString(date1));
result.push(this.dateToString(date2));
result.push(this.dateToString(date3));
result.push(this.dateToString(date4));
}
return result;
}
static toDateOutputString(differenceInDaysForType)
{
if(differenceInDaysForType >= 0 && differenceInDaysForType <= 2)
{
return Homey.__('speech.output.timeindicator.t'+differenceInDaysForType);
}
else if(differenceInDaysForType <= 7)
{
var today = new Date();
var dayOfWeek = (today.getDay() + differenceInDaysForType) % 7;
return Homey.__('speech.output.next') + " " +Homey.__('speech.output.weekdays.d'+dayOfWeek);
}
else
{
return Homey.__('speech.output.in') + " " + differenceInDaysForType + " " + Homey.__('speech.output.days');
}
}
}
module.exports = TrashcanReminder;