]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blame - app/js/app.js
Fix logout
[perso/Immae/Projets/Nodejs/Surfer.git] / app / js / app.js
CommitLineData
6eb72d64
JZ
1(function () {
2'use strict';
3
4function login(username, password) {
5 username = username || app.loginData.username;
6 password = password || app.loginData.password;
7
8 app.busy = true;
9
10 superagent.get('/api/files/').query({ username: username, password: password }).end(function (error, result) {
11 app.busy = false;
12
13 if (error) return console.error(error);
14 if (result.statusCode === 401) return console.error('Invalid credentials');
15
16 app.session.valid = true;
17 app.session.username = username;
18 app.session.password = password;
19
20 // clearly not the best option
21 localStorage.username = username;
22 localStorage.password = password;
d3312ed1
JZ
23
24 loadDirectory(app.path);
6eb72d64
JZ
25 });
26}
27
28function logout() {
29 app.session.valid = false;
95c627bf
JZ
30 app.session.username = null;
31 app.session.password = null;
6eb72d64
JZ
32
33 delete localStorage.username;
34 delete localStorage.password;
35}
36
d3312ed1
JZ
37function sanitize(filePath) {
38 filePath = '/' + filePath;
39 return filePath.replace(/\/+/g, '/');
40}
41
537bfb04
JZ
42function encode(filePath) {
43 return filePath.split('/').map(encodeURIComponent).join('/');
44}
45
a26d1f9b
JZ
46var mimeTypes = {
47 images: [ '.png', '.jpg', '.jpeg', '.tiff', '.gif' ],
48 text: [ '.txt', '.md' ],
49 pdf: [ '.pdf' ],
50 html: [ '.html', '.htm', '.php' ],
51 video: [ '.mp4', '.mpg', '.mpeg', '.ogg', '.mkv' ]
52};
53
54function getPreviewUrl(entry, basePath) {
55 var path = '/_admin/img/';
56
57 if (entry.isDirectory) return path + 'directory.png';
58 if (mimeTypes.images.some(function (e) { return entry.filePath.endsWith(e); })) return sanitize(basePath + '/' + entry.filePath);
59 if (mimeTypes.text.some(function (e) { return entry.filePath.endsWith(e); })) return path +'text.png';
60 if (mimeTypes.pdf.some(function (e) { return entry.filePath.endsWith(e); })) return path + 'pdf.png';
61 if (mimeTypes.html.some(function (e) { return entry.filePath.endsWith(e); })) return path + 'html.png';
62 if (mimeTypes.video.some(function (e) { return entry.filePath.endsWith(e); })) return path + 'video.png';
63
64 return path + 'unknown.png';
65}
66
537bfb04
JZ
67function refresh() {
68 loadDirectory(app.path);
69}
70
d3312ed1
JZ
71function loadDirectory(filePath) {
72 app.busy = true;
73
74 filePath = filePath ? sanitize(filePath) : '/';
75
76 console.log(filePath);
77
78 superagent.get('/api/files/' + filePath).query({ username: app.session.username, password: app.session.password }).end(function (error, result) {
79 app.busy = false;
80
81 if (error) return console.error(error);
82 if (result.statusCode === 401) return logout();
83
572e87c9 84 result.body.entries.sort(function (a, b) { return a.isDirectory && b.isFile ? -1 : 1 });
a26d1f9b
JZ
85 app.entries = result.body.entries.map(function (entry) {
86 entry.previewUrl = getPreviewUrl(entry, filePath);
87 return entry;
88 });
d3312ed1
JZ
89 app.path = filePath;
90 app.pathParts = filePath.split('/').filter(function (e) { return !!e; });
3e98fb0c
JZ
91
92 Vue.nextTick(function () {
93 $(function () {
94 $('[data-toggle="tooltip"]').tooltip();
95 });
96 });
d3312ed1
JZ
97 });
98}
99
100function open(entry) {
101 var path = sanitize(app.path + '/' + entry.filePath);
102
103 if (entry.isDirectory) return loadDirectory(path);
104
ee9d1ada 105 window.open(path);
d3312ed1
JZ
106}
107
108function up() {
109 loadDirectory(app.path.split('/').slice(0, -1).filter(function (p) { return !!p; }).join('/'));
110}
111
537bfb04 112function upload() {
403359cf 113 $(app.$els.upload).on('change', function () {
537bfb04
JZ
114 app.busy = true;
115
403359cf
JZ
116 // detach event handler
117 $(app.$els.upload).off('change');
118
537bfb04
JZ
119 var file = app.$els.upload.files[0];
120 var path = encode(sanitize(app.path + '/' + file.name));
121
122 var formData = new FormData();
123 formData.append('file', file);
124
125 superagent.put('/api/files' + path).query({ username: app.session.username, password: app.session.password }).send(formData).end(function (error, result) {
126 app.busy = false;
127
128 if (error) return console.error(error);
129 if (result.statusCode !== 201) return console.error('Error uploading file: ', result.statusCode);
130
131 refresh();
132 });
133 });
134
135 app.$els.upload.click();
136}
137
9138d7d4
JZ
138function delAsk(entry) {
139 $('#modalDelete').modal('show');
140 app.deleteData = entry;
141}
142
143function del(entry) {
144 app.busy = true;
145
146 var path = encode(sanitize(app.path + '/' + entry.filePath));
147
148 superagent.del('/api/files' + path).query({ username: app.session.username, password: app.session.password, recursive: true }).end(function (error, result) {
149 app.busy = false;
150
151 if (error) return console.error(error);
152 if (result.statusCode !== 200) return console.error('Error deleting file: ', result.statusCode);
153
154 refresh();
155
156 $('#modalDelete').modal('hide');
157 });
158}
159
403359cf
JZ
160function createDirectoryAsk() {
161 $('#modalcreateDirectory').modal('show');
162 app.createDirectoryData = '';
163}
164
165function createDirectory(name) {
166 app.busy = true;
167
168 var path = encode(sanitize(app.path + '/' + name));
169
170 superagent.put('/api/files' + path).query({ username: app.session.username, password: app.session.password, directory: true }).end(function (error, result) {
171 app.busy = false;
172
173 if (error) return console.error(error);
174 if (result.statusCode !== 201) return console.error('Error creating directory: ', result.statusCode);
175
176 app.createDirectoryData = '';
177 refresh();
178
179 $('#modalcreateDirectory').modal('hide');
180 });
181}
182
235212c4
JZ
183Vue.filter('prettyDate', function (value) {
184 var d = new Date(value);
185 return d.toDateString();
186});
187
8fce52f8
JZ
188Vue.filter('prettyFileSize', function (value) {
189 return filesize(value);
190});
191
6eb72d64
JZ
192var app = new Vue({
193 el: '#app',
194 data: {
195 busy: true,
d3312ed1
JZ
196 path: '/',
197 pathParts: [],
6eb72d64
JZ
198 session: {
199 valid: false
200 },
d3312ed1 201 loginData: {},
9138d7d4 202 deleteData: {},
403359cf 203 createDirectoryData: '',
d3312ed1 204 entries: []
6eb72d64
JZ
205 },
206 methods: {
207 login: login,
d3312ed1
JZ
208 logout: logout,
209 loadDirectory: loadDirectory,
210 open: open,
537bfb04 211 up: up,
9138d7d4
JZ
212 upload: upload,
213 delAsk: delAsk,
403359cf
JZ
214 del: del,
215 createDirectoryAsk: createDirectoryAsk,
216 createDirectory: createDirectory
6eb72d64
JZ
217 }
218});
219
6eb72d64
JZ
220login(localStorage.username, localStorage.password);
221
222})();