-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileHelper.js
93 lines (75 loc) · 2.76 KB
/
fileHelper.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
"use strict";
const fs = require("fs");
const Logger = require('./logger');
class FileHelper {
/**
*
*/
constructor() {
}
/**
* Reads the video folder for files, and lists them in an array.
*
* This is a changed version from
* https://stackoverflow.com/questions/20822273/best-way-to-get-folder-and-file-list-in-javascript
*
* @param dir The root directory
* @returns {Array} An array with all video files, based on their tag.
*/
getAllFilesFromFolder(dir) {
const supportedVideoFormats = ['.mp4', '.flv'];
const t = this;
let results = [];
// Check if the directory is available
if (!fs.existsSync(dir)) {
Logger.warn('The video folder doesn\'t exist. Before playing videos is possible, add videos to the video folder as described in the documentation.');
throw new Error(dir + ' - folder not found')
}
fs.readdirSync(dir).forEach(function (file) {
// keep the original filename
let original = file;
file = dir + '/' + file;
let stat = fs.statSync(file);
// Check if the selected object is a file or directory.
if (stat && stat.isDirectory()) {
// Recursive
results = results.concat(t.getAllFilesFromFolder(file));
} else {
// Check if the file has one of the supported video formats
if (supportedVideoFormats.includes(original.slice(original.length - 4))) {
// Tag is the same as the name of the folder
const tag = dir.match(/([^\/]*)\/*$/)[1];
results.push({
"tag": tag, // The last directory from the filepath
"file": original,
});
} else if (original.slice(original.length - 4) !== '.txt') {
// text files ignored in logging
Logger.log(original + ' is not a supported video file');
}
}
});
return results;
}
buildRootPlaylist(sessionId) {
// Build text for playlist file
let text = 'ffconcat version 1.0\n' +
'file ' + sessionId + '_playlist.txt\n' +
'file ' + sessionId + '.txt';
this.changeFileContents(global.rootDirectory + '/video/' + sessionId + '.txt', text)
}
/**
* TODO: This needs some checking
*
* @param source
* @param text
*/
changeFileContents(source, text) {
fs.writeFileSync(source, text, (err => {
if (err)
throw err;
Logger.info(source + ' successful created.');
}));
}
}
module.exports = FileHelper;