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 isEmpty(str
) {
39 return (!str ||
0 === str
.length
);
42 // Extend date object with format method
43 Date
.prototype
.format
= function(format
) {
44 format
= format ||
'YYYY-MM-DD hh:mm';
46 var zeropad
= function(number
, length
) {
47 number
= number
.toString();
49 while(number
.length
< length
)
50 number
= '0' + number
;
54 YYYY
: this
.getFullYear(),
55 MM
: zeropad(this
.getMonth() +
1),
56 DD
: zeropad(this
.getDate()),
57 hh
: zeropad(this
.getHours()),
58 mm
: zeropad(this
.getMinutes()),
61 sign
= (localDate
.getTimezoneOffset() > 0) ?
'-' : '+';
62 offset
= Math
.abs(localDate
.getTimezoneOffset());
63 hours
= zeropad(Math
.floor(offset
/ 60));
64 minutes
= zeropad(offset %
60);
65 return sign + hours +
":" + minutes
;
68 pattern
= '(' +
Object.keys(formats
).join(')|(') +
')';
70 return format
.replace(new RegExp(pattern
, 'g'), function(match
) {
71 return formats
[match
];
75 function dateFromUtcString(datestring
) {
76 // matches »YYYY-MM-DD hh:mm«
77 var m
= datestring
.match(/(\d+
)-(\d+
)-(\d+
)\s+
(\d+
):(\d+
)/);
78 return new Date(Date
.UTC(+m
[1], +m
[2] - 1, +m
[3], +m
[4], +m
[5], 0));
81 function dateFromUtcTimestamp(datetimestamp
) {
82 return new Date(parseInt(datetimestamp
) * 1000)
85 function dateToUtcString(datelocal
) {
87 datelocal
.getUTCFullYear(),
88 datelocal
.getUTCMonth(),
89 datelocal
.getUTCDate(),
90 datelocal
.getUTCHours(),
91 datelocal
.getUTCMinutes(),
92 datelocal
.getUTCSeconds()
96 function dateToUtcTimestamp(datelocal
) {
98 datelocal
.getUTCFullYear(),
99 datelocal
.getUTCMonth(),
100 datelocal
.getUTCDate(),
101 datelocal
.getUTCHours(),
102 datelocal
.getUTCMinutes(),
103 datelocal
.getUTCSeconds()
107 function convertAllDatetimeFields() {
108 datefields
= document
.getElementsByClassName('datetime')
109 for(var i
=0; i
<datefields
.length
; i++
) {
110 dateUTC
= datefields
[i
].getAttribute('data-datetime');
111 datefields
[i
].setAttribute('title', dateUTC +
' (GMT)');
112 datefields
[i
].innerHTML
= dateFromUtcString(dateUTC
).format('YYYY-MM-DD hh:mm (GMT O)');
116 function show_link (url
, reference
, delete_code
, crypt_key
, date
)
119 document
.getElementById('uploading').style
.display
= 'none';
120 document
.getElementById('upload').style
.display
= 'none';
121 document
.getElementById('upload_finished').style
.display
= '';
122 document
.title
= 'Jirafeau - 100%';
125 var download_link
= url +
'f.php?h=' + reference
;
126 var download_link_href
= url +
'f.php?h=' + reference
;
127 if (crypt_key
.length
> 0)
129 download_link +
= '&k=' + crypt_key
;
130 download_link_href +
= '&k=' + crypt_key
;
132 if (!!document
.getElementById('upload_finished_download_page'))
134 document
.getElementById('upload_link').innerHTML
= download_link
;
135 document
.getElementById('upload_link').href
= download_link_href
;
139 var filename
= document
.getElementById('file_select').files
[0].name
;
140 var b
= encodeURIComponent("Download file \"" + filename +
"\":") +
"%0D";
141 b +
= encodeURIComponent(download_link_href
) +
"%0D";
142 if (false == isEmpty(date
))
144 b +
= "%0D" +
encodeURIComponent("This file will be available until " + date
.format('YYYY-MM-DD hh:mm (GMT O)')) +
"%0D";
145 document
.getElementById('upload_link_email').href
= "mailto:?body=" + b +
"&subject=" +
encodeURIComponent(filename
);
149 var delete_link
= url +
'f.php?h=' + reference +
'&d=' + delete_code
;
150 var delete_link_href
= url +
'f.php?h=' + reference +
'&d=' + delete_code
;
151 document
.getElementById('delete_link').innerHTML
= delete_link
;
152 document
.getElementById('delete_link').href
= delete_link_href
;
157 document
.getElementById('validity').style
.display
= 'none';
160 document
.getElementById('date').innerHTML
= '<span class="datetime" title="'
161 +
dateToUtcString(date
) +
' (GMT)">'
162 + date
.format('YYYY-MM-DD hh:mm (GMT O)')
164 document
.getElementById('validity').style
.display
= '';
167 // Preview link (if allowed)
168 if (!!document
.getElementById('preview_link'))
170 document
.getElementById('upload_finished_preview').style
.display
= 'none';
171 var preview_link
= url +
'f.php?h=' + reference +
'&p=1';
172 var preview_link_href
= url +
'f.php?h=' + reference +
'&p=1';
173 if (crypt_key
.length
> 0)
175 preview_link +
= '&k=' + crypt_key
;
176 preview_link_href +
= '&k=' + crypt_key
;
179 // Test if content can be previewed
180 type
= document
.getElementById('file_select').files
[0].type
;
181 if (type
.indexOf("image") > -1 ||
182 type
.indexOf("audio") > -1 ||
183 type
.indexOf("text") > -1 ||
184 type
.indexOf("video") > -1)
186 document
.getElementById('preview_link').innerHTML
= preview_link
;
187 document
.getElementById('preview_link').href
= preview_link_href
;
188 document
.getElementById('upload_finished_preview').style
.display
= '';
192 // Direct download link
193 var direct_download_link
= url +
'f.php?h=' + reference +
'&d=1';
194 var direct_download_link_href
= url +
'f.php?h=' + reference +
'&d=1';
195 if (crypt_key
.length
> 0)
197 direct_download_link +
= '&k=' + crypt_key
;
198 direct_download_link_href +
= '&k=' + crypt_key
;
200 document
.getElementById('direct_link').innerHTML
= direct_download_link
;
201 document
.getElementById('direct_link').href
= direct_download_link_href
;
204 // Hide preview and direct download link if password is set
205 if (document
.getElementById('input_key').value
.length
> 0)
207 if (!!document
.getElementById('preview_link'))
208 document
.getElementById('upload_finished_preview').style
.display
= 'none';
209 document
.getElementById('upload_direct_download').style
.display
= 'none';
213 function show_upload_progression (percentage
, speed
, time_left
)
215 document
.getElementById('uploaded_percentage').innerHTML
= percentage
;
216 document
.getElementById('uploaded_speed').innerHTML
= speed
;
217 document
.getElementById('uploaded_time').innerHTML
= time_left
;
218 document
.title
= 'Jirafeau - ' + percentage
;
221 function hide_upload_progression ()
223 document
.getElementById('uploaded_percentage').style
.display
= 'none';
224 document
.getElementById('uploaded_speed').style
.display
= 'none';
225 document
.getElementById('uploaded_time').style
.display
= 'none';
226 document
.title
= 'Jirafeau';
229 function upload_progress (e
)
231 if (e
== undefined || e
== null ||
!e
.lengthComputable
)
234 // Init time estimation if needed
235 if (upload_time_estimation_total_size
== 0)
236 upload_time_estimation_total_size
= e
.total
;
238 // Compute percentage
239 var p
= Math
.round (e
.loaded
* 100 / e
.total
);
242 p_str
= p
.toString() +
'%';
243 // Update estimation speed
244 upload_time_estimation_add(e
.loaded
);
246 var speed_str
= upload_time_estimation_speed_string();
247 speed_str
= upload_speed_refresh_limiter(speed_str
);
249 var time_str
= chrono_update(upload_time_estimation_time());
251 show_upload_progression (p_str
, speed_str
, time_str
);
254 function control_selected_file_size(max_size
, error_str
)
256 f_size
= document
.getElementById('file_select').files
[0].size
;
257 if (max_size
> 0 && f_size
> max_size
* 1024 * 1024)
259 pop_failure(error_str
);
260 document
.getElementById('send').style
.display
= 'none';
264 // add class to restyle upload form in next step
265 document
.getElementById('upload').setAttribute('class', 'file-selected');
267 document
.getElementById('options').style
.display
= 'block';
268 document
.getElementById('send').style
.display
= 'block';
269 document
.getElementById('error_pop').style
.display
= 'none';
270 document
.getElementById('send').focus();
274 function pop_failure (e
)
276 var text
= "An error occured";
277 if (typeof e
!== 'undefined')
279 text
= "<p>" + text +
"</p>";
280 document
.getElementById('error_pop').innerHTML
= e
;
282 document
.getElementById('uploading').style
.display
= 'none';
283 document
.getElementById('error_pop').style
.display
= '';
284 document
.getElementById('upload').style
.display
= '';
285 document
.getElementById('send').style
.display
= '';
288 function add_time_string_to_date(d
, time
)
290 if(typeof(d
) != 'object' ||
!(d
instanceof Date
))
295 if (time
== 'minute')
297 d
.setSeconds (d
.getSeconds() +
60);
302 d
.setSeconds (d
.getSeconds() +
3600);
307 d
.setSeconds (d
.getSeconds() +
86400);
312 d
.setSeconds (d
.getSeconds() +
604800);
317 d
.setSeconds (d
.getSeconds() +
2419200);
320 if (time
== 'quarter')
322 d
.setSeconds (d
.getSeconds() +
7257600);
327 d
.setSeconds (d
.getSeconds() +
29030400);
333 function classic_upload (url
, file
, time
, password
, one_time
, upload_password
)
335 // Delay time estimation init as we can't have file size
336 upload_time_estimation_init(0);
338 var req
= new XMLHttpRequest ();
339 req
.upload
.addEventListener ("progress", upload_progress
, false);
340 req
.addEventListener ("error", pop_failure
, false);
341 req
.addEventListener ("abort", pop_failure
, false);
342 req
.onreadystatechange
= function ()
344 if (req
.readyState
== 4 && req
.status
== 200)
346 var res
= req
.responseText
;
348 // if response starts with "Error" then show a failure
349 if (/^Error
/.test(res
))
355 res
= res
.split ("\n");
359 // convert time (local time + selected expiry date)
360 var localDatetime
= new Date();
361 if(!add_time_string_to_date(localDatetime
, time
))
363 pop_failure ('Error: Date can not be parsed');
366 expiryDate
= localDatetime
;
369 show_link (url
, res
[0], res
[1], res
[2], expiryDate
);
372 req
.open ("POST", url +
'script.php' , true);
374 var form
= new FormData();
375 form
.append ("file", file
);
377 form
.append ("time", time
);
379 form
.append ("key", password
);
381 form
.append ("one_time_download", '1');
382 if (upload_password
.length
> 0)
383 form
.append ("upload_password", upload_password
);
388 function check_html5_file_api ()
390 return window
.File
&& window
.FileReader
&& window
.FileList
&& window
.Blob
;
393 var async_global_transfered
= 0;
394 var async_global_url
= '';
395 var async_global_file
;
396 var async_global_ref
= '';
397 var async_global_max_size
= 0;
398 var async_global_time
;
399 var async_global_transfering
= 0;
401 function async_upload_start (url
, max_size
, file
, time
, password
, one_time
, upload_password
)
403 async_global_transfered
= 0;
404 async_global_url
= url
;
405 async_global_file
= file
;
406 async_global_max_size
= max_size
;
407 async_global_time
= time
;
409 var req
= new XMLHttpRequest ();
410 req
.addEventListener ("error", pop_failure
, false);
411 req
.addEventListener ("abort", pop_failure
, false);
412 req
.onreadystatechange
= function ()
414 if (req
.readyState
== 4 && req
.status
== 200)
416 var res
= req
.responseText
;
418 if (/^Error
/.test(res
))
424 res
= res
.split ("\n");
425 async_global_ref
= res
[0];
427 async_upload_push (code
);
430 req
.open ("POST", async_global_url +
'script.php?init_async' , true);
432 var form
= new FormData();
433 form
.append ("filename", async_global_file
.name
);
434 form
.append ("type", async_global_file
.type
);
436 form
.append ("time", time
);
438 form
.append ("key", password
);
440 form
.append ("one_time_download", '1');
441 if (upload_password
.length
> 0)
442 form
.append ("upload_password", upload_password
);
444 // Start time estimation
445 upload_time_estimation_init(async_global_file
.size
);
450 function async_upload_progress (e
)
452 if (e
== undefined || e
== null ||
!e
.lengthComputable
&& async_global_file
.size
!= 0)
455 // Compute percentage
456 var p
= Math
.round ((e
.loaded + async_global_transfered
) * 100 / (async_global_file
.size
));
459 p_str
= p
.toString() +
'%';
460 // Update estimation speed
461 upload_time_estimation_add(e
.loaded + async_global_transfered
);
463 var speed_str
= upload_time_estimation_speed_string();
464 speed_str
= upload_speed_refresh_limiter(speed_str
);
466 var time_str
= chrono_update(upload_time_estimation_time());
468 show_upload_progression (p_str
, speed_str
, time_str
);
471 function async_upload_push (code
)
473 if (async_global_transfered
== async_global_file
.size
)
475 hide_upload_progression ();
476 async_upload_end (code
);
479 var req
= new XMLHttpRequest ();
480 req
.upload
.addEventListener ("progress", async_upload_progress
, false);
481 req
.addEventListener ("error", pop_failure
, false);
482 req
.addEventListener ("abort", pop_failure
, false);
483 req
.onreadystatechange
= function ()
485 if (req
.readyState
== 4 && req
.status
== 200)
487 var res
= req
.responseText
;
489 if (/^Error
/.test(res
))
495 res
= res
.split ("\n");
497 async_global_transfered
= async_global_transfering
;
498 async_upload_push (code
);
501 req
.open ("POST", async_global_url +
'script.php?push_async' , true);
503 var chunk_size
= parseInt (async_global_max_size
* 0.50);
504 var start
= async_global_transfered
;
505 var end
= start + chunk_size
;
506 if (end
>= async_global_file
.size
)
507 end
= async_global_file
.size
;
508 var blob
= async_global_file
.slice (start
, end
);
509 async_global_transfering
= end
;
511 var form
= new FormData();
512 form
.append ("ref", async_global_ref
);
513 form
.append ("data", blob
);
514 form
.append ("code", code
);
518 function async_upload_end (code
)
520 var req
= new XMLHttpRequest ();
521 req
.addEventListener ("error", pop_failure
, false);
522 req
.addEventListener ("abort", pop_failure
, false);
523 req
.onreadystatechange
= function ()
525 if (req
.readyState
== 4 && req
.status
== 200)
527 var res
= req
.responseText
;
529 if (/^Error
/.test(res
))
535 res
= res
.split ("\n");
537 if (async_global_time
!= 'none')
539 // convert time (local time + selected expiry date)
540 var localDatetime
= new Date();
541 if(!add_time_string_to_date(localDatetime
, async_global_time
)) {
542 pop_failure ('Error: Date can not be parsed');
545 expiryDate
= localDatetime
;
548 show_link (async_global_url
, res
[0], res
[1], res
[2], expiryDate
);
551 req
.open ("POST", async_global_url +
'script.php?end_async' , true);
553 var form
= new FormData();
554 form
.append ("ref", async_global_ref
);
555 form
.append ("code", code
);
559 function upload (url
, max_size
)
561 if (check_html5_file_api ()
562 && document
.getElementById('file_select').files
[0].size
>= max_size
)
564 async_upload_start (url
,
566 document
.getElementById('file_select').files
[0],
567 document
.getElementById('select_time').value
,
568 document
.getElementById('input_key').value
,
569 document
.getElementById('one_time_download').checked
,
570 document
.getElementById('upload_password').value
576 document
.getElementById('file_select').files
[0],
577 document
.getElementById('select_time').value
,
578 document
.getElementById('input_key').value
,
579 document
.getElementById('one_time_download').checked
,
580 document
.getElementById('upload_password').value
585 var upload_time_estimation_total_size
= 42;
586 var upload_time_estimation_transfered_size
= 42;
587 var upload_time_estimation_transfered_date
= 42;
588 var upload_time_estimation_moving_average_speed
= 42;
590 function upload_time_estimation_init(total_size
)
592 upload_time_estimation_total_size
= total_size
;
593 upload_time_estimation_transfered_size
= 0;
594 upload_time_estimation_moving_average_speed
= 0;
596 upload_time_estimation_transfered_date
= d
.getTime();
599 function upload_time_estimation_add(total_transfered_size
)
601 // Let's compute the current speed
603 var speed
= upload_time_estimation_moving_average_speed
;
604 if (d
.getTime() - upload_time_estimation_transfered_date
!= 0)
605 speed
= (total_transfered_size
- upload_time_estimation_transfered_size
)
606 / (d
.getTime() - upload_time_estimation_transfered_date
);
607 // Let's compute moving average speed on 30 values
608 var m
= (upload_time_estimation_moving_average_speed
* 29 + speed
) / 30;
609 // Update global values
610 upload_time_estimation_transfered_size
= total_transfered_size
;
611 upload_time_estimation_transfered_date
= d
.getTime();
612 upload_time_estimation_moving_average_speed
= m
;
615 function upload_time_estimation_speed_string()
618 var s
= upload_time_estimation_moving_average_speed
* 1000;
626 else if (s
< 1000000)
628 res
= Math
.floor(s
/100) / 10;
633 res
= Math
.floor(s
/100000) / 10;
638 return res
.toString() +
' ' + scale
;
641 function milliseconds_to_time_string (milliseconds
)
643 function numberEnding (number
) {
644 return (number
> 1) ?
's' : '';
647 var temp
= Math
.floor(milliseconds
/ 1000);
648 var years
= Math
.floor(temp
/ 31536000);
650 return years +
' ' +
translate ('year') +
numberEnding(years
);
652 var days
= Math
.floor((temp %
= 31536000) / 86400);
654 return days +
' ' +
translate ('day') +
numberEnding(days
);
656 var hours
= Math
.floor((temp %
= 86400) / 3600);
658 return hours +
' ' +
translate ('hour') +
numberEnding(hours
);
660 var minutes
= Math
.floor((temp %
= 3600) / 60);
662 return minutes +
' ' +
translate ('minute') +
numberEnding(minutes
);
664 var seconds
= temp %
60;
666 return seconds +
' ' +
translate ('second') +
numberEnding(seconds
);
668 return translate ('less than a second');
671 function upload_time_estimation_time()
673 // Estimate remaining time
674 if (upload_time_estimation_moving_average_speed
== 0)
676 return (upload_time_estimation_total_size
- upload_time_estimation_transfered_size
)
677 / upload_time_estimation_moving_average_speed
;
680 var chrono_last_update
= 0;
681 var chrono_time_ms
= 0;
682 var chrono_time_ms_last_update
= 0;
683 function chrono_update(time_ms
)
687 // Don't update too often
688 if (d
.getTime() - chrono_last_update
< 3000 &&
689 chrono_time_ms_last_update
> 0)
690 chrono
= chrono_time_ms
;
693 chrono_last_update
= d
.getTime();
694 chrono_time_ms
= time_ms
;
696 chrono_time_ms_last_update
= d
.getTime();
699 // Adjust chrono for smooth estimation
700 chrono
= chrono
- (d
.getTime() - chrono_time_ms_last_update
);
702 // Let's update chronometer
705 time_str
= milliseconds_to_time_string (chrono
);
709 var upload_speed_refresh_limiter_last_update
= 0;
710 var upload_speed_refresh_limiter_last_value
= '';
711 function upload_speed_refresh_limiter(speed_str
)
714 if (d
.getTime() - upload_speed_refresh_limiter_last_update
> 1500)
716 upload_speed_refresh_limiter_last_value
= speed_str
;
717 upload_speed_refresh_limiter_last_update
= d
.getTime();
719 return upload_speed_refresh_limiter_last_value
;
723 document
.addEventListener('DOMContentLoaded', function(event
) {
724 // Search for all datetime fields and convert the time to local timezone
725 convertAllDatetimeFields();