-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
458 lines (378 loc) · 12.3 KB
/
server.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
var express = require("express");
var app = express();
var port = process.env.PORT || 3800;
var http = require('http');
var request = require('request');
var fs = require('fs');
var path = require('path');
var config = require("./model/config").config;
var logger = require('./model/log');
var uploader = require('./routes/upload');
var nodemailer = require("nodemailer");
var chokidar = require('chokidar');
var FormData = require('form-data');
const os = require ('os');
var mime = require('mime-types'); // mime type checking package
var numberPrints;
const numberPrintsFile = __dirname + "/numberprints.json";
var formdata;
const formdataPath = __dirname + "/formdata.json";
try {
numberPrints = JSON.parse( fs.readFileSync(numberPrintsFile, "utf8" ) );
}
catch (err) {
numberPrints = {};
fs.writeFileSync(numberPrintsFile, JSON.stringify( {} ), "utf8");
}
try {
formdata = JSON.parse( fs.readFileSync(formdataPath, "utf8" ) );
}
catch (err) {
formdata = [];
fs.writeFileSync(formdataPath, JSON.stringify( [] ), "utf8");
}
/**
* Set the paths for your files
* @type {[string]}
*/
//Ewan: To edit here
var d = new Date();
var yyyy = d.getFullYear();
var dd = ("0" + d.getDate()).slice(-2);
var mm = ("0" + (d.getMonth() + 1)).slice(-2);;
var finaldate = yyyy + "-" + mm + "-" + dd;
var appDir = path.dirname(require.main.filename); //this is the filepath of gifbooth app
var CurrentUserPath = os.homedir();
var desktopDir = CurrentUserPath + '\/Desktop';
var pub = __dirname + '/public',
view = __dirname + '/views',
photos = '/photos/',
photosPub = '/public' + photos,
videos = '/videos/',
videosPub = '/public' + videos,
/*Using paths inside gifbooth app*/
//watchPath = './watch/',
//originalJpgs = './originalJpgs/',
//originals = './originalsMP4/',
/*Using paths from photobooth-new folder
watchPath = desktopDir + '/Display/',
originalJpgs = desktopDir + '/photobooth-new/' + finaldate + '/prints/',
originals = desktopDir + '/photobooth-new/' + finaldate + '/MP4/',
*/
/*For 4K Stogram/Smartphone emailing and printing*/
watchPath = desktopDir + '/Display/',
originalJpgs = './originalJpgs/',
originals = './originalsMP4/',
toPrint = './toPrint/';
console.log ("Today's date is: " + finaldate);
console.log ("gifbooth app is located at: " + appDir);
console.log ("Files to be displayed for emailing is at: " + watchPath);
console.log ("Original files used for printing is at: " + originalJpgs);
console.log ("Original mp4 for emailing is at: " + originals);
console.log ("Desktop path is at: " + desktopDir);
/**
* Set your app main configuration
*/
app.configure(function(){
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(pub));
app.use(express.static(view));
app.use(express.errorHandler());
});
app.engine('htmlx', function (filePath, options, callback) { // define the template engine
fs.readFile(filePath, function (err, content) {
if (err) return callback(new Error(err));
// this is an extremely simple template engine
var form = "";
if ( options.enable_form )
{
form = fs.readFileSync( view + "/" + options.form_path );
}
var rendered = content.toString().replace(new RegExp('##form##', 'g'), ''+ form +'').replace(new RegExp('##activeifnotform##', 'g'), (options.enable_form ? "" : "active") );
return callback(null, rendered);
});
});
app.get( "/", function(req, res) {
app.set('view engine', 'htmlx'); // register the template engine
res.render( "index", { enable_form : config.enable_form, form_path: config.form_path } );
} );
/**
* Render your index/view "my choice was not use jade"
*/
app.get("/views", function(req, res){
res.render("index");
});
/**
* send email
*/
app.post('/sendMail', uploader.sendMail);
app.get('/reset', function(req, res) {
fs.writeFileSync(numberPrintsFile, JSON.stringify( {} ), "utf8");
numberPrints = {};
res.send("Print copy data cleared");
});
app.get('/resetform', function(req, res) {
fs.writeFileSync(formdataPath, JSON.stringify( [] ), "utf8");
formdata = [];
res.send("Form data cleared");
});
app.post( '/saveform', function(req, res) {
var data = req.body;
data.time = (new Date()).toString();
formdata.push( data );
fs.writeFileSync(formdataPath, JSON.stringify( formdata ), "utf8");
res.send( 'success' );
});
app.get( '/downloadform', function(req, res) {
res.setHeader('Content-disposition', 'attachment; filename=form.csv');
res.setHeader('Content-type', "binary");
var csv = "";
for ( var outerIdx in formdata ) {
for ( var innerIdx in formdata[outerIdx] ) {
csv += '"' + formdata[outerIdx][innerIdx] + '",';
}
csv = csv.slice(0, -1);
csv += "\n";
}
res.send( csv );
});
app.post( '/uploadMedia', function(req, res) {
var data = req.body;
let url = config.fbServerUrl; //'https://instantly.sg/fb_api.php';
var file_data = fs.createReadStream(__dirname + '/public' + data.filePath);;
var formData = {
'sid': data.sid,
'action': data.action,
'caption': data.caption,
'media_file': {
value: file_data,
options: {
filename: data.filePath,
contentType: 'multipart/form-data',
},
},
}
request.post({url:url, formData: formData}, function optionalCallback(err, httpResponse, body) {
if (err) {
return console.error('upload failed:', err);
}
//console.log(body);
res.send(body);
});
});
function startWatchers(socket) {
var gifwatcher = chokidar.watch(watchPath + '*.gif', {
ignored: /[\/\\]\./,
persistent: true
});
var GIFwatcher = chokidar.watch(watchPath + '*.GIF', {
ignored: /[\/\\]\./,
persistent: true
});
var jpgwatcher = chokidar.watch(watchPath + '*.jpg', {
ignored: /[\/\\]\./,
persistent: true
});
var JPGwatcher = chokidar.watch(watchPath + '*.JPG', {
ignored: /[\/\\]\./,
persistent: true
});
var mp4watcher = chokidar.watch(watchPath + '*.mp4', {
ignored: /[\/\\]\./,
persistent: true
});
var MP4watcher = chokidar.watch(watchPath + '*.MP4', {
ignored: /[\/\\]\./,
persistent: true
});
// image added
var addCB = function(filePath) {
moveFile(filePath, function(err, filename) {
if(!err) {
var filestats = fs.statSync( filePath );
filename = filename.replace('public/', '');
filename = filename.replace('public\\', '');
var np = (numberPrints[filename])?numberPrints[filename]:0;
if(mime.lookup(filePath) == 'video/mp4'){
var data = { url: filename, ctime: filestats.mtime.getTime(), np: np, type: 'video' }
}else{
var data = { url: filename, ctime: filestats.mtime.getTime(), np: np, type: 'image' }
}
socket.emit('addImage', data);
}
});
var fileName = filePath.replace('watch/', '');
fileName = fileName.replace('watch\\', '');
console.log('File', fileName, 'has been added');
};
// image changed
var changeCB = function(filePath) {
moveFile(filePath, function(err, filename) {
if(!err) {
console.log('socket sent');
filename = filename.replace('public/', '');
filename = filename.replace('public\\', '');
if(mime.lookup(filePath) == 'video/mp4'){
var data = { url: filename, type: 'video' }
}else{
var data = { url: filename, type: 'image' }
}
socket.emit('updateImage', data);
}
});
filePath = filePath.replace('watch/', '');
filePath = filePath.replace('watch\\', '');
console.log('File', filePath, 'has been changed');
};
// image removed
var unlinkCB = function(filePath) {
deleteFile(filePath, function(err, filename) {
filename = filename.replace('public/', '');
filename = filename.replace('public\\', '');
if(mime.lookup(filePath) == 'video/mp4'){
var data = { url: filename, type: 'video' }
}else{
var data = { url: filename, type: 'image' }
}
socket.emit('removeImage', data);
});
filePath = filePath.replace('watch/', '');
filePath = filePath.replace('watch\\', '');
console.log('File', filePath, 'has been removed');
};
gifwatcher.on('add', addCB);
gifwatcher.on('change', changeCB);
gifwatcher.on('unlink', unlinkCB);
GIFwatcher.on('add', addCB);
GIFwatcher.on('change', changeCB);
GIFwatcher.on('unlink', unlinkCB);
jpgwatcher.on('add', addCB);
jpgwatcher.on('change', changeCB);
jpgwatcher.on('unlink', unlinkCB);
JPGwatcher.on('add', addCB);
JPGwatcher.on('change', changeCB);
JPGwatcher.on('unlink', unlinkCB);
mp4watcher.on('add', addCB);
mp4watcher.on('change', changeCB);
mp4watcher.on('unlink', unlinkCB);
MP4watcher.on('add', addCB);
MP4watcher.on('change', changeCB);
MP4watcher.on('unlink', unlinkCB);
}
function moveFile(filePath, cb) {
var name = path.basename(filePath);
if(mime.lookup(filePath) == 'video/mp4'){
var filename = videosPub + name;
}else{
var filename = photosPub + name;
}
var source = fs.createReadStream(filePath);
var dest = fs.createWriteStream(__dirname + filename);
source.pipe(dest);
source.on('end', function() { /* copied */
cb(null, filename);
});
source.on('error', function(err) { /* error */
cb(err, filename);
})
}
function deleteFile(filePath, cb) {
var name = path.basename(filePath);
if(mime.lookup(filePath) == 'video/mp4'){
var filename = videosPub + name;
}else{
var filename = photosPub + name;
}
var filenameDir = path.join(__dirname, filename);
fs.unlink(filenameDir, function (err) {
cb(err, filename);
});
}
var io = require('socket.io').listen(app.listen(port));
io.configure(function () {
io.set("transports", ["xhr-polling"]);
io.set("polling duration", 10);
});
function initializeFilter( socket ) {
var timefilter = [];
for ( var p = config.filter_time_from; p<config.filter_time_to; p++) {
for ( var mm = 0; mm<60; mm+=config.filter_interval) {
timefilter.push( leadingZero( p ) + ":" + leadingZero( mm ) );
}
}
timefilter.push( config.filter_time_to + ":00");
socket.emit( 'initFilter', timefilter );
}
function leadingZero( val ) {
if ( parseInt( val ) < 10 )
return "0" + parseInt(val);
else
return val;
}
io.sockets.on('connection', function (socket) {
// starting watcher
startWatchers(socket);
initializeFilter( socket );
// events
socket.on('print', function(data) {
var url = data.url;
var amount = data.amount;
var copyString = amount + 'copy';
//var printString = (Math.round((amount)/2)); /*Bookmark or Half 4R or Wallet Double Side*/
//var printString = (Math.ceil((amount)/4)); /*Wallet Single Side*/
var printString = amount; /*4R*/
var text = "";
var possible = "abcdefghijklmnopqrstuvwxyz";
var appDir = path.dirname(require.main.filename);
var imgFolder = appDir + config.imgfoldername;
var basename = path.basename(url, path.extname(url));
var filename = basename + path.extname(url);
for( var i=0; i < 11; i++ ) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
if(data.media_type == 'video'){
var printTempFilename = [basename, "-", text, "-", copyString,"-",printString, ".mp4"].join('');
fs.readdir(originals, function (err, files) {
for(var i=0; i< files.length; i++) {
if(files[i].indexOf(basename) != -1) {
fs.createReadStream(originals + files[i])
.pipe(
fs.createWriteStream(toPrint + printTempFilename)
);
}
}
});
}else{
var printTempFilename = [basename, "-", text, "-", copyString,"-",printString, ".jpg"].join('');
fs.readdir(originalJpgs, function (err, files) {
for(var i=0; i< files.length; i++) {
if(files[i].indexOf(basename) != -1) {
fs.createReadStream(originalJpgs + files[i])
.pipe(
fs.createWriteStream(toPrint + printTempFilename)
);
}
}
});
}
if ( numberPrints[url] )
numberPrints[url] = parseInt( numberPrints[url] ) + parseInt( amount );
else
numberPrints[url] = amount;
fs.writeFile( numberPrintsFile,
JSON.stringify( numberPrints ),
function (err) {
if ( err ) {
console.log( err );
}
}
);
});
});
function pr( $mixed ) {
console.log ( "/////////////////////////////////");
console.log( $mixed );
console.log ( "=================================");
}