forked from jnewland/airfoil-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
197 lines (184 loc) · 6.77 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
var util = require('util');
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var applescript = require('applescript');
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].replace(",", ".")), name: t[2], id: t[3] });
});
res.json(speakers);
}
});
});
app.get('/speakers/:id', function(req, res){
var script = "tell application \"Airfoil\"\n";
script += "set myspeaker to first speaker whose id is \"" + req.params.id + "\"\n";
script += "set thisSpeaker to {}\n";
script += "set conn to connected of myspeaker\n";
script += "copy conn to the end of thisSpeaker\n";
script += "set volum to volume of myspeaker\n";
script += "copy volum to the end of thisSpeaker\n";
script += "set nm to name of myspeaker\n";
script += "copy nm to the end of thisSpeaker\n";
script += "set spkId to id of myspeaker\n";
script += "copy spkId to the end of thisSpeaker\n";
script += "set AppleScript's text item delimiters to \";\"\n";
script += "set speakerText to thisSpeaker as text\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
var t = result.split(";");
res.json({connected: t[0], volume: parseFloat(t[1].replace(",", ".")), name: t[2], id: t[3] });
}
});
});
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) + "\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.post('/source/:name', function (req, res) {
var script = "tell application \"Airfoil\"\n";
script += "set current audio source to first device source whose name is \"" + req.params.name + "\"\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id})
}
});
});
app.post('/appsource/:id', function (req, res) {
var script = "set appName to \"" + req.params.id + "\"\n";
script += "tell application \"System Events\"\n"
script += "set appList to every process whose name is \"" + req.params.id + "\"\n";
script += "end tell\n"
script += "if length of appList is 0 then\n";
script += "tell application \"" + req.params.id + "\"\n";
script += "launch\n";
script += "delay 3\n";
script += "activate\n";
script += "end tell\n";
script += "end if\n";
script += "set pathToApp to (POSIX path of (path to application appName))\n"
script += "tell application \"Airfoil\"\n";
script += "set appsource to make new application source\n";
script += "set application file of appsource to pathToApp\n";
script += "set (current audio source) to appsource\n";
script += "end tell\n";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id})
}
});
});
app.post('/appcontrol/:id', bodyParser.text({type: '*/*'}), function (req, res) {
script = "tell application \"" + req.params.id + "\" to " + req.body + "\n";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({id: req.params.id})
}
});
});
app.get('/appsource', function(req, res){
var script = "tell application \"Airfoil\"\n";
script += "set currentAudioSource to current audio source\n";
script += "set audioSource to {}\n";
script += "set srcId to id of currentAudioSource\n";
script += "copy srcId to the end of audioSource\n";
script += "set nm to name of currentAudioSource\n";
script += "copy nm to the end of audioSource\n";
script += "set AppleScript's text item delimiters to \";\"\n";
script += "set audioSourceText to audioSource as text\n";
script += "end tell";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
var t = result.split(";");
res.json({id: t[0], name: t[1]});
}
});
});
app.listen(process.env.PORT || 8234);