forked from ezpaarse-project/bibliomap-enricher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
210 lines (183 loc) · 7.26 KB
/
app.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
// example
// +log biblioinserm bibliolog info 16.2.255.24 - 13BBIU1158 [01/Aug/2013:16:56:36 +0100] "GET http://onlinelibrary.wiley.com:80/doi/10.1111/dme.12357/pdf HTTP/1.1" 200 13639
var config = require('./config.js');
var LogIoServerParser = require('log.io-server-parser');
var request = require('request').defaults({'proxy': null});
var es = require('event-stream');
var JSONStream = require('JSONStream');
var net = require('net');
var ezpaarseJobs = {};
var bibliolog = null;
var bibliomap = null;
var server = null;
// Par défaut nodejs limite le nombre de connexion à 5
// ce qui signifie que si on ne change pas cette limite
// on ne pourrait pas faire plus de 5 traitements ezpaarse
// simultanément.
// On passe la limite à 20 car nous avons 8 bibliosites.
require('http').globalAgent.maxSockets = 20;
/**
* essai de connexion à bibliomap
* toutes les N secondes
*/
setInterval(function () {
// si une connexion avec bibliomap est en cours on ne fait rien
if (bibliomap !== null) return;
bibliomap = net.connect(config.bibliomap.port, config.bibliomap.host);
bibliomap.on('connect', function () {
console.error(new Date() + ' - Connecté à bibliomap sur ' + config.bibliomap.host + ':' + config.bibliomap.port + ' => prêt à broadcaster');
bibliomap.connected = true;
});
bibliomap.on('error', function (err) {
console.error(new Date() + ' - Connexion bibliomap en erreur : ' + err);
});
bibliomap.on('close', function () {
console.error(new Date() + ' - Connexion bibliomap fermée');
bibliomap = null;
});
}, config.autoConnectDelay);
/**
* essai de connexion à bibliolog
* toutes les N secondes
*/
setInterval(function () {
// si une connexion avec bibliolog est en cours on ne fait rien
if (bibliolog !== null) return;
bibliolog = net.connect(config.logio.broadcast);
bibliolog.on('connect', function () {
console.error(new Date() + ' - Connecté à bibliolog sur ' + config.logio.broadcast.host + ':' + config.logio.broadcast.port + ' => prêt à broadcaster');
bibliolog.connected = true;
});
bibliolog.on('error', function (err) {
console.error(new Date() + ' - Connexion bibliolog en erreur : ' + err);
});
bibliolog.on('close', function () {
console.error(new Date() + ' - Connexion bibliolog fermée');
bibliolog = null;
});
}, config.autoConnectDelay);
/**
* écoute le harvester uniquement si
* on a une connexion avec bibliolog
* essai toutes les N secondes
*/
setInterval(function () {
// si pas de connexion avec bibliolog
// ou qu'on écoute déja
if (bibliolog === null || !bibliolog.connected || server) return;
// écoute les logs venant du harvester
server = new LogIoServerParser(config.logio.listen);
server.listen();
server.on('+node', function (node, streams) {
var proxyStreams = [];
// création des différents job ezpaarse
// un par stream
streams.forEach(function (streamName) {
proxyStreams.push(streamName);
proxyStreams.push(streamName + '-ezpaarse');
// création d'un slot vide qui acceuillera
// un job ezpaarse
ezpaarseJobs[streamName] = null;
});
// broadcast to bibliolog
bibliolog.write('+node|bibliolog|' + proxyStreams.join(',') + '\r\n');
});
server.on('+log', function (streamName, node, type, log) {
if (ezpaarseJobs[streamName]) {
ezpaarseJobs[streamName].writeStream.write(log + '\n');
}
if (bibliolog && bibliolog.connected) {
bibliolog.write('+log|' + Array.prototype.slice.call(arguments, 0).join('|') + '\r\n');
}
});
server.on('unknown', function (data) {
if (bibliolog && bibliolog.connected) {
bibliolog.write(data.join('|') + '\r\n');
}
});
server.on('-node', function (node) {
if (bibliolog && bibliolog.connected) {
bibliolog.write('-node|' + node + '\r\n');
}
});
server.on('+node', function (node, streams) {
if (bibliolog && bibliolog.connected) {
bibliolog.write('+node|' + node + '|' + streams.join(',') + '\r\n');
}
});
}, config.autoConnectDelay);
/**
* création des jobs ezpaarse et fait en sorte
* de relancer les jobs terminés ou plantés
* toutes les N secondes
*/
setInterval(function () {
Object.keys(ezpaarseJobs).forEach(function (streamName) {
// si le job est en cours, on ne fait rien
if (ezpaarseJobs[streamName] !== null) return;
console.error(new Date() + " - Création d'un job ezpaarse pour " + streamName);
// sinon, création d'un nouveau job
ezpaarseJobs[streamName] = {
request: request.post({
url: config.ezpaarse.url,
headers: config.ezpaarse.headers
}),
writeStream: es.through()
};
ezpaarseJobs[streamName].writeStream.pipe(ezpaarseJobs[streamName].request);
ezpaarseJobs[streamName].request
.pipe(JSONStream.parse())
.pipe(es.mapSync(function (data) {
var msg = '';
msg += '[' + data.datetime + ']';
msg += ' ' + data.login;
msg += ' ' + data.platform;
msg += ' ' + data.platform_name;
msg += ' ' + data.rtype;
msg += ' ' + data.mime;
msg += ' ' + (data.print_identifier || '-');
msg += ' ' + (data.online_identifier || '-');
msg += ' ' + (data.doi || '-');
msg += ' ' + data.url;
var logioMsg = '+log|' + streamName + '-ezpaarse' + '|bibliolog|info|' + msg;
if (bibliolog && bibliolog.connected) {
bibliolog.write(logioMsg + '\r\n');
}
if (bibliomap && bibliomap.connected) {
data.ezproxyName = streamName;
bibliomap.write(JSON.stringify(data) + '\n');
}
if (config.debug) {
console.log(logioMsg);
}
}));
// vérifie que la connexion ezpaarse n'est pas fermée
ezpaarseJobs[streamName].request.on('error', function (err) {
console.error(new Date() + ' - "error" sur le job ezpaarse ' + streamName + ' [' + err + ']');
delete ezpaarseJobs[streamName];
ezpaarseJobs[streamName] = null;
console.error(new Date() + ' - Nettoyage du job ezpaarse terminé sur ' + streamName);
});
ezpaarseJobs[streamName].request.on('close', function () {
console.error(new Date() + ' - "close" sur le job ezpaarse ' + streamName);
delete ezpaarseJobs[streamName];
ezpaarseJobs[streamName] = null;
console.error(new Date() + ' - Nettoyage du job ezpaarse terminé sur ' + streamName);
});
ezpaarseJobs[streamName].request.on('end', function () {
console.error(new Date() + ' - "end" sur le job ezpaarse ' + streamName);
delete ezpaarseJobs[streamName];
ezpaarseJobs[streamName] = null;
console.error(new Date() + ' - Nettoyage du job ezpaarse terminé sur ' + streamName);
});
ezpaarseJobs[streamName].request.on('response', function (response) {
console.error(new Date() + ' - Job ' + response.headers['job-id'] + ' ok pour ' + streamName);
});
// // close each hours ezpaarse connections
// // could help to stabilize bibliolog
// setTimeout(function () {
// console.error(new Date() + ' - Aborting ezpaarse job ' + streamName);
// ezpaarseJobs[streamName].request.end();
// }, 60 * 60 * 1000);
}); // forEach streams
}, config.autoConnectDelay);