file_size.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. */
  18. $(document).ready(function(){
  19. var file = document.getElementById('file');
  20. var uploaded = parseInt(document.getElementById('uploaded').value);
  21. var upload_limit = parseInt(document.getElementById('upload_limit').value);
  22. var max_file_size = parseInt(document.getElementById('max_file_size').value);
  23. file.onchange = function() {
  24. var file_size = file.files[0].size / (1024.0 * 1024);
  25. if (file_size >= max_file_size) {
  26. $('#file').after('<p id="file_size_error" class="form_field_error">Sorry, the file size is too big.</p>');
  27. }
  28. else if (document.getElementById('file_size_error')) {
  29. $('#file_size_error').hide();
  30. }
  31. if (upload_limit) {
  32. if ( uploaded + file_size >= upload_limit) {
  33. $('#file').after('<p id="upload_limit_error" class="form_field_error">Sorry, uploading this file will put you over your upload limit.</p>');
  34. }
  35. else if (document.getElementById('upload_limit_error')) {
  36. $('#upload_limit_error').hide();
  37. console.log(file_size >= max_file_size);
  38. }
  39. }
  40. };
  41. });