forked from jnewland/airfoil-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
131 lines (121 loc) · 3.98 KB
/
app.js
File metadata and controls
131 lines (121 loc) · 3.98 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
var util = require('util');
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var applescript = require('applescript');
var mdns = require('mdns');
app.get('/spotify/play', function(req, res){
var script = "" +
"tell application \"Spotify\"\n" +
"play\n" +
"end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json("playing")
}
});
});
app.get('/spotify/pause', function(req, res){
var script = "" +
"tell application \"Spotify\"\n" +
"pause\n" +
"end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json("pausing")
}
});
});
app.get('/speakers', function(req, res){
var script = "" +
"tell application \"Airfoil\"\n" +
"set myspeakers to get every speaker\n" +
"set allSpeakers to {}\n" +
"repeat with currentSpeaker in myspeakers\n" +
" set thisSpeaker to {}\n" +
" set conn to connected of currentSpeaker\n" +
" copy conn to the end of thisSpeaker\n" +
" set volum to volume of currentSpeaker\n" +
" copy volum to the end of thisSpeaker\n" +
" set nm to name of currentSpeaker\n" +
" copy nm to the end of thisSpeaker\n" +
" set spkId to id of currentSpeaker\n" +
" copy spkId to the end of thisSpeaker\n" +
" set AppleScript's text item delimiters to \",\"\n" +
" set speakerText to thisSpeaker as text\n" +
" set AppleScript's text item delimiters to \"\"\n" +
" copy speakerText to the end of allSpeakers\n" +
"end repeat\n" +
"set AppleScript's text item delimiters to \"|\"\n" +
"set speakerText to allSpeakers as text\n" +
"set AppleScript's text item delimiters to \"\"\n" +
"get speakerText\n" +
"end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
var speakers = [];
var speakerText = result.split("|");
speakerText.map(function(s) {
var t = s.split(",");
speakers.push({ connected: t[0], volume: parseFloat(t[1]), name: t[2], id: t[3] });
});
res.json(speakers);
}
});
});
app.post('/speakers/:id/connect', function (req, res) {
var script = "tell application \"Airfoil\"\n";
script += "set myspeaker to first speaker whose id is \"" + req.params.id + "\"\n";
script += "connect to myspeaker\n";
script += "delay 0.5\n";
script += "connect to myspeaker\n";
script += "delay 0.5\n";
script += "connect to myspeaker\n";
script += "delay 0.5\n";
script += "connected of myspeaker\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id, connected: result})
}
});
});
app.post('/speakers/:id/disconnect', function (req, res) {
var script = "tell application \"Airfoil\"\n";
script += "set myspeaker to first speaker whose id is \"" + req.params.id + "\"\n";
script += "disconnect from myspeaker\n";
script += "connected of myspeaker\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id, connected: result})
}
});
});
app.post('/speakers/:id/volume', bodyParser.text({type: '*/*'}), function (req, res) {
var script = "tell application \"Airfoil\"\n";
script += "set myspeaker to first speaker whose id is \"" + req.params.id + "\"\n";
script += "set (volume of myspeaker) to " + parseFloat(req.body)*1.00/100 + "\n";
script += "volume of myspeaker\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id, volume: parseFloat(result)})
}
});
});
app.listen(process.env.PORT || 8080);
var ad = mdns.createAdvertisement(mdns.tcp('airfoil-api'), process.env.PORT || 8080);
ad.start();