PTH Skip upload warning

Skip the warning page generated when uploading a torrent without the 'source' option set

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         PTH Skip upload warning
// @version      0.74
// @description  Skip the warning page generated when uploading a torrent without the 'source' option set
// @author       Chameleon
// @include      http*://redacted.ch/upload.php*
// @include      http*://redacted.ch/torrents.php?id=*
// @include      http*://redacted.ch/forums.php?*threadid=3743*
// @grant        none
// @namespace https://greasyfork.org/users/87476
// ==/UserScript==

(function() {
  'use strict';

  debug("Start debug");
  var settings=getSettings();

  var wH=window.location.href;
  if(wH.indexOf('upload.php') != -1)
  {
    var h1s=document.getElementsByTagName('h1');
    debug("h1 count: "+h1s.length);
    debug("h1[1] text: "+h1s[1].innerHTML);
    debug("h1[1] == 'Warning': "+(h1s[1].innerHTML=='Warning'));
    if(h1s.length > 1 && h1s[1].innerHTML == 'Warning')
    {
      var link=document.getElementById('content').getElementsByTagName('a')[0].href;
      debug("link: "+link);
      if(settings.downloadTorrents)
      {
        var id=link.split('?id=')[1];
        window.localStorage.bypassWarning=JSON.stringify({id:id, downloaded:false});
      }
      window.location = link;
    }
  }
  else if(wH.indexOf('torrents.php') != -1)
  {
    var bypass=window.localStorage.bypassWarning;
    if(!bypass)
      return;
    bypass=JSON.parse(bypass);
    if(bypass.downloaded)
      return;
    if(window.location.href.indexOf(bypass.id) == -1)
      return;

    var username=document.getElementById('nav_userinfo').textContent.trim();

    var download=[];
    var torrentDetails=document.getElementsByClassName('torrentdetails');
    for(var i=0; i<torrentDetails.length; i++)
    {
      var t=torrentDetails[i];
      var user=t.getElementsByTagName('a')[0].innerHTML.trim();
      if(user != username)
        continue;
      var time=t.getElementsByTagName('span')[0].innerHTML;
      if(time.indexOf('Just now') == -1)
        continue;
      var id=parseInt(t.getAttribute('id').split('_')[1]);
      download.push(id);
    }
    /*var largestId=0;
    for(var i=0; i<torrentDetails.length; i++)
    {
      var t=torrentDetails[i];
      var id=parseInt(t.getAttribute('id').split('_')[1]);
      if(id > largestId)
        largestId=id;
    }
    document.getElementById('torrent'+largestId).getElementsByTagName('a')[0].click();*/

    downloadTorrents(download, 0);

    bypass.downloaded=true;
    window.localStorage.bypassWarning=JSON.stringify(bypass);
  }
  else if(wH.indexOf('threadid=3743') != -1)
    showSettings();
})();

function downloadTorrents(list, index)
{
  if(index >= list.length)
    return;

  var aLink=document.getElementById('torrent'+list[index]).getElementsByTagName('a')[0];
  //aLink.setAttribute('target', '_blank');
  aLink.click();
  debug("link "+index+": "+list[index]);
  window.setTimeout(downloadTorrents.bind(undefined, list, index+1), 500);
}

function showSettings()
{
  var div=document.getElementById('skipUploadWarningSettings');
  if(!div)
  {
    var before = document.getElementsByClassName('forum_post')[0];
    div = document.createElement('div');
    div.setAttribute('id', 'skipUploadWarningSettings');
    before.parentNode.insertBefore(div, before);
    div.setAttribute('style', 'width: 100%; text-align: center; padding-bottom: 10px;');
    div.setAttribute('class', 'box');
  }
  div.innerHTML = '<h2>Skip upload warning Settings</h2><br />';
  var settings = getSettings();

  var a=document.createElement('a');
  a.href='javascript:void(0);';
  a.innerHTML = 'Download torrents: '+(settings.downloadTorrents ? 'On':'Off');
  a.addEventListener('click', changeSettings.bind(undefined, a, div), false);
  div.appendChild(a);
  div.appendChild(document.createElement('br'));

  var a=document.createElement('a');
  a.href='javascript:void(0);';
  a.innerHTML = 'Debug: '+(settings.debug ? 'On':'Off');
  a.addEventListener('click', changeSettings.bind(undefined, a, div), false);
  div.appendChild(a);
  div.appendChild(document.createElement('br'));
}

function debug(text)
{
  var settings=getSettings();
  if(!settings.debug)
    return;

  var debugDiv=document.getElementById('ChameleonDebug');
  if(!debugDiv)
  {
    debugDiv=document.createElement('div');
    document.body.appendChild(debugDiv);
    debugDiv.setAttribute('id', 'ChameleonDebug');
    debugDiv.setAttribute('style', 'position: absolute; top: 50px; left: 50px; width: '+(document.body.clientWidth-100)+'px; background: rgba(0,0,0,0.7); text-align: center; font-size: 2em;');
  }
  var d=document.createElement('div');
  d.innerHTML=text;
  debugDiv.appendChild(d);
}

function changeSettings(a, div)
{
  var settings=getSettings();
  var as=div.getElementsByTagName('a');
  if(a == as[0])
  {
    if(as[0].innerHTML.indexOf('Off') != -1) 
    {
      settings.downloadTorrents = true;
    }
    else
      settings.downloadTorrents = false;
  }
  if(a == as[1])
  {
    if(as[1].innerHTML.indexOf('Off') != -1) 
    {
      settings.debug = true;
    }
    else
      settings.debug = false;
  }

  window.localStorage.skipUploadWarningSettings = JSON.stringify(settings);
  showSettings();
}

function getSettings()
{
  var settings = window.localStorage.skipUploadWarningSettings;
  if(!settings)
  {
    settings = {downloadTorrents:true};
  }
  else
    settings = JSON.parse(settings);
  return settings;
}