forked from mvantassel/plexpy2influx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plexpy2influx.js
220 lines (169 loc) · 6.17 KB
/
plexpy2influx.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
'use strict';
if (!process.env.PLEXPY_TOKEN) {
throw new Error('PLEXPY_TOKEN is required');
}
const Influx = require('influx');
const request = require('request-promise');
const checkInterval = process.env.UPDATE_INTERVAL_MS || 1000 * 60;
const precision = process.env.INFLUX_PRECISION || 'm';
const influxClient = new Influx.InfluxDB({
host: process.env.INFLUX_HOST || 'localhost',
port: process.env.INFLUX_PORT || 8086,
protocol: process.env.INFLUX_PROTOCOL || 'http',
database: process.env.INFLUX_DB || 'plex',
username: process.env.INFLUX_USER || '',
password: process.env.INFLUX_PASS || ''
});
const plexPyConfig = {
token: process.env.PLEXPY_TOKEN || '',
host: process.env.PLEXPY_HOST || 'localhost',
protocol: process.env.PLEXPY_PROTOCOL ||'http',
port: process.env.PLEXPY_PORT || 8181,
baseUrl: process.env.PLEXPY_BASEURL || ''
};
const plexpyOptions = {
url: `${plexPyConfig.protocol}://${plexPyConfig.host}:${plexPyConfig.port}/${plexPyConfig.baseUrl}/api/v2?apikey=${plexPyConfig.token}`,
resolveWithFullResponse: true
};
const STATE_PLAYING = 'playing';
const STREAM_DIRECTPLAY = 'direct play';
let timer;
function log(message) {
console.log(message);
}
function getPlexPyActivityData() {
api.log(`${new Date()}: Getting PlexPy Activity Data`);
return request(Object.assign(plexpyOptions, {
qs: { cmd: 'get_activity' }
}));
}
function getPlexPyLibraryData() {
api.log(`${new Date()}: Getting PlexPy Library Data`);
return request(Object.assign(plexpyOptions, {
qs: { cmd: 'get_libraries' }
}));
}
function getPlexPyUsersData() {
api.log(`${new Date()}: Getting PlexPy User Data`);
return request(Object.assign(plexpyOptions, {
qs: { cmd: 'get_users_table' }
}));
}
function writeToInflux(seriesName, values, tags) {
return influxClient.writeMeasurement(seriesName, [{
fields: values,
tags: tags
}], {
precision: precision
});
}
function groupBy(data, key) {
let newArr = [], types = {};
data.forEach(item => {
if (!(item[key] in types)) {
types[item[key]] = {type: item[key], data: []};
newArr.push(types[item[key]]);
}
types[item[key]].data.push(item);
});
return newArr;
}
function onGetPlexPyActivityData(response) {
api.log(`${new Date()}: Parsing PlexPy Activity Data`);
let sessions = JSON.parse(response.body).response.data.sessions;
if (sessions.length === 0) {
api.log(`${new Date()}: No sessions to log`);
return;
}
let sessionsByResolution = groupBy(sessions, 'video_resolution');
sessionsByResolution.forEach(data => {
let resolutionSessions = data.data;
let sessionData = {
total_stream_count: resolutionSessions && resolutionSessions.length || 0,
total_stream_playing_count: 0,
transcode_stream_count: 0,
transcode_stream_playing_count: 0,
direct_stream_count: 0,
direct_stream_playing_count: 0
};
let tags = {
resolution: data.type
};
resolutionSessions.forEach(session => {
if (session.state !== STATE_PLAYING) {
return;
}
if (session.transcode_decision === STREAM_DIRECTPLAY) {
sessionData.direct_stream_count++;
if (session.state === STATE_PLAYING) {
sessionData.direct_stream_playing_count++;
}
} else {
sessionData.transcode_stream_count++;
if (session.state === STATE_PLAYING) {
sessionData.transcode_stream_playing_count++;
}
}
if (session.state === STATE_PLAYING) {
sessionData.total_stream_playing_count++;
}
});
writeToInflux('sessions', sessionData, tags).then(function(){
api.log(`${new Date()}: wrote session data to influx`);
}).catch(handleError);
});
}
function onGetPlexPyLibraryData(response) {
api.log(`${new Date()}: Parsing PlexPy Library Data`);
let libraryData = JSON.parse(response.body).response.data;
libraryData.forEach(library => {
let value = { count: Number(library.count) };
if (library.child_count) {
value.childCount = Number(library.child_count)
}
let tags = {
type: library.section_type,
section: library.section_name
};
writeToInflux('library', value, tags).then(function(){
api.log(`${new Date()}: wrote ${library.section_name} library data to influx`);
}).catch(handleError);
});
}
function onGetPlexPyUsersData(response) {
api.log(`${new Date()}: Parsing PlexPy User Data`);
let usersData = JSON.parse(response.body).response.data.data;
usersData.forEach(user => {
let value = {
duration: user.duration,
plays: user.plays
};
let tags = { username: user.friendly_name };
writeToInflux('users', value, tags).then(function(){
api.log(`${new Date()}: wrote ${user.friendly_name} user data to influx`);
}).catch(handleError);
});
}
function handleError(err) {
api.log(`${new Date()}: Error -- ${err.message}`);
api.log(err);
}
function restart() {
// Every {checkInterval} seconds
timer = setTimeout(start, checkInterval);
}
function start() {
api.log(`${new Date()}: Initialize PlexPy2Influx`);
let getActivityData = api.getPlexPyActivityData().then(onGetPlexPyActivityData).catch(handleError);
let getLibraryData = api.getPlexPyLibraryData().then(onGetPlexPyLibraryData).catch(handleError);
let getUserData = api.getPlexPyUsersData().then(onGetPlexPyUsersData).catch(handleError);
Promise.all([getActivityData, getLibraryData, getUserData]).then(restart, reason => {
api.log(`${new Date()}: ${reason}`);
}).catch(handleError);
}
function stop() {
api.log(`${new Date()}: stopping plexpy2influx`);
clearTimeout(timer);
}
let api = { getPlexPyActivityData, getPlexPyLibraryData, getPlexPyUsersData, log, start, stop, writeToInflux };
module.exports = api;