BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

validate_upload.js 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. $(() => {
  3. $("#post").click(e => {
  4. let hard_error = m => {
  5. if (e.isDefaultPrevented()) return
  6. alert(m)
  7. e.preventDefault()
  8. }
  9. let soft_error = m => {
  10. if (e.isDefaultPrevented()) return
  11. if (!confirm(`${m}\n\nPress OK to upload anyway`)) {
  12. e.preventDefault()
  13. }
  14. }
  15. if (!$('#file').raw().value) {
  16. hard_error('No torrent file is selected')
  17. }
  18. if ($('#album_desc').raw().value.length < 10) {
  19. hard_error('The group description is too short')
  20. }
  21. if ($('#file').raw().value.slice(-8).toLowerCase() != '.torrent') {
  22. soft_error('The file selected does not appear to be a .torrent file')
  23. }
  24. let mi = $('#mediainfo').raw().value
  25. if (mi && (!mi.includes('General') || (!mi.includes('Video') && !mi.includes('Audio')))) {
  26. soft_error('Your MediaInfo does not appear to be from a valid MediaInfo utility')
  27. }
  28. if (!$('#image').raw().value) {
  29. soft_error('You did not include a cover image, which is mandatory if one exists')
  30. }
  31. if ($('#media_tr select').raw().value == 'DVD' && (['720p','1080i','1080p','4K'].includes($('#ressel').raw().value) || +$('#resolution').raw().value.split('x')[1] > 576)) {
  32. soft_error('Your selected resolution is too high to be a DVD. Are you sure the media type should be DVD and not WEB?')
  33. }
  34. })
  35. $('#tags').on('blur', e => $('#tags').raw().value = $('#tags').raw().value.split(',').map(t=>t.trim()).filter(t=>t).join(', '))
  36. })
  37. */