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__
) . '/../');
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);
235 if (time
== 'quarter')
237 d
.setSeconds (d
.getSeconds() +
7257600);
242 d
.setSeconds (d
.getSeconds() +
29030400);
248 function classic_upload (url
, file
, time
, password
, one_time
, upload_password
)
250 // Delay time estimation init as we can't have file size
251 upload_time_estimation_init(0);
253 var req
= new XMLHttpRequest ();
254 req
.upload
.addEventListener ("progress", upload_progress
, false);
255 req
.addEventListener ("error", pop_failure
, false);
256 req
.addEventListener ("abort", pop_failure
, false);
257 req
.onreadystatechange
= function ()
259 if (req
.readyState
== 4 && req
.status
== 200)
261 var res
= req
.responseText
;
267 res
= res
.split ("\n");
271 if(!add_time_string_to_date(d
, time
))
273 show_link (url
, res
[0], res
[1], res
[2], d
.toString());
276 show_link (url
, res
[0], res
[1], res
[2]);
279 req
.open ("POST", url +
'script.php' , true);
281 var form
= new FormData();
282 form
.append ("file", file
);
284 form
.append ("time", time
);
286 form
.append ("key", password
);
288 form
.append ("one_time_download", '1');
289 if (upload_password
.length
> 0)
290 form
.append ("upload_password", upload_password
);
295 function check_html5_file_api ()
297 return window
.File
&& window
.FileReader
&& window
.FileList
&& window
.Blob
;
300 var async_global_transfered
= 0;
301 var async_global_url
= '';
302 var async_global_file
;
303 var async_global_ref
= '';
304 var async_global_max_size
= 0;
305 var async_global_time
;
306 var async_global_transfering
= 0;
308 function async_upload_start (url
, max_size
, file
, time
, password
, one_time
, upload_password
)
310 async_global_transfered
= 0;
311 async_global_url
= url
;
312 async_global_file
= file
;
313 async_global_max_size
= max_size
;
314 async_global_time
= time
;
316 var req
= new XMLHttpRequest ();
317 req
.addEventListener ("error", pop_failure
, false);
318 req
.addEventListener ("abort", pop_failure
, false);
319 req
.onreadystatechange
= function ()
321 if (req
.readyState
== 4 && req
.status
== 200)
323 var res
= req
.responseText
;
329 res
= res
.split ("\n");
330 async_global_ref
= res
[0];
332 async_upload_push (code
);
335 req
.open ("POST", async_global_url +
'script.php?init_async' , true);
337 var form
= new FormData();
338 form
.append ("filename", async_global_file
.name
);
339 form
.append ("type", async_global_file
.type
);
341 form
.append ("time", time
);
343 form
.append ("key", password
);
345 form
.append ("one_time_download", '1');
346 if (upload_password
.length
> 0)
347 form
.append ("upload_password", upload_password
);
349 // Start time estimation
350 upload_time_estimation_init(async_global_file
.size
);
355 function async_upload_progress (e
)
357 if (e
== undefined || e
== null ||
!e
.lengthComputable
&& async_global_file
.size
!= 0)
360 // Compute percentage
361 var p
= Math
.round ((e
.loaded + async_global_transfered
) * 100 / (async_global_file
.size
));
364 p_str
= p
.toString() +
'%';
365 // Update estimation speed
366 upload_time_estimation_add(e
.loaded + async_global_transfered
);
368 var speed_str
= upload_time_estimation_speed_string();
369 speed_str
= upload_speed_refresh_limiter(speed_str
);
371 var time_str
= chrono_update(upload_time_estimation_time());
373 show_upload_progression (p_str
, speed_str
, time_str
);
376 function async_upload_push (code
)
378 if (async_global_transfered
== async_global_file
.size
)
380 hide_upload_progression ();
381 async_upload_end (code
);
384 var req
= new XMLHttpRequest ();
385 req
.upload
.addEventListener ("progress", async_upload_progress
, false);
386 req
.addEventListener ("error", pop_failure
, false);
387 req
.addEventListener ("abort", pop_failure
, false);
388 req
.onreadystatechange
= function ()
390 if (req
.readyState
== 4 && req
.status
== 200)
392 var res
= req
.responseText
;
398 res
= res
.split ("\n");
400 async_global_transfered
= async_global_transfering
;
401 async_upload_push (code
);
404 req
.open ("POST", async_global_url +
'script.php?push_async' , true);
406 var chunk_size
= parseInt (async_global_max_size
* 0.50);
407 var start
= async_global_transfered
;
408 var end
= start + chunk_size
;
409 if (end
>= async_global_file
.size
)
410 end
= async_global_file
.size
;
411 var blob
= async_global_file
.slice (start
, end
);
412 async_global_transfering
= end
;
414 var form
= new FormData();
415 form
.append ("ref", async_global_ref
);
416 form
.append ("data", blob
);
417 form
.append ("code", code
);
421 function async_upload_end (code
)
423 var req
= new XMLHttpRequest ();
424 req
.addEventListener ("error", pop_failure
, false);
425 req
.addEventListener ("abort", pop_failure
, false);
426 req
.onreadystatechange
= function ()
428 if (req
.readyState
== 4 && req
.status
== 200)
430 var res
= req
.responseText
;
436 res
= res
.split ("\n");
437 if (async_global_time
!= 'none')
440 if(!add_time_string_to_date(d
, async_global_time
))
442 show_link (async_global_url
, res
[0], res
[1], res
[2], d
.toString());
445 show_link (async_global_url
, res
[0], res
[1], res
[2]);
448 req
.open ("POST", async_global_url +
'script.php?end_async' , true);
450 var form
= new FormData();
451 form
.append ("ref", async_global_ref
);
452 form
.append ("code", code
);
456 function upload (url
, max_size
)
458 if (check_html5_file_api ()
459 && document
.getElementById('file_select').files
[0].size
>= max_size
)
461 async_upload_start (url
,
463 document
.getElementById('file_select').files
[0],
464 document
.getElementById('select_time').value
,
465 document
.getElementById('input_key').value
,
466 document
.getElementById('one_time_download').checked
,
467 document
.getElementById('upload_password').value
473 document
.getElementById('file_select').files
[0],
474 document
.getElementById('select_time').value
,
475 document
.getElementById('input_key').value
,
476 document
.getElementById('one_time_download').checked
,
477 document
.getElementById('upload_password').value
482 var upload_time_estimation_total_size
= 42;
483 var upload_time_estimation_transfered_size
= 42;
484 var upload_time_estimation_transfered_date
= 42;
485 var upload_time_estimation_moving_average_speed
= 42;
487 function upload_time_estimation_init(total_size
)
489 upload_time_estimation_total_size
= total_size
;
490 upload_time_estimation_transfered_size
= 0;
491 upload_time_estimation_moving_average_speed
= 0;
493 upload_time_estimation_transfered_date
= d
.getTime();
496 function upload_time_estimation_add(total_transfered_size
)
498 // Let's compute the current speed
500 var speed
= upload_time_estimation_moving_average_speed
;
501 if (d
.getTime() - upload_time_estimation_transfered_date
!= 0)
502 speed
= (total_transfered_size
- upload_time_estimation_transfered_size
)
503 / (d
.getTime() - upload_time_estimation_transfered_date
);
504 // Let's compute moving average speed on 30 values
505 var m
= (upload_time_estimation_moving_average_speed
* 29 + speed
) / 30;
506 // Update global values
507 upload_time_estimation_transfered_size
= total_transfered_size
;
508 upload_time_estimation_transfered_date
= d
.getTime();
509 upload_time_estimation_moving_average_speed
= m
;
512 function upload_time_estimation_speed_string()
515 var s
= upload_time_estimation_moving_average_speed
* 1000;
523 else if (s
< 1000000)
525 res
= Math
.floor(s
/100) / 10;
530 res
= Math
.floor(s
/100000) / 10;
535 return res
.toString() +
' ' + scale
;
538 function milliseconds_to_time_string (milliseconds
)
540 function numberEnding (number
) {
541 return (number
> 1) ?
's' : '';
544 var temp
= Math
.floor(milliseconds
/ 1000);
545 var years
= Math
.floor(temp
/ 31536000);
547 return years +
' ' +
translate ('year') +
numberEnding(years
);
549 var days
= Math
.floor((temp %
= 31536000) / 86400);
551 return days +
' ' +
translate ('day') +
numberEnding(days
);
553 var hours
= Math
.floor((temp %
= 86400) / 3600);
555 return hours +
' ' +
translate ('hour') +
numberEnding(hours
);
557 var minutes
= Math
.floor((temp %
= 3600) / 60);
559 return minutes +
' ' +
translate ('minute') +
numberEnding(minutes
);
561 var seconds
= temp %
60;
563 return seconds +
' ' +
translate ('second') +
numberEnding(seconds
);
565 return translate ('less than a second');
568 function upload_time_estimation_time()
570 // Estimate remaining time
571 if (upload_time_estimation_moving_average_speed
== 0)
573 return (upload_time_estimation_total_size
- upload_time_estimation_transfered_size
)
574 / upload_time_estimation_moving_average_speed
;
577 var chrono_last_update
= 0;
578 var chrono_time_ms
= 0;
579 var chrono_time_ms_last_update
= 0;
580 function chrono_update(time_ms
)
584 // Don't update too often
585 if (d
.getTime() - chrono_last_update
< 3000 &&
586 chrono_time_ms_last_update
> 0)
587 chrono
= chrono_time_ms
;
590 chrono_last_update
= d
.getTime();
591 chrono_time_ms
= time_ms
;
593 chrono_time_ms_last_update
= d
.getTime();
596 // Adjust chrono for smooth estimation
597 chrono
= chrono
- (d
.getTime() - chrono_time_ms_last_update
);
599 // Let's update chronometer
602 time_str
= milliseconds_to_time_string (chrono
);
606 var upload_speed_refresh_limiter_last_update
= 0;
607 var upload_speed_refresh_limiter_last_value
= '';
608 function upload_speed_refresh_limiter(speed_str
)
611 if (d
.getTime() - upload_speed_refresh_limiter_last_update
> 1500)
613 upload_speed_refresh_limiter_last_value
= speed_str
;
614 upload_speed_refresh_limiter_last_update
= d
.getTime();
616 return upload_speed_refresh_limiter_last_value
;