-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
102 lines (91 loc) · 2.01 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
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
'use strict';
require('dotenv').load();
const Async = require('async');
const path = require('path');
const bunyan = require('bunyan');
const ATFB = require('./src');
const log = bunyan.createLogger({name: 'ATFB', level: process.env.LOG_LEVEL});
const app = new ATFB({
logger: log,
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, 'const', 'atfb.sqlite')
},
useNullAsDefault: false
},
reader: {
clientId: process.env.CLIENT_ID,
apiKey: process.env.API_KEY
},
flexget: {
filename: path.join(__dirname, 'const', 'series.yml'),
command: '~/flexget/bin/flexget daemon reload'
}
});
let refreshInterval;
const clear = function() {
app.stop(function() {
clearInterval(refreshInterval);
refreshInterval = null;
log.info('All Stopped');
log.info('The way is clear, exiting.');
process.exit();
});
};
const start = function() {
Async.series([
app.init.bind(app),
app.start.bind(app)
], function(error) {
if (error) {
log.error(error);
clear();
}
else {
log.info('All Started');
log.debug(app.getPluginTree());
refresh();
refreshInterval = setInterval(refresh, process.env.UPDATE_PERIOD);
}
});
};
function refresh() {
app.methods.reader.getUserList(process.env.ANI_USER, ['watching', 'plan_to_watch'])
.then((list) => {
log.info(list.length);
Async.map(list, processAnime, (err, seriesList) => {
if (!err) {
app.methods.flexget.updateConfig(seriesList, (err) => {
if (err) {
throw err;
}
});
}
else {
throw err;
}
});
})
.catch((err) => {
log.error(err);
clear();
});
}
function processAnime(anime, next) {
const animeData = app.methods.seriesNameGenerator.generateNames(anime);
app.methods.registry.storeAnime(animeData, (error, animeRecord) => {
if (error) {
next(error);
}
else {
next(null, animeRecord);
}
});
}
process.on('SIGINT', clear);
process.on('uncaughtException', function (err) {
log.error('Some unexpected error occured', err);
clear();
});
start();