-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.js
1194 lines (1098 loc) · 41.3 KB
/
index.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
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var inherits = require('util').inherits;
var fs = require('fs');
var path = require('path');
var osascript = require('node-osascript');
var debug = require('debug')('iTunes');
var wrap = require('wordwrap');
var Accessory, Service, Characteristic, UUIDGen;
var HomeKitMediaTypes;
var HKMTGen = require('./HomeKitMediaTypes.js');
var spawn = require('child_process').spawn;
var debug = require('debug')('iTunes');
var accessoryModelVersion = 2;
module.exports = function(homebridge) {
Accessory = homebridge.platformAccessory;
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
UUIDGen = homebridge.hap.uuid;
HomeKitMediaTypes = HKMTGen(homebridge);
homebridge.registerPlatform("homebridge-itunes", "iTunes", ITunesPlatform, true);
Characteristic.prototype.updateValue = function(newValue, context){
if (newValue === undefined || newValue === null)
newValue = this.getDefaultValue();
// update our cached value
var oldValue = this.value;
this.value = newValue;
// emit a change event if necessary
if (oldValue !== newValue)
this.emit('change', { oldValue:oldValue, newValue:newValue, context:context });
}
}
function ITunesPlatform(log, config, api) {
var self = this;
self.log = log;
self.config = config || { };
self.accessories = {};
self.syncTimer = null;
self.pollInterval = self.config.poll_interval || 2000;
if(self.pollInterval < 100) self.pollInterval *= 1000; // Just in case someone put a seconds value in config.json...
self.autoPlayPlaylist = self.config.autoplay_playlist || "AutoPlay";
self.enableNowPlaying = self.config.enable_now_playing;
if (api) {
self.api = api;
self.api.on('didFinishLaunching', self.didFinishLaunching.bind(this));
}
}
ITunesPlatform.scriptQueue = [];
ITunesPlatform.scriptQueueIsRunning = false;
ITunesPlatform.runScriptQueue = function(){
ITunesPlatform.scriptQueueIsRunning = true;
var dequeued = ITunesPlatform.scriptQueue.shift();
osascript.execute(dequeued.script, function(err, rtn){
while(dequeued.callbacks.length > 0){
dequeued.callbacks.shift()(err, rtn);
}
debug("Queue depth " + ITunesPlatform.scriptQueue.length);
// All callbacks on the last item done...Do next?
if(ITunesPlatform.scriptQueue.length == 0){
ITunesPlatform.scriptQueueIsRunning = false;
return;
} else {
ITunesPlatform.runScriptQueue();
}
});
}
ITunesPlatform.queueScript = function(script, callback){
var last = ITunesPlatform.scriptQueue[ITunesPlatform.scriptQueue.length - 1];
if(last && last.script == script){
last.callbacks.push(callback);
return;
}
ITunesPlatform.scriptQueue.push({ script: script, callbacks: [callback] });
debug("Queue depth " + ITunesPlatform.scriptQueue.length);
debug(script)
if(!ITunesPlatform.scriptQueueIsRunning){
ITunesPlatform.runScriptQueue();
}
}
ITunesPlatform.escapeAppleScriptString_re = /[\\\n\t\r"]/g;
ITunesPlatform.escapeAppleScriptString_trtable = { '\\': '\\\\', '\n':'\\n', '\t':'\\t', '\r':'\\r', '"':'\\"' };
ITunesPlatform.escapeAppleScriptString = function(string){
return string.replace(ITunesPlatform.escapeAppleScriptString_re, function(match) {
return ITunesPlatform.escapeAppleScriptString_trtable[match];
});
}
ITunesPlatform.prototype.configureAccessory = function(accessory) {
if(accessory.context.iTunesMac){
if(accessory.context.modelVersion != accessoryModelVersion){
// Okay...this can only happen with a *registered* accesory...so it is
// safe to unregister and reregister it...
setTimeout(function(){
// We have to do this *next*, because after configureAccessory, Homebridge
// calls addBridgedAccessory...so removing it before it's added doesn't work.
this.removeAccessory(accessory);
this.registerAccessory({ iTunesMac: accessory.context.iTunesMac });
}.bind(this), 0);
} else {
this.configurePrimaryAccessory(accessory);
}
} else {
if(accessory.context.modelVersion != 2){
// See note above...
// This one gets harder because we need to get the most current version of
// the rawDevice, can't rely on what's already in the accessory context!
this.getAirPlayDevices(function(err, rtn){
// This async function should solve the problem with sequence above...
var newrd = rtn.filter(function(rd){ return rd.mac == accessory.context.rawDevice.mac; })[0];
this.removeAccessory(accessory);
if(newrd) this.registerAccessory(newrd);
}.bind(this));
} else {
this.configureAirPlayAccessory(accessory);
}
}
}
ITunesPlatform.prototype.configurePrimaryAccessory = function(accessory) {
var self = this;
accessory.reachable = true;
this.primaryAccessory = accessory;
var cxPlayStateOn = accessory
.getService('Playing State')
.getCharacteristic(Characteristic.On);
var cxPlayState = accessory
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.PlaybackState);
accessory.getPlaybackStateFromString = function(str){
switch (str.trim()) {
case "paused":
return HomeKitMediaTypes.PlaybackState.PAUSED;
break;
case "stopped":
return HomeKitMediaTypes.PlaybackState.STOPPED;
break;
default:
return HomeKitMediaTypes.PlaybackState.PLAYING;
break;
}
}
cxPlayState
.on('get', function(callback){
var tell = 'tell application "iTunes" to get player state';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if(err){
callback(err)
} else {
callback(false, accessory.getPlaybackStateFromString(rtn));
}
}.bind(this));
}.bind(this))
.on('set', function(newVal, callback){
switch (newVal) {
case HomeKitMediaTypes.PlaybackState.PLAYING:
var safepl = ITunesPlatform.escapeAppleScriptString(this.autoPlayPlaylist);
var tell =
'tell application "iTunes"\n'
+ 'if player state is paused or (exists current track) then play\n'
+ 'if player state is stopped then\n'
+ 'if exists user playlist "' + safepl + '" then\n'
+ 'play user playlist "' + safepl + '"\n'
+ 'else\n'
+ 'play (some playlist whose special kind is Music)\n'
+ 'end if\n'
+ 'end if\n'
+ 'end tell'
ITunesPlatform.queueScript(tell, function(err, rtn) {
if(err){
callback(err)
} else {
callback();
}
}.bind(this));
break;
case HomeKitMediaTypes.PlaybackState.PAUSED:
ITunesPlatform.queueScript('tell application "iTunes" to pause', function(err, rtn){
if(err){
callback(err)
} else {
callback();
}
}.bind(this));
break;
case HomeKitMediaTypes.PlaybackState.STOPPED:
ITunesPlatform.queueScript('tell application "iTunes" to stop', function(err, rtn){
if(err){
callback(err)
} else {
callback();
}
}.bind(this));
break;
default:
callback("Invalid value for PlaybackState!");
break;
}
cxPlayStateOn.getValue(); // Sync up slave cx with this master cx
}.bind(this))
.on('change', function(newVal){
cxPlayStateOn.getValue(); // Sync up slave cx with this master cx
}.bind(this))
accessory
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.SkipForward)
.on('set', function(newVal, callback){
ITunesPlatform.queueScript('tell application "iTunes" to next track', function(err, rtn) {
if(err){
callback(err)
} else {
callback();
}
}.bind(this));
}.bind(this));
accessory
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.SkipBackward)
.on('set', function(newVal, callback){
ITunesPlatform.queueScript('tell application "iTunes" to back track', function(err, rtn) {
if(err){
callback(err)
} else {
callback();
}
}.bind(this));
}.bind(this));
accessory
.getService(HomeKitMediaTypes.AudioDeviceService)
.getCharacteristic(HomeKitMediaTypes.AudioVolume)
.on('get', function(callback){
var tell = 'tell application "iTunes" to get sound volume';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
} else {
callback(false, parseInt(rtn));
}
});
})
.on('set', function(newVal, callback){
var tell = 'tell application "iTunes" to set sound volume to ' + parseInt(newVal);
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
} else {
callback(false);
}
});
});
// Hack switch characteristics to emulate media controls...
cxPlayStateOn
.on('get', function(callback){
cxPlayState
.getValue(function(err, val){
if(err)
callback(err);
else
callback(false, val == HomeKitMediaTypes.PlaybackState.PLAYING);
}.bind(this));
}.bind(this))
.on('set', function(newVal, callback){
if(newVal == true && cxPlayState.value !== HomeKitMediaTypes.PlaybackState.PLAYING)
cxPlayState.setValue(HomeKitMediaTypes.PlaybackState.PLAYING, callback);
if(newVal == false && cxPlayState.value == HomeKitMediaTypes.PlaybackState.PLAYING)
cxPlayState.setValue(HomeKitMediaTypes.PlaybackState.PAUSED, callback);
}.bind(this))
.getValue(function(err, value){
if(err)
self.log(err);
});
accessory
.getService('Track Skipper')
.getCharacteristic(Characteristic.On)
.on('get', function(callback){
callback(false, false);
})
.on('set', function(newVal, callback){
if(!newVal){ callback(); return; }
accessory
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.SkipForward)
.setValue(true, function(err){
if(err)
callback(err);
else
callback();
setTimeout(function(){
accessory
.getService('Track Skipper')
.getCharacteristic(Characteristic.On)
.setValue(false);
}, 100);
});
}.bind(this));
accessory
.getService('Album Skipper')
.getCharacteristic(Characteristic.On)
.on('get', function(callback){
callback(false, false);
})
.on('set', function(newVal, callback){
if(!newVal){ callback(); return; }
var tell = 'tell application "iTunes"\n'
+ 'set |current album| to the album of the current track\n'
+ 'repeat while the album of the current track is equal to |current album|\n'
+ 'next track\n'
+ 'end repeat\n'
+ 'end tell';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if(err)
callback(err);
else
callback();
setTimeout(function(){
accessory
.getService('Album Skipper')
.getCharacteristic(Characteristic.On)
.setValue(false);
}, 100);
}.bind(this));
}.bind(this));
}
ITunesPlatform.prototype.configureAirPlayAccessory = function(accessory) {
var self = this;
accessory.reachable = true;
var rawDevice = accessory.context.rawDevice;
this.accessories[rawDevice.mac] = accessory;
accessory
.getService(Service.Switch)
.getCharacteristic(Characteristic.On)
.on('get', function(callback){
var tell = 'tell application "iTunes" to get selected of (AirPlay device id ' + parseInt(accessory.context.rawDevice.id) + ')';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
} else {
callback(false, !!rtn ? true : false);
}
});
})
.on('set', function(newVal, callback){
// Now what we gonna do is...
var tell = 'tell application "iTunes" to set selected of (AirPlay device id ' + parseInt(accessory.context.rawDevice.id) + ') to ' + (newVal ? 'true' : 'false');
// First, we need to handle auto play/pause actions before changing state...
var cxPlaybackState = this.primaryAccessory
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.PlaybackState);
if(newVal == true) {
// Go ahead and turn this one on now...
ITunesPlatform.queueScript(tell, function(err, rtn) { if (err) callback(err); else callback(false); });
// If one AirPlay device turned on and not currently playing...
if(cxPlaybackState.value !== HomeKitMediaTypes.PlaybackState.PLAYING){
// Turn other AirPlay destinations off...
//TODO: Make this behavior configurable!
for(var k in this.accessories){
var apac = this.accessories[k];
if(!apac || apac === accessory || !apac.getService) continue;
apac
.getService(Service.Switch)
.getCharacteristic(Characteristic.On)
.setValue(false);
}
cxPlaybackState.setValue(HomeKitMediaTypes.PlaybackState.PLAYING)
}
} else {
// If are turning off the last AirPlay device, pause playback...
var anyOn = false;
for(var k in this.accessories){
var apac = this.accessories[k];
if(!apac || apac === accessory || !apac.getService) continue;
var isOn = apac
.getService(Service.Switch)
.getCharacteristic(Characteristic.On)
.value;
if(isOn){ anyOn = true; break; }
}
if(!anyOn) cxPlaybackState.setValue(HomeKitMediaTypes.PlaybackState.PAUSED);
// Now turn this one off...
ITunesPlatform.queueScript(tell, function(err, rtn) { if (err) callback(err); else callback(false); });
}
}.bind(this))
.getValue(function(err, value){
if(err)
self.log(err);
else {
accessory.getService(Service.Switch).getCharacteristic(Characteristic.On).value = value;
}
});
accessory
.getService(HomeKitMediaTypes.AudioDeviceService)
.getCharacteristic(HomeKitMediaTypes.AudioVolume)
.on('get', function(callback){
var tell = 'tell application "iTunes" to get sound volume of (AirPlay device id ' + parseInt(accessory.context.rawDevice.id) + ')';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
} else {
callback(false, parseInt(rtn));
}
});
})
.on('set', function(newVal, callback){
var tell = 'tell application "iTunes" to set sound volume of (AirPlay device id ' + parseInt(accessory.context.rawDevice.id) + ') to ' + parseInt(newVal);
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
} else {
callback(false);
}
});
})
.getValue(function(err, value){
if(err)
self.log(err);
else {
accessory.getService(HomeKitMediaTypes.AudioDeviceService).getCharacteristic(HomeKitMediaTypes.AudioVolume).value = value;
}
});
}
ITunesPlatform.prototype.didFinishLaunching = function() {
var afterDeviceSync = function(){
if(this.config.platform && !this.config.configured_by_ui){
// User not using Hesperus, lets add all devices by default...
if(!this.primaryAccessory.context.isRegistered){
this.registerAccessory(this.primaryAccessory.context);
}
for(var m in this.accessories){
if(this.accessories[m] && !this.accessories[m].context.rawDevice.isRegistered){
this.registerAccessory(this.accessories[m]);
}
}
}
if(!this.config.platform){
// If the config entry has been removed, remove all devices...
if(this.primaryAccessory && this.primaryAccessory.context.isRegistered){
this.removeAccessory(this.primaryAccessory);
}
for(var m in this.accessories){
if(this.accessories[m] && this.accessories[m].context.rawDevice.isRegistered){
this.removeAccessory(this.accessories[m]);
}
}
}
}.bind(this);
this.syncAccessories(afterDeviceSync);
}
ITunesPlatform.prototype.syncAccessoriesScheduler = function(msec, callback){
clearTimeout(this.syncTimer);
this.syncTimer = setTimeout(
function(){ this.syncAccessories(callback); }.bind(this),
msec);
};
ITunesPlatform.prototype.syncAccessories = function(callback) {
var syncAgainIn = this.syncAccessoriesScheduler.bind(this);
syncAgainIn(this.pollInterval);
// Update the primary accessory
var pa = this.primaryAccessory;
if(!pa){
ITunesPlatform.queueScript('get the primary Ethernet address of (get system info)', function(err, rtn){
if(err) {
// erm...well this is awkward...Try again in a bit?
this.log(err);
this.log("ERROR: Failed creating iTunes main device, trying again in two seconds.");
syncAgainIn(2000, callback);
} else {
this.addPrimaryAccessory(rtn);
syncAgainIn(0, callback);
}
}.bind(this));
return; // BRB...
}
// ^ go ahead and let this happen because we need the primaryAccessory set
// ^ for the config panel to see it as an option to add.
// Beyond that though, don't waste cycles if the user hasn't configured us.
if(!this.config.platform){
if(callback) callback(); // We're "finished" at this point, for what it's worth.
return;
}
if(pa){
ITunesPlatform.queueScript('tell application "iTunes" to get {player state, sound volume, exists current track}', function(err, rtn){
if (err) {
this.log(err);
this.log("ERROR: Failed syncing iTunes main device, trying again in two seconds.");
syncAgainIn(2000, callback);
return;
}
if (Array.isArray(rtn)) {
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.PlaybackState)
.updateValue(pa.getPlaybackStateFromString(rtn[0]));
pa
.getService(HomeKitMediaTypes.AudioDeviceService)
.getCharacteristic(HomeKitMediaTypes.AudioVolume)
.updateValue(parseInt(rtn[1]));
if(rtn[2]){
this.syncMediaInformation();
}
}
}.bind(this));
}
this.getAirPlayDevices(function(err, rtn){
if(err){
debug("Failed getting devices, try again in two seconds...", err);
syncAgainIn(2000, callback);
return;
} else {
this.rawDevices = rtn;
// Update id's and values and add any devices we didn't have before...
var foundMacs = {};
for (var i = 0; i < rtn.length; i++) {
var rawDevice = rtn[i];
foundMacs[rawDevice.mac] = true; // for catching missing devices below...
var accessory = this.accessories[rawDevice.mac];
if(!accessory){ // Never seen before?
var accessory = this.addAirPlayAccessory(rawDevice);
} else {
accessory.context.rawDevice = rawDevice;
}
var volCx = accessory.getService(HomeKitMediaTypes.AudioDeviceService).getCharacteristic(HomeKitMediaTypes.AudioVolume);
if(volCx.value != rawDevice.volume)
volCx.updateValue(rawDevice.volume);
var onCx = accessory.getService(Service.Switch).getCharacteristic(Characteristic.On);
if(onCx.value != rawDevice.selected)
onCx.updateValue(rawDevice.selected);
if(!accessory.reachable) accessory.updateReachability(true);
}
// Set any devices now missing to unreachable...
for(var m in this.accessories){
if(this.accessories[m] instanceof Accessory && !foundMacs[m])
this.accessories[m].updateReachability(false);
}
// Finally, completed whole task, execute callback...
if(callback) callback();
}
}.bind(this));
}
ITunesPlatform.prototype.getAirPlayDevices = function(callback){
// Get the id and name of all the AirPlay devices...
var tell = 'tell application "iTunes"\n'
+ 'set apDevMap to {}\n'
+ 'repeat with aDevice in (AirPlay devices)\n'
+ "copy {aDevice's id, aDevice's name, aDevice's network address, aDevice's selected, aDevice's sound volume} to the end of the apDevMap\n"
+ 'end repeat\n'
+ 'get apDevMap\n'
+ 'end tell\n';
ITunesPlatform.queueScript(tell, function(err, rtn) {
if (err) {
callback(err);
return;
}
if (Array.isArray(rtn)) {
for(var i = 0; i < rtn.length; i++){
var m = rtn[i][2] == "missing value" ? '00-host-audio' : rtn[i][2];
rtn[i] = {
id: rtn[i][0],
name: rtn[i][1],
mac: m,
selected: rtn[i][3],
volume: parseInt(rtn[i][4]),
isRegistered: (this.accessories[m] && this.accessories[m].context.rawDevice.isRegistered) //NOTE: Careful! Potentially circular!
};
}
callback(null, rtn);
}
}.bind(this));
}
ITunesPlatform.prototype.syncMediaInformation = function(){
var tell = 'tell application "iTunes"\n'
+'set theResult to {exists current track}\n'
+'if exists current track then\n'
+' set end of theResult to name of current track\n'
+' set end of theResult to album of current track\n'
+' set end of theResult to artist of current track\n'
+' set end of theResult to duration of current track\n'
+' set end of theResult to player position\n'
+'end if\n'
+'get theResult\n'
+'end tell';
ITunesPlatform.queueScript(tell, function(err, rtn){
if (err) {
this.log(err);
this.log("ERROR: Failed syncing media information, trying again in two seconds.");
this.syncAccessoriesScheduler(2000);
return;
}
var pa = this.primaryAccessory;
if (Array.isArray(rtn) && rtn[0]) {
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemName)
.updateValue(rtn[1]);
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemAlbumName)
.updateValue(rtn[2]);
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemArtist)
.updateValue(rtn[3]);
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemDuration)
.updateValue(rtn[4]);
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaCurrentPosition)
.updateValue(rtn[5]);
} else {
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemName)
.updateValue("");
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemAlbumName)
.updateValue("");
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemArtist)
.updateValue("");
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaItemDuration)
.updateValue(0);
pa
.getService(HomeKitMediaTypes.PlaybackDeviceService)
.getCharacteristic(HomeKitMediaTypes.MediaCurrentPosition)
.updateValue(0);
}
this.writeMediaInformationFiles();
}.bind(this));
}
ITunesPlatform.prototype._hhmmss = function(seconds) {
seconds = Math.round(seconds);
var minutes = Math.floor(seconds / 60);
seconds = seconds%60;
var hours = Math.floor(minutes/60)
minutes = minutes%60;
return (hours > 0 ? hours+":" : '')
+ (hours > 0 ? '0'.repeat(2 - (''+minutes).length) : '') + minutes + ":"
+ '0'.repeat(2 - (''+seconds).length) + seconds;
}
ITunesPlatform.prototype.writeMediaInformationFiles = function(){
var papds = this.primaryAccessory.getService(HomeKitMediaTypes.PlaybackDeviceService);
var name = papds.getCharacteristic(HomeKitMediaTypes.MediaItemName).value;
var album = papds.getCharacteristic(HomeKitMediaTypes.MediaItemAlbumName).value;
var artist = papds.getCharacteristic(HomeKitMediaTypes.MediaItemArtist).value;
var duration = papds.getCharacteristic(HomeKitMediaTypes.MediaItemDuration).value;
var position = papds.getCharacteristic(HomeKitMediaTypes.MediaCurrentPosition).value;
var pbsize = 50;
var progressBar = '-'.repeat(Math.floor(pbsize*position/duration)) + '|' + '-'.repeat(Math.ceil(pbsize*(duration-position)/duration)-1);
try {
fs.writeFileSync(
"/tmp/homebridge-itunes-nowplaying.txt",
wrap(50)(name + '\n\n' + album + '\n\n' + artist) + '\n\n' + this._hhmmss(position) + ' ' + progressBar + ' ' + this._hhmmss(duration - position)
);
} catch(e){
debug(e);
}
if(!this.enableNowPlaying){
return; // Early out!
}
if(name != ITunesPlatform._lastSeenTrackName){
osascript.executeFile(path.join(__dirname, 'scripts', 'GetAlbumArtwork.applescript'));
}
ITunesPlatform._lastSeenTrackName = name;
var child = spawn(
'ffmpeg',
('-y -i /tmp/homebridge-itunes-artwork.jpg '
+ '-vf scale=(iw*sar)*min(480/(iw*sar)\\,480/ih):ih*min(480/(iw*sar)\\,480/ih),'
+ 'pad=854:480:(480-iw*min(480/iw\\,480/ih))/2:(480-ih*min(480/iw\\,480/ih))/2,'
+ 'drawbox=y=ih-60:[email protected]:width=iw:height=60:t=max,'
+ 'drawtext=fontfile=/Library/Fonts/Skia.ttf:fontsize=16:fontcolor=white:x=485:y=(h-th)/2:fix_bounds=true:textfile=/tmp/homebridge-itunes-nowplaying.txt:reload=1 '
+ '/tmp/homebridge-itunes-nowplaying.jpg').split(' '),
{env: process.env}
);
//child.stdout.on('data', function(data){ debug("stdout: " + data); });
//child.stderr.on('data', function(data){ debug("stderr: " + data); });
child.on('error', function(err) {
debug('WARN: Error on ffmpeg image compositing...meh, okay, so we won\'t do that.');
});
}
ITunesPlatform.prototype.addPrimaryAccessory = function(mac){
var self = this;
var uuid = UUIDGen.generate("iTunes:" + mac);
var name = "iTunes";
var newAccessory = new Accessory(name, uuid, 1); // 1 = Accessory.Category.OTHER
newAccessory.context.iTunesMac = mac;
newAccessory.context.modelVersion = accessoryModelVersion;
newAccessory.addService(Service.Switch, "Playing State", "playstate").name = "playstate";
newAccessory.addService(HomeKitMediaTypes.AudioDeviceService, name);
newAccessory.addService(HomeKitMediaTypes.PlaybackDeviceService, name);
newAccessory.addService(Service.Switch, "Track Skipper", "skiptrackforward").name = "skiptrackforward";
newAccessory.addService(Service.Switch, "Album Skipper", "skipalbumforward").name = "skipalbumforward";
newAccessory
.getService(Service.AccessoryInformation)
.setCharacteristic(Characteristic.Manufacturer, "Apple")
.setCharacteristic(Characteristic.Model, "iTunes")
.setCharacteristic(Characteristic.SerialNumber, mac);
newAccessory.getService("playstate").getCharacteristic(Characteristic.On).displayName = "Playing";
newAccessory.getService("skiptrackforward").getCharacteristic(Characteristic.On).displayName = "Track Skipper";
newAccessory.getService("skipalbumforward").getCharacteristic(Characteristic.On).displayName = "Album Skipper";
this.configureAccessory(newAccessory);
//this.api.registerPlatformAccessories("homebridge-itunes", "iTunes", [newAccessory]);
// we came here from an aborted sync, start it again...
//this.syncAccessories();
return newAccessory;
}
ITunesPlatform.prototype.addAirPlayAccessory = function(rawDevice) {
var self = this;
var uuid = UUIDGen.generate(rawDevice.mac);
var newAccessory = new Accessory(rawDevice.name, uuid, 1); // 1 = Accessory.Category.OTHER
newAccessory.context.rawDevice = rawDevice;
newAccessory.context.modelVersion = accessoryModelVersion;
newAccessory.addService(Service.Switch, rawDevice.name);
newAccessory.addService(HomeKitMediaTypes.AudioDeviceService, rawDevice.name);
newAccessory
.getService(Service.AccessoryInformation)
.setCharacteristic(Characteristic.Manufacturer, "Apple")
.setCharacteristic(Characteristic.Model, "AirPlay Speaker")
.setCharacteristic(Characteristic.SerialNumber, rawDevice.mac);
this.configureAccessory(newAccessory);
return newAccessory;
//this.api.registerPlatformAccessories("homebridge-itunes", "iTunes", [newAccessory]);
}
ITunesPlatform.prototype.registerAccessory = function(input) {
var rawDevice = input; // assume input is a rawDevice or equivalent...
// if input is really a primaryAccessory...
if(!input.mac && input.context && input.context.iTunesMac) rawDevice = input.context;
// if input is really a addAirPlayAccessory...
if(!input.mac && input.context && input.context.rawDevice) rawDevice = input.context.rawDevice;
var newAccessory;
if(rawDevice.iTunesMac){
newAccessory = this.primaryAccessory || this.addPrimaryAccessory(rawDevice.iTunesMac);
newAccessory.context.isRegistered = true;
} else {
newAccessory = this.accessories[rawDevice.mac] || this.addAirPlayAccessory(rawDevice);
newAccessory.context.rawDevice.isRegistered = true;
}
this.api.registerPlatformAccessories("homebridge-itunes", "iTunes", [newAccessory]);
}
ITunesPlatform.prototype.removeAccessory = function(accessory) {
if (accessory) {
if(accessory.context.rawDevice)
accessory.context.rawDevice.isRegistered = false;
else
accessory.context.isRegistered = false;
this.api.unregisterPlatformAccessories("homebridge-itunes", "iTunes", [accessory]);
}
}
ITunesPlatform.prototype.configurationRequestHandler = function(context, request, callback) {
if (request && request.type === "Terminate") {
return;
}
debug("called configurationRequestHandler with step " + context.step);
var platform = this;
if(!context.newConfig) context.newConfig = this.config;
// Responses, or other actions that may change the currnet step...
if (!context.step) {
context.step = "topMenu";
} else if(context.step == "topMenuResponse"){
var selection = request.response.selections[0];
switch(context.options[selection]){
case "Preferences":
context.step = "preferencesMenu";
break;
case "Add Devices":
context.step = "addDevicesMenu";
break;
case "Remove Devices":
context.step = "removeDevicesMenu";
break;
}
} else if(context.step == "preferencesMenuResponse"){
var selection = request.response.selections[0];
switch(selection){
case 0:
context.step = "playlistMenu";
break;
case 1:
context.step = "pollIntervalMenu";
break;
case 2:
context.step = "nowPlayingMenu";
break;
case 3:
context.step = "topMenu";
break;
}
} else if(context.step == "playlistMenuResponse"){
var selection = request.response.selections[0];
if(selection == context.options.length){
context.step = "topMenu";
} else {
var playlist = context.options[selection];
context.newConfig.autoplay_playlist = playlist;
this.autoPlayPlaylist = playlist;
context.navOptions = [{label: "Back to Preferences", step: "preferencesMenu"}];
context.unsaved = true;
context.step = "actionSuccess";
}
delete context.options;
} else if(context.step == "pollIntervalMenuResponse"){
var selection = request.response.selections[0];
context.newConfig.poll_interval = [1000, 2000, 5000, 10000, 30000][selection];
this.pollInterval = context.newConfig.poll_interval;
context.navOptions = [{label: "Back to Preferences", step: "preferencesMenu"}];
context.unsaved = true;
context.step = "actionSuccess";
} else if(context.step == "nowPlayingMenuResponse"){
var selection = request.response.selections[0];
context.newConfig.enable_now_playing = [true, false][selection];
this.enableNowPlaying = context.newConfig.enable_now_playing;
context.navOptions = [{label: "Back to Preferences", step: "preferencesMenu"}];
context.unsaved = true;
context.step = "actionSuccess";
} else if(context.step == "addDevicesMenuResponse"){
var selection = request.response.selections[0];
if(selection == context.options.length){
context.step = "topMenu";
} else {
var additions = [];
if(selection == 0){
for(var i = 1; i < context.options.length; i++) additions.push(context.options[i]);
} else if(context.options[selection].iTunesMac){
additions.push(context.options[selection]);
} else {
additions.push(context.options[selection]);
}
for(var i = 0; i < additions.length; i++){
this.registerAccessory(additions[i]);
}
context.navOptions = [{label: "Add more devices", step: "addDevicesMenu"}];
if(!this.config.platform) context.unsaved = true;
context.step = "actionSuccess";
}
delete context.options;
} else if(context.step == "removeDevicesMenuResponse"){
var selection = request.response.selections[0];
if(selection == context.options.length){
context.step = "topMenu";
} else {
if(selection == 0){
for(var i = 1; i < context.options.length; i++) platform.removeAccessory(context.options[i]);
} else {
platform.removeAccessory(context.options[selection]);
}
context.navOptions = [{label: "Remove more devices", step: "removeDevicesMenu"}];
if(!this.config.platform) context.unsaved = true;
context.step = "actionSuccess";
}
delete context.options;
} else if(context.step == "actionSuccessResponse"){
context.step = [{step: 'topMenu'}].concat(context.navOptions.concat({step: 'finish'}))[request.response.selections[0]].step;
delete context.navOptions;
}
if(context.step == "finish"){
context.newConfig['platform'] = 'iTunes';
context.newConfig['configured_by_ui'] = true;
callback(null, "platform", true, context.newConfig);
return;
}
// Menu options and mostly non-interactive steps...
switch (context.step) {
case "topMenu":
var respDict = {
"type": "Interface",
"interface": "instruction",
"title": "Checking Device Status",
"detail": "Please wait...",
"showNextButton": false
}
callback(respDict);
// That'll hold 'em...
platform.getAirPlayDevices(function(err, rtn){
if(err || !Array.isArray(rtn)){
var respDict = {
"type": "Interface",
"interface": "instruction",
"title": "Unexpected Problem",
"detail": "There was a problem retrieving the list of available devices. Please try again later.",
"showNextButton": true
}
context.step = "topMenu";
} else {
var options = [];
var paRegistered = this.primaryAccessory && this.primaryAccessory.context.isRegistered;
var devsRegistered = rtn.filter(function(rd){return !!rd.isRegistered});
var devsUnregistered = rtn.filter(function(rd){return !rd.isRegistered});
if(!paRegistered || devsUnregistered.length > 0) options.push("Add Devices");
if(paRegistered || devsRegistered.length > 0) options.push("Remove Devices");
options.push('Preferences');
var respDict = {
"type": "Interface",
"interface": "list",
"title": "Configure iTunes Plugin",
"items": options
}
context.options = options;
context.step = "topMenuResponse";
}
callback(respDict);
}.bind(this));
break;
case "preferencesMenu":
var respDict = {
"type": "Interface",
"interface": "list",
"title": "Preferences",
"items": [
"AutoPlay Playlist",