forked from jnewland/airfoil-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
139 lines (128 loc) · 4 KB
/
app.js
File metadata and controls
139 lines (128 loc) · 4 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
132
133
134
135
136
137
138
139
var util = require('util');
var express = require('express');
var morgan = require('morgan');
var app = express();
var bodyParser = require('body-parser');
var applescript = require('applescript');
var fs = require('fs');
var logFormat = "'[:date[iso]] - :remote-addr - :method :url :status :response-time ms - :res[content-length]b'";
app.use(morgan(logFormat));
app.use(bodyParser.text({type: '*/*'}));
app.get('/speakers', function(req, res){
fs.readFile("speakers.scpt", "utf8", function(err, data) {
if (err) throw err;
applescript.execString(data, 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', 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, body: req.body});
} else {
res.json({id: req.params.id, volume: parseFloat(result)})
}
});
});
app.get('/now_playing', function(req, res){
fs.readFile("now_playing.scpt", "utf8", function(err, data) {
if (err) throw err;
applescript.execString(data, function(error, result) {
if (error) {
res.json({error: error});
} else {
if (result == "") {
res.json({playing: false});
} else {
var info = result.split("|");
res.json({
playing: true,
artist: info[0],
album: info[1],
track: info[2]
});
}
}
});
});
});
app.post('/next', function (req, res) {
var script = "tell application \"Airfoil Satellite\" to next";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({success: true});
}
});
});
app.post('/previous', function (req, res) {
var script = "tell application \"Airfoil Satellite\" to previous";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({success: true});
}
});
});
app.post('/playpause', function (req, res) {
var script = "tell application \"Airfoil Satellite\" to playpause";
applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({success: true});
}
});
});
app.listen(process.env.PORT || 8080);