-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
executable file
·167 lines (143 loc) · 4.02 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
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
var helpers = require('../utils/helpers.js');
var movies = require('./lib/movies.js');
var async = require("async");
module.exports = function(app, express, auth, storage) {
var config = app.get("config");
helpers.setServiceInfo(app, "movies", {
"filedir" : config.movies.localDir
});
movies.set({
"port" : config.server.port,
"localDir": config.movies.localDir
});
movies.setUp(__dirname);
app.use('/public/movies', express.static(__dirname + '/public'));
app.post("/movies/auth", function(req, res) {
res.send({
"result" : "ok",
"authed" : auth.authenticate(req, "movies")
});
});
app.get("/movies/isauthed/:un", function(req, res) {
var un = helpers.getParam("un", req);
var ip = req.ip;
var isAu = auth.isAuthed(un, req, "movies", 2);
res.send({
"result" : "ok",
"authed" : isAu
});
});
app.get("/movies/logout/:un", function(req, res) {
var un = helpers.getParam("un", req);
auth.logOut(un);
res.send({
"result" : "ok"
});
});
app.post("/movies/get", auth.checkAuth, auth.log_1, function(req, res) {
var dir = helpers.getParam("dir", req);
movies.getfiles(dir, function(error, fileInfo) {
if (error)
return res.send({
"result" : "fail",
"error" : error.message
});
res.send({
"result" : "ok",
"hash" : movies.getHash(dir),
"data" : fileInfo
});
});
});
app.get("/movies/getrecent", auth.checkAuth, auth.log_1,
function(req, res) {
movies.getRecent(function(error, fileInfo) {
if (error)
return res.send({
"result" : "fail",
"error" : error.message
});
res.send({
"result" : "ok",
"hash" : movies.getHash(movies.recentDir),
"data" : fileInfo
});
});
});
app.get("/movies/screen", auth.checkAuth, auth.log_1, function(req, res) {
var path = helpers.getParam("p", req);
var time = helpers.getParam("t", req);
if(!time || time == "undefined" || time == undefined){
time = 0;
}
movies.getCurrentMovieScreenImage(path, time, res);
});
app.get("/movies/regeneratethumb", auth.checkAuth, auth.log_1, function(
req, res) {
var path = helpers.getParam("path", req);
var thumbTime = helpers.getParam("thumbTime", req);
movies.regenerateThumb(decodeURIComponent(path), thumbTime, function(error) {
if (error) {
return console.log("Error", error.toString());
}
res.send({
"result" : "ok"
});
});
});
app.post("/movies/details", auth.checkAuth, auth.log_1, function(req, res) {
var path = helpers.getParam("path", req);
movies.getRemotePublicFileDetails(path, function(error, details) {
if (error) {
return console.log("Error", error.toString());
}
res.send({
"result" : "ok",
"details" : details
});
});
})
app.get("/movies/:un?", function(req, res) {
app.set("views", __dirname + "/views");
var username = helpers.getParam("un", req);
var isAu = auth.isAuthed(username, req, "movies", 2);
var view = app.get("___view")();
if (isAu) {
var agent = JSON.stringify(req.headers['user-agent']);
if (agent.search("Presto") > -1) {
return res.redirect("/movies_old/" + username);
}
return helpers.getFileHashes([
"player.js", "list.js",
"data.js", "item.js",
"dispatch.js", "video.min.js"
], __dirname + "/public/",
function(error, jsFiles) {
if (error) {
return res.send({
"result" : "fail",
"error" : error.message
});
}
view.showList = true;
view.un = username;
storage.getTimestamp(username, "movies", function(error, storageAge) {
view.ts = new Date().getTime();
view.jsFiles = jsFiles;
view.movies = JSON.stringify(movies.files);
view.agent = agent;
view.curtains = movies.buildCurtains();
view.storageAge = storageAge;
res.render("index.html", view);
return movies.getInitialFiles(movies.publicBaseDir, function(error) {
if (error) {
console.log("Error refreshing recent: ", error.toString());
}
});
});
});
}
view.showForm = true;
res.render("index.html", view);
});
};