Fix #5398 and #5395 - Fix tests failing due to problem creating connection for alembic
[larjonas-mediagoblin.git] / mediagoblin / static / js / file_size.js
blob2238ef893debe51644cd3651c2d5f7aa4789f25c
1 /**
2  * GNU MediaGoblin -- federated, autonomous media hosting
3  * Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
19 $(document).ready(function(){
20     var file = document.getElementById('file');
21     var uploaded = parseInt(document.getElementById('uploaded').value);
22     var upload_limit = parseInt(document.getElementById('upload_limit').value);
23     var max_file_size = parseInt(document.getElementById('max_file_size').value);
25     file.onchange = function() {
26         var file_size = file.files[0].size / (1024.0 * 1024);
28         if (file_size >= max_file_size) {
29             $('#file').after('<p id="file_size_error" class="form_field_error">Sorry, the file size is too big.</p>'); 
30         }
31         else if (document.getElementById('file_size_error')) {
32             $('#file_size_error').hide();
33         }
35         if (upload_limit) {
36             if ( uploaded + file_size >= upload_limit) {
37                 $('#file').after('<p id="upload_limit_error" class="form_field_error">Sorry, uploading this file will put you over your upload limit.</p>');
38             }
39             else if (document.getElementById('upload_limit_error')) {
40                 $('#upload_limit_error').hide();
41             console.log(file_size >= max_file_size);
42             }
43         }
44     };
45 });