-
Notifications
You must be signed in to change notification settings - Fork 0
/
push.js
200 lines (172 loc) · 6.31 KB
/
push.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
/**
* Created by savely on 12.05.2017.
*/
const stream = require('stream');
const FeedParser = require('feedparser');
const fs = require('fs');
function hashCode(str){
let hash = 0;
if (str.length === 0) return hash;
for (let i = 0; i < str.length; i++) {
const char = str.charCodeAt(i);
hash = ((hash << 5) - hash) + char;
hash = hash & hash; // Convert to 32bit integer
}
return hash;
}
module.exports = function () {
/**
* Функция ничего не принимает и не возвращает.
* Однако изменения, к которым её выполнение приводит, изменяет данные в базе.
* И это приводит к срабатыванию блок ниже.
*/
function fetch() {
const feedparser = new FeedParser();
// Загружаем RSS-файл
console.log('RSS downloading started...');
const options = {
url: 'http://retre.org/rssdd.xml',
encoding: null
};
request.get(options)
.then(function (buffer) {
// Ответ возвращается нам сразу буфером, но...
const feed = new stream.PassThrough();
feed.end(buffer);
// feedparser требует Stream, так что стримим ему
feed.pipe(feedparser);
// Возвращаем промайз
return new Promise(function (resolve, reject) {
// На всякий случай обрабатываем возможную ошибку парсинга
feedparser.on('error', function (error) {
reject(error)
});
// После парсинга RSS отобразим сообщение в лог
feedparser.on('end', function () {
resolve('RSS successfully parsed!');
});
// Читаем RSS блоками сверху вниз
feedparser.on('readable', function () {
let item;
while (item = feedparser.read()) {
if (item.categories[0] === '[MP4]') {
// Создаем временную переменную, потому что item может успеть
// сменится за время асинхронного запроса в базу данных
const temp = item;
// Используя регулярки сохраняем из RSS название на английском,
// а также номер сезона и серии
const title = /\((.+)\)\./.exec(temp.title)[1];
const num = /\(S(\d+)E(\d+)\)/.exec(temp.title);
// Делаем запрос в базу с фильтром по названию,
// чтобы узнать ID фильма. Узкое место:
// Мы предполагаем, что фильм с таким название только ОДИН
r.table('serials')
.filter({'title_orig': title})
.then(function (res) {
// Если пусто -- ничего не делаем.
// Скорее всего нужно обновить базу фильмов
if (res !== null) {
let series = {};
if (parseInt(num[2]) !== 99)
series = {
title: title,
season: parseInt(num[1]),
episode: parseInt(num[2]),
id: res[0].id,
date: temp.date
};
else
series = {
title: title,
season: parseInt(num[1]),
episode: parseInt(num[2]),
id: res[0].id,
// Создаем фиктивную дату из хэша например Lost1016
date: new Date(hashCode(title + res[0].id + parseInt(num[1])))
};
return r.table('feed')
.insert(series);
}
})
.then(function (res) {
if (/Duplicate primary key/.exec(res.first_error))
console.log('Nothing new!');
else
console.log('New!');
})
.catch(function (error) {
reject(error);
});
}
}
});
});
})
.then(function (res) {
console.log(res);
})
.catch(function (error) {
console.warn(error.message);
});
}
setInterval(fetch, 1000 * 60 * 3);
/**
* Этот блок обрабатывает изменения в базе и начинает рассылку.
*/
r.table('feed').changes()
.then(function (cursor) {
cursor.each(function(err, row) {
if (err) reject(err);
console.log('Feed change detected!');
if (row.new_val !== null) {
const id = row.new_val.id;
r.table('users')
.filter(function (user) {
return user('favorites').contains(function (fav) {
return fav('id').eq(id)
});
})
.then(async function (res) {
res = {
users: res,
new: row.new_val,
serial: id
};
for (let i in res.users) {
if (res.users.hasOwnProperty(i)) {
const serial = R.find(R.propEq('id', res.serial))(res.users[i].favorites);
let text = '';
if (res.new.episode !== 99)
text = '<b>' + serial.title + '</b>\n' +
'Вышла ' + res.new.episode + ' серия ' + res.new.season + ' сезона.\n' +
'Загрузить: /dl_' + res.serial + '_' + res.new.season + '_' + res.new.episode;
else
text = '<b>' + serial.title + '</b>\n' +
'Полностью вышел ' + res.new.season + ' сезон.\n' +
'Загрузить: /dl_' + res.serial + '_' + res.new.season;
// Сохраняем файл для пользователей личного бота
if (res.users[i].id === config.private.download.id) {
console.log('Start saving file...');
const file = await download(res.users[i].id, res.serial, res.new.season, res.new.episode, true);
fs.writeFileSync(`torrents/${file.filename}`, file.buffer);
console.log('Saving done!');
}
console.log(res.users[i].id);
try {
const status = await bot.sendMessage(res.users[i].id, text, parse_html);
} catch (error) {
console.warn(error.message);
}
}
}
})
.catch(function (error) {
throw new Error(error);
})
}
});
})
.catch(function (error) {
console.warn(error.message);
});
};