3 * Jirafeau, your web file repository
4 * Copyright (C) 2015 Jerome Jutteau <j.jutteau@gmail.com>
5 * Copyright (C) 2015 Nicola Spanti (RyDroid) <dev@nicola-spanti.info>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 header('Content-Type: text/javascript');
23 define ('JIRAFEAU_ROOT', dirname (__FILE__
) . '/../');
24 require (JIRAFEAU_ROOT
. 'lib/config.original.php');
25 require (JIRAFEAU_ROOT
. 'lib/settings.php');
26 require (JIRAFEAU_ROOT
. 'lib/functions.php');
27 require (JIRAFEAU_ROOT
. 'lib/lang.php');
30 function translate (expr
)
32 var lang_array
= <?php
echo json_lang_generator () ?
>;
33 if (lang_array
.hasOwnProperty(expr
))
34 return lang_array
[expr
];
38 function show_link (url
, reference
, delete_code
, crypt_key
, date
)
41 document
.getElementById('uploading').style
.display
= 'none';
42 document
.getElementById('upload').style
.display
= 'none';
43 document
.getElementById('upload_finished').style
.display
= '';
44 document
.title
= 'Jirafeau - 100%';
47 var download_link
= url +
'f.php?h=' + reference
;
48 var download_link_href
= url +
'f.php?h=' + reference
;
49 if (crypt_key
.length
> 0)
51 download_link +
= '&k=' + crypt_key
;
52 download_link_href +
= '&k=' + crypt_key
;
54 if (!!document
.getElementById('upload_finished_download_page'))
56 document
.getElementById('upload_link').innerHTML
= download_link
;
57 document
.getElementById('upload_link').href
= download_link_href
;
61 var filename
= document
.getElementById('file_select').files
[0].name
;
62 var b
= encodeURIComponent("Download file \"" + filename +
"\":") +
"%0D";
63 b +
= encodeURIComponent(download_link_href
) +
"%0D";
65 b +
= "%0D" +
encodeURIComponent("This file will be available until " + date
) +
"%0D";
66 document
.getElementById('upload_link_email').href
= "mailto:?body=" + b +
"&subject=" +
encodeURIComponent(filename
);
69 var delete_link
= url +
'f.php?h=' + reference +
'&d=' + delete_code
;
70 var delete_link_href
= url +
'f.php?h=' + reference +
'&d=' + delete_code
;
71 document
.getElementById('delete_link').innerHTML
= delete_link
;
72 document
.getElementById('delete_link').href
= delete_link_href
;
77 document
.getElementById('date').innerHTML
= date
;
78 document
.getElementById('validity').style
.display
= '';
81 document
.getElementById('validity').style
.display
= 'none';
83 // Preview link (if allowed)
84 if (!!document
.getElementById('preview_link'))
86 document
.getElementById('upload_finished_preview').style
.display
= 'none';
87 var preview_link
= url +
'f.php?h=' + reference +
'&p=1';
88 var preview_link_href
= url +
'f.php?h=' + reference +
'&p=1';
89 if (crypt_key
.length
> 0)
91 preview_link +
= '&k=' + crypt_key
;
92 preview_link_href +
= '&k=' + crypt_key
;
95 // Test if content can be previewed
96 type
= document
.getElementById('file_select').files
[0].type
;
97 if (type
.indexOf("image") > -1 ||
98 type
.indexOf("audio") > -1 ||
99 type
.indexOf("text") > -1 ||
100 type
.indexOf("video") > -1)
102 document
.getElementById('preview_link').innerHTML
= preview_link
;
103 document
.getElementById('preview_link').href
= preview_link_href
;
104 document
.getElementById('upload_finished_preview').style
.display
= '';
108 // Direct download link
109 var direct_download_link
= url +
'f.php?h=' + reference +
'&d=1';
110 var direct_download_link_href
= url +
'f.php?h=' + reference +
'&d=1';
111 if (crypt_key
.length
> 0)
113 direct_download_link +
= '&k=' + crypt_key
;
114 direct_download_link_href +
= '&k=' + crypt_key
;
116 document
.getElementById('direct_link').innerHTML
= direct_download_link
;
117 document
.getElementById('direct_link').href
= direct_download_link_href
;
120 // Hide preview and direct download link if password is set
121 if (document
.getElementById('input_key').value
.length
> 0)
123 if (!!document
.getElementById('preview_link'))
124 document
.getElementById('upload_finished_preview').style
.display
= 'none';
125 document
.getElementById('upload_direct_download').style
.display
= 'none';
129 function show_upload_progression (percentage
, speed
, time_left
)
131 document
.getElementById('uploaded_percentage').innerHTML
= percentage
;
132 document
.getElementById('uploaded_speed').innerHTML
= speed
;
133 document
.getElementById('uploaded_time').innerHTML
= time_left
;
134 document
.title
= 'Jirafeau - ' + percentage
;
137 function hide_upload_progression ()
139 document
.getElementById('uploaded_percentage').style
.display
= 'none';
140 document
.getElementById('uploaded_speed').style
.display
= 'none';
141 document
.getElementById('uploaded_time').style
.display
= 'none';
142 document
.title
= 'Jirafeau';
145 function upload_progress (e
)
147 if (e
== undefined || e
== null ||
!e
.lengthComputable
)
150 // Init time estimation if needed
151 if (upload_time_estimation_total_size
== 0)
152 upload_time_estimation_total_size
= e
.total
;
154 // Compute percentage
155 var p
= Math
.round (e
.loaded
* 100 / e
.total
);
158 p_str
= p
.toString() +
'%';
159 // Update estimation speed
160 upload_time_estimation_add(e
.loaded
);
162 var speed_str
= upload_time_estimation_speed_string();
163 speed_str
= upload_speed_refresh_limiter(speed_str
);
165 var time_str
= chrono_update(upload_time_estimation_time());
167 show_upload_progression (p_str
, speed_str
, time_str
);
170 function control_selected_file_size(max_size
, error_str
)
172 f_size
= document
.getElementById('file_select').files
[0].size
;
173 if (max_size
> 0 && f_size
> max_size
* 1024 * 1024)
175 pop_failure(error_str
);
176 document
.getElementById('send').style
.display
= 'none';
180 document
.getElementById('options').style
.display
= '';
181 document
.getElementById('send').style
.display
= '';
182 document
.getElementById('error_pop').style
.display
= 'none';
183 document
.getElementById('file_select').style
.left
= 'inherit';
184 document
.getElementById('file_select').style
.height
= 'inherit';
185 document
.getElementById('file_select').style
.opacity
= '1';
189 function pop_failure (e
)
191 var text
= "An error occured";
192 if (typeof e
!== 'undefined')
194 text
= "<p>" + text +
"</p>";
195 document
.getElementById('error_pop').innerHTML
= e
;
197 document
.getElementById('uploading').style
.display
= 'none';
198 document
.getElementById('error_pop').style
.display
= '';
199 document
.getElementById('upload').style
.display
= '';
200 document
.getElementById('send').style
.display
= '';
203 function add_time_string_to_date(d
, time
)
205 if(typeof(d
) != 'object' ||
!(d
instanceof Date
))
210 if (time
== 'minute')
212 d
.setSeconds (d
.getSeconds() +
60);
217 d
.setSeconds (d
.getSeconds() +
3600);
222 d
.setSeconds (d
.getSeconds() +
86400);
227 d
.setSeconds (d
.getSeconds() +
604800);
232 d
.setSeconds (d
.getSeconds() +
2419200);
237 d
.setSeconds (d
.getSeconds() +
29030400);
243 function classic_upload (url
, file
, time
, password
, one_time
, upload_password
)
245 // Delay time estimation init as we can't have file size
246 upload_time_estimation_init(0);
248 var req
= new XMLHttpRequest ();
249 req
.upload
.addEventListener ("progress", upload_progress
, false);
250 req
.addEventListener ("error", pop_failure
, false);
251 req
.addEventListener ("abort", pop_failure
, false);
252 req
.onreadystatechange
= function ()
254 if (req
.readyState
== 4 && req
.status
== 200)
256 var res
= req
.responseText
;
262 res
= res
.split ("\n");
266 if(!add_time_string_to_date(d
, time
))
268 show_link (url
, res
[0], res
[1], res
[2], d
.toString());
271 show_link (url
, res
[0], res
[1], res
[2]);
274 req
.open ("POST", url +
'script.php' , true);
276 var form
= new FormData();
277 form
.append ("file", file
);
279 form
.append ("time", time
);
281 form
.append ("key", password
);
283 form
.append ("one_time_download", '1');
284 if (upload_password
.length
> 0)
285 form
.append ("upload_password", upload_password
);
290 function check_html5_file_api ()
292 return window
.File
&& window
.FileReader
&& window
.FileList
&& window
.Blob
;
295 var async_global_transfered
= 0;
296 var async_global_url
= '';
297 var async_global_file
;
298 var async_global_ref
= '';
299 var async_global_max_size
= 0;
300 var async_global_time
;
301 var async_global_transfering
= 0;
303 function async_upload_start (url
, max_size
, file
, time
, password
, one_time
, upload_password
)
305 async_global_transfered
= 0;
306 async_global_url
= url
;
307 async_global_file
= file
;
308 async_global_max_size
= max_size
;
309 async_global_time
= time
;
311 var req
= new XMLHttpRequest ();
312 req
.addEventListener ("error", pop_failure
, false);
313 req
.addEventListener ("abort", pop_failure
, false);
314 req
.onreadystatechange
= function ()
316 if (req
.readyState
== 4 && req
.status
== 200)
318 var res
= req
.responseText
;
324 res
= res
.split ("\n");
325 async_global_ref
= res
[0];
327 async_upload_push (code
);
330 req
.open ("POST", async_global_url +
'script.php?init_async' , true);
332 var form
= new FormData();
333 form
.append ("filename", async_global_file
.name
);
334 form
.append ("type", async_global_file
.type
);
336 form
.append ("time", time
);
338 form
.append ("key", password
);
340 form
.append ("one_time_download", '1');
341 if (upload_password
.length
> 0)
342 form
.append ("upload_password", upload_password
);
344 // Start time estimation
345 upload_time_estimation_init(async_global_file
.size
);
350 function async_upload_progress (e
)
352 if (e
== undefined || e
== null ||
!e
.lengthComputable
&& async_global_file
.size
!= 0)
355 // Compute percentage
356 var p
= Math
.round ((e
.loaded + async_global_transfered
) * 100 / (async_global_file
.size
));
359 p_str
= p
.toString() +
'%';
360 // Update estimation speed
361 upload_time_estimation_add(e
.loaded + async_global_transfered
);
363 var speed_str
= upload_time_estimation_speed_string();
364 speed_str
= upload_speed_refresh_limiter(speed_str
);
366 var time_str
= chrono_update(upload_time_estimation_time());
368 show_upload_progression (p_str
, speed_str
, time_str
);
371 function async_upload_push (code
)
373 if (async_global_transfered
== async_global_file
.size
)
375 hide_upload_progression ();
376 async_upload_end (code
);
379 var req
= new XMLHttpRequest ();
380 req
.upload
.addEventListener ("progress", async_upload_progress
, false);
381 req
.addEventListener ("error", pop_failure
, false);
382 req
.addEventListener ("abort", pop_failure
, false);
383 req
.onreadystatechange
= function ()
385 if (req
.readyState
== 4 && req
.status
== 200)
387 var res
= req
.responseText
;
393 res
= res
.split ("\n");
395 async_global_transfered
= async_global_transfering
;
396 async_upload_push (code
);
399 req
.open ("POST", async_global_url +
'script.php?push_async' , true);
401 var chunk_size
= parseInt (async_global_max_size
* 0.50);
402 var start
= async_global_transfered
;
403 var end
= start + chunk_size
;
404 if (end
>= async_global_file
.size
)
405 end
= async_global_file
.size
;
406 var blob
= async_global_file
.slice (start
, end
);
407 async_global_transfering
= end
;
409 var form
= new FormData();
410 form
.append ("ref", async_global_ref
);
411 form
.append ("data", blob
);
412 form
.append ("code", code
);
416 function async_upload_end (code
)
418 var req
= new XMLHttpRequest ();
419 req
.addEventListener ("error", pop_failure
, false);
420 req
.addEventListener ("abort", pop_failure
, false);
421 req
.onreadystatechange
= function ()
423 if (req
.readyState
== 4 && req
.status
== 200)
425 var res
= req
.responseText
;
431 res
= res
.split ("\n");
432 if (async_global_time
!= 'none')
435 if(!add_time_string_to_date(d
, async_global_time
))
437 show_link (async_global_url
, res
[0], res
[1], res
[2], d
.toString());
440 show_link (async_global_url
, res
[0], res
[1], res
[2]);
443 req
.open ("POST", async_global_url +
'script.php?end_async' , true);
445 var form
= new FormData();
446 form
.append ("ref", async_global_ref
);
447 form
.append ("code", code
);
451 function upload (url
, max_size
)
453 if (check_html5_file_api ()
454 && document
.getElementById('file_select').files
[0].size
>= max_size
)
456 async_upload_start (url
,
458 document
.getElementById('file_select').files
[0],
459 document
.getElementById('select_time').value
,
460 document
.getElementById('input_key').value
,
461 document
.getElementById('one_time_download').checked
,
462 document
.getElementById('upload_password').value
468 document
.getElementById('file_select').files
[0],
469 document
.getElementById('select_time').value
,
470 document
.getElementById('input_key').value
,
471 document
.getElementById('one_time_download').checked
,
472 document
.getElementById('upload_password').value
477 var upload_time_estimation_total_size
= 42;
478 var upload_time_estimation_transfered_size
= 42;
479 var upload_time_estimation_transfered_date
= 42;
480 var upload_time_estimation_moving_average_speed
= 42;
482 function upload_time_estimation_init(total_size
)
484 upload_time_estimation_total_size
= total_size
;
485 upload_time_estimation_transfered_size
= 0;
486 upload_time_estimation_moving_average_speed
= 0;
488 upload_time_estimation_transfered_date
= d
.getTime();
491 function upload_time_estimation_add(total_transfered_size
)
493 // Let's compute the current speed
495 var speed
= upload_time_estimation_moving_average_speed
;
496 if (d
.getTime() - upload_time_estimation_transfered_date
!= 0)
497 speed
= (total_transfered_size
- upload_time_estimation_transfered_size
)
498 / (d
.getTime() - upload_time_estimation_transfered_date
);
499 // Let's compute moving average speed on 30 values
500 var m
= (upload_time_estimation_moving_average_speed
* 29 + speed
) / 30;
501 // Update global values
502 upload_time_estimation_transfered_size
= total_transfered_size
;
503 upload_time_estimation_transfered_date
= d
.getTime();
504 upload_time_estimation_moving_average_speed
= m
;
507 function upload_time_estimation_speed_string()
510 var s
= upload_time_estimation_moving_average_speed
* 1000;
518 else if (s
< 1000000)
520 res
= Math
.floor(s
/100) / 10;
525 res
= Math
.floor(s
/100000) / 10;
530 return res
.toString() +
' ' + scale
;
533 function milliseconds_to_time_string (milliseconds
)
535 function numberEnding (number
) {
536 return (number
> 1) ?
's' : '';
539 var temp
= Math
.floor(milliseconds
/ 1000);
540 var years
= Math
.floor(temp
/ 31536000);
542 return years +
' ' +
translate ('year') +
numberEnding(years
);
544 var days
= Math
.floor((temp %
= 31536000) / 86400);
546 return days +
' ' +
translate ('day') +
numberEnding(days
);
548 var hours
= Math
.floor((temp %
= 86400) / 3600);
550 return hours +
' ' +
translate ('hour') +
numberEnding(hours
);
552 var minutes
= Math
.floor((temp %
= 3600) / 60);
554 return minutes +
' ' +
translate ('minute') +
numberEnding(minutes
);
556 var seconds
= temp %
60;
558 return seconds +
' ' +
translate ('second') +
numberEnding(seconds
);
560 return translate ('less than a second');
563 function upload_time_estimation_time()
565 // Estimate remaining time
566 if (upload_time_estimation_moving_average_speed
== 0)
568 return (upload_time_estimation_total_size
- upload_time_estimation_transfered_size
)
569 / upload_time_estimation_moving_average_speed
;
572 var chrono_last_update
= 0;
573 var chrono_time_ms
= 0;
574 var chrono_time_ms_last_update
= 0;
575 function chrono_update(time_ms
)
579 // Don't update too often
580 if (d
.getTime() - chrono_last_update
< 3000 &&
581 chrono_time_ms_last_update
> 0)
582 chrono
= chrono_time_ms
;
585 chrono_last_update
= d
.getTime();
586 chrono_time_ms
= time_ms
;
588 chrono_time_ms_last_update
= d
.getTime();
591 // Adjust chrono for smooth estimation
592 chrono
= chrono
- (d
.getTime() - chrono_time_ms_last_update
);
594 // Let's update chronometer
597 time_str
= milliseconds_to_time_string (chrono
);
601 var upload_speed_refresh_limiter_last_update
= 0;
602 var upload_speed_refresh_limiter_last_value
= '';
603 function upload_speed_refresh_limiter(speed_str
)
606 if (d
.getTime() - upload_speed_refresh_limiter_last_update
> 1500)
608 upload_speed_refresh_limiter_last_value
= speed_str
;
609 upload_speed_refresh_limiter_last_update
= d
.getTime();
611 return upload_speed_refresh_limiter_last_value
;