-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
51 lines (42 loc) · 1.31 KB
/
index.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
/**
* index.js - Loads the voice adapter.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.*
*/
'use strict';
const {Database} = require('gateway-addon');
const manifest = require('./manifest.json');
const VoiceAdapter = require('./lib/adapter');
function loadVoiceAdapter(addonManager, _, errorCallback) {
const db = new Database(manifest.id);
db.open().then(() => {
return db.loadConfig();
}).then((config) => {
if (!config.token) {
errorCallback(manifest.id, 'Add-on must be configured before use');
return;
}
if (!config.keyword) {
config.keyword = manifest.options.default.keyword;
}
if (!config.speaker) {
config.speaker = manifest.options.default.speaker;
}
if (!config.microphone) {
config.microphone = manifest.options.default.microphone;
}
if (config.microphone === 'MATRIX') {
try {
require('@matrix-io/matrix-lite');
} catch (e) {
console.error(e);
errorCallback(manifest.id, 'Failed to load matrix module');
return;
}
}
new VoiceAdapter(addonManager, config);
}).catch(console.error);
}
module.exports = loadVoiceAdapter;