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');
29 var web_root
= "<?php echo $cfg['web_root']; ?>";
31 var lang_array
= <?php
echo json_lang_generator(null); ?
>;
32 var lang_array_fallback
= <?php
echo json_lang_generator("en"); ?
>;
34 function translate (expr
) {
35 if (lang_array
.hasOwnProperty(expr
)) {
36 var e
= lang_array
[expr
];
40 if (lang_array_fallback
.hasOwnProperty(expr
)) {
41 var e
= lang_array_fallback
[expr
];
45 return "FIXME: " + expr
;
48 function isEmpty(str
) {
49 return (!str ||
0 === str
.length
);
52 // Extend date object with format method
53 Date
.prototype
.format
= function(format
) {
54 format
= format ||
'YYYY-MM-DD hh:mm';
56 var zeropad
= function(number
, length
) {
57 number
= number
.toString();
59 while(number
.length
< length
)
60 number
= '0' + number
;
64 YYYY
: this
.getFullYear(),
65 MM
: zeropad(this
.getMonth() +
1),
66 DD
: zeropad(this
.getDate()),
67 hh
: zeropad(this
.getHours()),
68 mm
: zeropad(this
.getMinutes()),
71 sign
= (localDate
.getTimezoneOffset() > 0) ?
'-' : '+';
72 offset
= Math
.abs(localDate
.getTimezoneOffset());
73 hours
= zeropad(Math
.floor(offset
/ 60));
74 minutes
= zeropad(offset %
60);
75 return sign + hours +
":" + minutes
;
78 pattern
= '(' +
Object.keys(formats
).join(')|(') +
')';
80 return format
.replace(new RegExp(pattern
, 'g'), function(match
) {
81 return formats
[match
];
85 function dateFromUtcString(datestring
) {
86 // matches »YYYY-MM-DD hh:mm«
87 var m
= datestring
.match(/(\d+
)-(\d+
)-(\d+
)\s+
(\d+
):(\d+
)/);
88 return new Date(Date
.UTC(+m
[1], +m
[2] - 1, +m
[3], +m
[4], +m
[5], 0));
91 function dateFromUtcTimestamp(datetimestamp
) {
92 return new Date(parseInt(datetimestamp
) * 1000)
95 function dateToUtcString(datelocal
) {
97 datelocal
.getUTCFullYear(),
98 datelocal
.getUTCMonth(),
99 datelocal
.getUTCDate(),
100 datelocal
.getUTCHours(),
101 datelocal
.getUTCMinutes(),
102 datelocal
.getUTCSeconds()
106 function dateToUtcTimestamp(datelocal
) {
108 datelocal
.getUTCFullYear(),
109 datelocal
.getUTCMonth(),
110 datelocal
.getUTCDate(),
111 datelocal
.getUTCHours(),
112 datelocal
.getUTCMinutes(),
113 datelocal
.getUTCSeconds()
117 function convertAllDatetimeFields() {
118 datefields
= document
.getElementsByClassName('datetime')
119 for(var i
=0; i
<datefields
.length
; i++
) {
120 dateUTC
= datefields
[i
].getAttribute('data-datetime');
121 datefields
[i
].setAttribute('title', dateUTC +
' (GMT)');
122 datefields
[i
].innerHTML
= dateFromUtcString(dateUTC
).format('YYYY-MM-DD hh:mm (GMT O)');
126 function show_link (reference
, delete_code
, crypt_key
, date
)
129 document
.getElementById('uploading').style
.display
= 'none';
130 document
.getElementById('upload').style
.display
= 'none';
131 document
.getElementById('upload_finished').style
.display
= '';
132 document
.title
= "100% - <?php echo empty($cfg['title']) ? 'Jirafeau' : $cfg['title']; ?>";
135 var download_link_href
= 'f.php?h=' + reference
;
136 if (crypt_key
.length
> 0)
138 download_link_href +
= '&k=' + crypt_key
;
140 if (!!document
.getElementById('upload_finished_download_page'))
142 document
.getElementById('upload_link').href
= download_link_href
;
143 document
.getElementById('upload_link_text').innerHTML
= web_root + download_link_href
;
147 var filename
= document
.getElementById('file_select').files
[0].name
;
148 var b
= encodeURIComponent("<?php echo t("DL
"); ?> \"" + filename +
"\":") +
"%0D";
149 b +
= encodeURIComponent(web_root + download_link_href
) +
"%0D";
150 if (false == isEmpty(date
))
152 b +
= "%0D" +
encodeURIComponent("<?php echo t("VALID_UNTIL
"); ?>: " + date
.format('YYYY-MM-DD hh:mm (GMT O)')) +
"%0D";
153 document
.getElementById('upload_link_email').href
= "mailto:?body=" + b +
"&subject=" +
encodeURIComponent(filename
);
157 var delete_link_href
= 'f.php?h=' + reference +
'&d=' + delete_code
;
158 document
.getElementById('delete_link').href
= delete_link_href
;
159 document
.getElementById('delete_link_text').innerHTML
= web_root + delete_link_href
;
164 document
.getElementById('date').style
.display
= 'none';
167 document
.getElementById('date').innerHTML
= '<span class="datetime" title="'
168 +
dateToUtcString(date
) +
' (GMT)">'
169 + date
.format('YYYY-MM-DD hh:mm (GMT O)')
171 document
.getElementById('date').style
.display
= '';
174 // Preview link (if allowed)
175 if (!!document
.getElementById('preview_link'))
177 document
.getElementById('upload_finished_preview').style
.display
= 'none';
178 var preview_link_href
= 'f.php?h=' + reference +
'&p=1';
179 if (crypt_key
.length
> 0)
181 preview_link_href +
= '&k=' + crypt_key
;
184 // Test if content can be previewed
185 type
= document
.getElementById('file_select').files
[0].type
;
186 if (type
.indexOf("image") > -1 ||
187 type
.indexOf("audio") > -1 ||
188 type
.indexOf("text") > -1 ||
189 type
.indexOf("video") > -1)
191 document
.getElementById('preview_link').href
= preview_link_href
;
192 document
.getElementById('preview_link_text').innerHTML
= web_root + preview_link_href
;
193 document
.getElementById('upload_finished_preview').style
.display
= '';
197 // Direct download link
198 var direct_download_link_href
= 'f.php?h=' + reference +
'&d=1';
199 if (crypt_key
.length
> 0)
201 direct_download_link_href +
= '&k=' + crypt_key
;
203 document
.getElementById('direct_link').href
= direct_download_link_href
;
204 document
.getElementById('direct_link_text').innerHTML
= web_root + direct_download_link_href
;
206 // Hide preview and direct download link if password is set
207 if (document
.getElementById('input_key').value
.length
> 0)
209 if (!!document
.getElementById('preview_link'))
210 document
.getElementById('upload_finished_preview').style
.display
= 'none';
211 document
.getElementById('upload_direct_download').style
.display
= 'none';
215 function show_upload_progression (percentage
, speed
, time_left
)
217 document
.getElementById('uploaded_percentage').innerHTML
= percentage
;
218 document
.getElementById('uploaded_speed').innerHTML
= speed
;
219 document
.getElementById('uploaded_time').innerHTML
= time_left
;
220 document
.title
= percentage +
" - <?php echo empty($cfg['title']) ? 'Jirafeau' : $cfg['title']; ?>";
223 function hide_upload_progression ()
225 document
.getElementById('uploaded_percentage').style
.display
= 'none';
226 document
.getElementById('uploaded_speed').style
.display
= 'none';
227 document
.getElementById('uploaded_time').style
.display
= 'none';
228 document
.title
= "<?php echo empty($cfg['title']) ? 'Jirafeau' : $cfg['title']; ?>";
231 function upload_progress (e
)
233 if (e
== undefined || e
== null ||
!e
.lengthComputable
)
236 // Init time estimation if needed
237 if (upload_time_estimation_total_size
== 0)
238 upload_time_estimation_total_size
= e
.total
;
240 // Compute percentage
241 var p
= Math
.round (e
.loaded
* 100 / e
.total
);
244 p_str
= p
.toString() +
'%';
245 // Update estimation speed
246 upload_time_estimation_add(e
.loaded
);
248 var speed_str
= upload_time_estimation_speed_string();
249 speed_str
= upload_speed_refresh_limiter(speed_str
);
251 var time_str
= chrono_update(upload_time_estimation_time());
253 show_upload_progression (p_str
, speed_str
, time_str
);
256 function control_selected_file_size(max_size
, error_str
)
258 f_size
= document
.getElementById('file_select').files
[0].size
;
259 if (max_size
> 0 && f_size
> max_size
* 1024 * 1024)
261 pop_failure(error_str
);
262 document
.getElementById('send').style
.display
= 'none';
266 // add class to restyle upload form in next step
267 document
.getElementById('upload').setAttribute('class', 'file-selected');
269 document
.getElementById('options').style
.display
= 'block';
270 document
.getElementById('send').style
.display
= 'block';
271 document
.getElementById('error_pop').style
.display
= 'none';
272 document
.getElementById('send').focus();
276 function pop_failure (e
)
278 var text
= "An error occured";
279 if (typeof e
!== 'undefined')
281 text
= "<p>" + text +
"</p>";
282 document
.getElementById('error_pop').innerHTML
= e
;
284 document
.getElementById('uploading').style
.display
= 'none';
285 document
.getElementById('error_pop').style
.display
= '';
286 document
.getElementById('upload').style
.display
= '';
287 document
.getElementById('send').style
.display
= '';
290 function add_time_string_to_date(d
, time
)
292 if(typeof(d
) != 'object' ||
!(d
instanceof Date
))
297 if (time
== 'minute')
299 d
.setSeconds (d
.getSeconds() +
60);
304 d
.setSeconds (d
.getSeconds() +
3600);
309 d
.setSeconds (d
.getSeconds() +
86400);
314 d
.setSeconds (d
.getSeconds() +
604800);
319 d
.setSeconds (d
.getSeconds() +
2419200);
322 if (time
== 'quarter')
324 d
.setSeconds (d
.getSeconds() +
7257600);
329 d
.setSeconds (d
.getSeconds() +
29030400);
335 function classic_upload (file
, time
, password
, one_time
, upload_password
)
337 // Delay time estimation init as we can't have file size
338 upload_time_estimation_init(0);
340 var req
= new XMLHttpRequest ();
341 req
.upload
.addEventListener ("progress", upload_progress
, false);
342 req
.addEventListener ("error", pop_failure
, false);
343 req
.addEventListener ("abort", pop_failure
, false);
344 req
.onreadystatechange
= function ()
346 if (req
.readyState
== 4 && req
.status
== 200)
348 var res
= req
.responseText
;
350 // if response starts with "Error" then show a failure
351 if (/^Error
/.test(res
))
357 res
= res
.split ("\n");
361 // convert time (local time + selected expiry date)
362 var localDatetime
= new Date();
363 if(!add_time_string_to_date(localDatetime
, time
))
365 pop_failure ('Error: Date can not be parsed');
368 expiryDate
= localDatetime
;
371 show_link (res
[0], res
[1], res
[2], expiryDate
);
374 req
.open ("POST", 'script.php' , true);
376 var form
= new FormData();
377 form
.append ("file", file
);
379 form
.append ("time", time
);
381 form
.append ("key", password
);
383 form
.append ("one_time_download", '1');
384 if (upload_password
.length
> 0)
385 form
.append ("upload_password", upload_password
);
390 function check_html5_file_api ()
392 return window
.File
&& window
.FileReader
&& window
.FileList
&& window
.Blob
;
395 var async_global_transfered
= 0;
396 var async_global_file
;
397 var async_global_ref
= '';
398 var async_global_max_size
= 0;
399 var async_global_time
;
400 var async_global_transfering
= 0;
402 function async_upload_start (max_size
, file
, time
, password
, one_time
, upload_password
)
404 async_global_transfered
= 0;
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", '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", '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 (res
[0], res
[1], res
[2], expiryDate
);
551 req
.open ("POST", '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 (max_size
)
561 if (check_html5_file_api ()
562 && document
.getElementById('file_select').files
[0].size
>= max_size
)
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) ?
translate ('PLURAL_ENDING') : '';
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_1_SEC');
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();
728 // Add copy event listeners
729 function copyLinkToClipboard(link_id
) {
730 var focus
= document
.activeElement
;
731 var e
= document
.getElementById(link_id
);
733 var tmp
= document
.createElement("textarea");
734 document
.body
.appendChild(tmp
);
735 tmp
.textContent
= e
.href
;
737 tmp
.setSelectionRange(0, tmp
.value
.length
);
738 document
.execCommand("copy");
739 document
.body
.removeChild(tmp
);
744 function addCopyListener(button_id
, link_id
) {
745 document
.getElementById(button_id
)
746 .addEventListener("click", function() {
747 copyLinkToClipboard(link_id
);});