-
Notifications
You must be signed in to change notification settings - Fork 304
Expand file tree
/
Copy pathindex.js
More file actions
183 lines (147 loc) · 5.27 KB
/
index.js
File metadata and controls
183 lines (147 loc) · 5.27 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
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
// Copyright 2025 HEM Sp. z o.o.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// This file is part of an implementation of Ferrum Streaming Control Technology™,
// which is subject to additional terms found in the LICENSE-FSCT.md file.
'use strict';
var libQ = require('kew');
var fs = require('fs-extra');
var config = new (require('v-conf'))();
var exec = require('child_process').exec;
var execSync = require('child_process').execSync;
const {LogLevelFilter, setLogLevel, initSystemdLogger, FsctService, NodePlayer, PlayerStatus, CurrentTextMetadata} = require("@hemspzoo/fsct-lib");
module.exports = FerrumStreamingControlTechnology;
function FerrumStreamingControlTechnology(context) {
var self = this;
this.context = context;
this.commandRouter = this.context.coreCommand;
this.logger = this.context.logger;
this.configManager = this.context.configManager;
}
var player = new NodePlayer()
var fsctService = new FsctService();
function getStatus (state) {
switch (state["status"]) {
case "play":
return PlayerStatus.Playing;
case "pause":
return PlayerStatus.Paused;
case "stop":
return PlayerStatus.Stopped;
default:
return PlayerStatus.Unknown;
}
}
function getTimelineInfo(state) {
const position = state.seek;
const duration = state.duration;
const status = state.status || "stop";
const rate = status === "play" ? 1.0 : 0.0;
if (position === undefined || duration === undefined) return null;
return {
position: position / 1000.0,
duration: duration,
rate: rate,
};
}
FerrumStreamingControlTechnology.prototype.updateStateOnPlayer = function (state) {
player.setStatus(getStatus(state));
player.setTimeline(getTimelineInfo(state));
player.setText(CurrentTextMetadata.Title, state["title"]);
player.setText(CurrentTextMetadata.Author, state["artist"]);
player.setText(CurrentTextMetadata.Album, state["album"]);
}
FerrumStreamingControlTechnology.prototype.onVolumioStart = function () {
var self = this;
var configFile = this.commandRouter.pluginManager.getConfigurationFile(this.context, 'config.json');
this.config = new (require('v-conf'))();
this.config.loadFile(configFile);
try {
initSystemdLogger("fsct-plugin");
setLogLevel(LogLevelFilter.Info);
}
catch (e) {
self.logger.error(e);
}
return libQ.resolve();
}
FerrumStreamingControlTechnology.prototype.onStart = function () {
var self = this;
var defer = libQ.defer();
fsctService.runFsct(player)
.then(function () {
var state = self.commandRouter.volumioGetState();
self.updateStateOnPlayer(state);
self.logger.info("FSCT Started");
defer.resolve();
})
.catch((err) => {
self.logger.error(err);
defer.reject(err);
});
return defer.promise;
};
FerrumStreamingControlTechnology.prototype.onStop = function () {
var self = this;
var defer = libQ.defer();
fsctService.stopFsct()
.then(function () {
self.logger.info("FSCT Stoped");
defer.resolve();
})
.catch((err) => {
self.logger.error(err);
defer.reject(err);
});
return defer.promise;
};
FerrumStreamingControlTechnology.prototype.onRestart = function () {
var self = this;
// Optional, use if you need it
};
// Configuration Methods -----------------------------------------------------------------------------
FerrumStreamingControlTechnology.prototype.getUIConfig = function () {
var defer = libQ.defer();
var self = this;
var lang_code = this.commandRouter.sharedVars.get('language_code');
self.commandRouter.i18nJson(__dirname + '/i18n/strings_' + lang_code + '.json',
__dirname + '/i18n/strings_en.json',
__dirname + '/UIConfig.json')
.then(function (uiconf) {
defer.resolve(uiconf);
})
.fail(function () {
defer.reject(new Error());
});
return defer.promise;
};
FerrumStreamingControlTechnology.prototype.getConfigurationFiles = function () {
return ['config.json'];
}
FerrumStreamingControlTechnology.prototype.setUIConfig = function (data) {
var self = this;
//Perform your installation tasks here
};
FerrumStreamingControlTechnology.prototype.getConf = function (varName) {
var self = this;
//Perform your installation tasks here
};
FerrumStreamingControlTechnology.prototype.setConf = function (varName, varValue) {
var self = this;
//Perform your installation tasks here
};
FerrumStreamingControlTechnology.prototype.pushState = function (state) {
var self = this;
self.updateStateOnPlayer(state);
};