FapFun

Userscript for Motherless.com. Provide direct links for pictures and video files. Download all Images on one site with DownThemAll(firefox) or Download Master(Chrome).

Versione datata 14/03/2022. Vedi la nuova versione l'ultima versione.

  1. // ==UserScript==
  2. // @name FapFun
  3. // @namespace https://greasyfork.org/scripts/7156-fapfun/code/FapFun.user.js
  4. // @description Userscript for Motherless.com. Provide direct links for pictures and video files. Download all Images on one site with DownThemAll(firefox) or Download Master(Chrome).
  5. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js
  6. // @include htt*://motherless.com*
  7. // @version 4.9
  8. // @grant GM.xmlHttpRequest
  9. // @grant GM.setClipboard
  10. // @grant GM.setValue
  11. // @grant GM.getValue
  12. // @grant GM.deleteValue
  13. // @grant UnsafeWindow
  14. // @author sodomgomora
  15. // @license GPLv3
  16. // ==/UserScript==
  17. // Some of this script based on Pornifier2 script by Jesscold
  18. // This script is realesed under GPL v3
  19. // Globals
  20. var debug = false;
  21. var images = [];
  22. var ids = [];
  23. var imagesUrl = [];
  24. var siteurls = [];
  25. var thisurl = '';
  26. var protocol = document.location.protocol;
  27. // Start the magic
  28. main();
  29. function fapLog(log) {
  30. if (debug === true) {
  31. console.log(log);
  32. return;
  33. }
  34. return;
  35. }
  36. function main() {
  37. fapLog('entered main');
  38. fapLog(protocol);
  39. var turl = thisurl = window.location.href;
  40. var casesn = turl.indexOf('/',7);
  41. var cases = turl.substring(casesn + 1, casesn + 2);
  42. fapLog('main: m= ' + cases + ": :" + turl);
  43. if (cases == "m") {
  44. var uploads = document.createElement('input');
  45. uploads.type = 'button';
  46. uploads.value = 'Uploads';
  47. uploads.name = 'useruploads';
  48. //fapLog('main: entered m= ' + turl);
  49. uploads.onclick = uploss;
  50. uploads.setAttribute('style', 'font-size:18px;position:fixed;top:160px;right:20px;z-index:10000;');
  51. document.body.appendChild(uploads);
  52. }
  53. var inputName = document.createElement('input');
  54. inputName.type = 'text';
  55. inputName.value = '';
  56. inputName.name = 'newname';
  57. inputName.id = 'newname';
  58. //inputName.onclick = getImageList;
  59. inputName.setAttribute('style', 'font-size:16px;position:fixed;top:60px;right:20px;z-index:10000;');
  60. document.body.appendChild(inputName);
  61. var inputList = document.createElement('input');
  62. inputList.type = 'button';
  63. inputList.value = 'Images URLs';
  64. inputList.name = 'imagesurl';
  65. inputList.onclick = getImageList;
  66. inputList.setAttribute('style', 'font-size:18px;position:fixed;top:100px;right:20px;z-index:10000;');
  67. document.body.appendChild(inputList);
  68. addSinglePreview();
  69. if (cases == "u"){
  70. var t = turl.lastIndexOf("/");
  71. var tt = turl.lastIndexOf("?");
  72. if (tt < 1){
  73. tt = turl.length;
  74. }
  75. document.getElementById("newname").value = turl.substring(t+1, tt);
  76. }
  77. checkForPaginationLinks(function (hasOne) {
  78. fapLog('main: haseOne= ' + hasOne);
  79. if (hasOne > 0) {
  80. var inputAllImages = document.createElement('input');
  81. inputAllImages.type = 'button';
  82. inputAllImages.value = 'Get all Images';
  83. inputAllImages.name = 'getallimages';
  84. inputAllImages.onclick = getAllImages;
  85. inputAllImages.setAttribute('style', 'font-size:18px;position:fixed;top:140px;right:20px;z-index:10000;');
  86. document.body.appendChild(inputAllImages);
  87. }
  88. return;
  89. });
  90. return;
  91. }
  92.  
  93. function uploss() {
  94. //alert("Hello! I am an alert box!");
  95. var turl = window.location.href;
  96. var newurl = turl.replace("/m/","/u/");
  97. window.location = newurl;
  98. //return;
  99. }
  100.  
  101. function addResetButton() {
  102. var resetButton = document.createElement('input');
  103. resetButton.type = 'button';
  104. resetButton.value = 'Reset';
  105. resetButton.name = 'deletevalue';
  106. resetButton.onclick = deleteGMValue;
  107. resetButton.setAttribute('style', 'font-size:18px;position:fixed;top:220px;right:20px;z-index:10000;');
  108. document.body.appendChild(resetButton);
  109. return;
  110. }
  111. function checkForPaginationLinks(cb) {
  112. var ret = '';
  113. ret = $('.pagination_link').contents().text();
  114. fapLog('checkForPaginationLinks: entered!');
  115. fapLog('checkForPaginationLinks: ret= ' + ret);
  116. if (ret === '') {
  117. cb(0);
  118. return;
  119. } else {
  120. cb(1);
  121. return;
  122. }
  123. }
  124. //----- Button onclick functions -----
  125.  
  126. function deleteGMValue() {
  127. fapLog('deleteGMValue: thisurl= ' + thisurl);
  128. GM.deleteValue(thisurl);
  129. $('input[name*=\'deletevalue\']').remove();
  130. $('input[name*=\'stopvalue\']').remove();
  131. }
  132. function getAllImages() {
  133. var href = '';
  134. var lasttmp = 0;
  135. ids = [
  136. ];
  137. href = window.location.href;
  138. href = href.replace(/^(http|https):\/\//i, '');
  139. fapLog('getAllImages: href= ' + href);
  140. var url = getUrl(href);
  141. if (GM.getValue(url.allsites) == thisurl) {
  142. fapLog('getAllImages: was processed earlyer!');
  143. fapLog(GM.getValue(url.allsites));
  144. addResetButton();
  145. displayOverlay(imagesUrl, 'lasti', url.allsites);
  146. thisurl = url.allsites;
  147. return;
  148. }
  149. thisurl = url.allsites;
  150. sneakyXHR(url.onesite, function (src) {
  151. fapLog('getAllImages: callback from sneakyXHR = ' + src);
  152. var urlwithoutpagenumber = url.onesite.substring(0, url.onesite.length - 1);
  153. $firstids = $('<div>' + src + '</div');
  154. $firstsite = $('<div>' + src + '</div').find('.pagination_link a');
  155. fapLog($firstsite);
  156. $firstsite.each(function () {
  157. var tmp = parseInt($(this).text());
  158. if (tmp > lasttmp) {
  159. lasttmp = tmp;
  160. }
  161. });
  162. var headers = {
  163. 'Accept': 'text/xml',
  164. 'Range': 'bytes=0-300'
  165. };
  166. //load last paginationsite if last is realy true
  167. GM.xmlHttpRequest({
  168. method: 'get',
  169. 'url': urlwithoutpagenumber + lasttmp,
  170. headers: $.extend({
  171. }, {
  172. 'User-agent': 'Mozilla/4.0',
  173. 'Accept': 'text/xml',
  174. 'Range': 'bytes=0-300',
  175. 'Cookie': document.cookie
  176. }, headers || {
  177. }),
  178. onload: function (responseDetails) {
  179. var lastsitetmp = 1;
  180. var text = responseDetails.responseText;
  181. $lastsite = $('<div>' + text + '</div').find('.pagination_link a');
  182. fapLog($lastsite);
  183. $lastsite.each(function () {
  184. var tmp = parseInt($(this).text());
  185. if (tmp > lastsitetmp) {
  186. lastsitetmp = tmp;
  187. }
  188. });
  189. fapLog('getAllImages: lasttmp= ' + lasttmp + ' lastsitetmp=' + lastsitetmp);
  190. if (lasttmp < lastsitetmp) {
  191. lasttmp = lastsitetmp;
  192. }
  193. $test = $firstids.find('img[src^="' + protocol + '//cdn5-thumbs.motherlessmedia.com/thumbs/"]');
  194. $test.each(function () {
  195. try {
  196. var id = $(this).attr('data-strip-src').match('thumbs/([^?]+)');
  197. }
  198. catch (err) {
  199. return;
  200. }
  201. ids.push(id[1]);
  202. });
  203. fapLog('getAllImages: lasttmp= ' + lasttmp);
  204. //paginationsite shown but has no link
  205. if (lasttmp == 0) {
  206. getImages('getallimages', ids);
  207. return;
  208. }
  209. var urlwithoutpagenumber = url.onesite.substring(0, url.onesite.length - 1);
  210. for (var i = 2; i < lasttmp + 1; i++) {
  211. var lenght = siteurls.push(urlwithoutpagenumber + i);
  212. }
  213. fapLog('getAllImages: siteURLs= ' + siteurls);
  214. addStop();
  215. parralelizeTask(siteurls, loopGetSites, 'getallimages', function () {
  216. getImages('getallimages', ids);
  217. ids = [];
  218. return;
  219. });
  220. }
  221. });
  222. }, 'get', {
  223. 'Accept': 'text/xml',
  224. 'Range': 'bytes=0-300' //grab first 3k
  225. });
  226. return;
  227. }
  228. // retrun URLs for user,group,galleries and search page
  229. function getUrl(href) {
  230. var url = '';
  231. var urlall = '';
  232. var parthref = '';
  233. var n = href.indexOf('?');
  234. if (n != -1) {
  235. parthref = href.substring(0, n);
  236. } else {
  237. parthref = href;
  238. }
  239. fapLog('getUrl: parthref= ' + parthref);
  240. var casesn = parthref.indexOf('/');
  241. var cases = parthref.substring(casesn + 1, casesn + 2);
  242. fapLog('getUrl: cases= ' + cases);
  243. switch (cases) {
  244. case 'G':
  245. var gup = parthref.substring(casesn + 3, parthref.lenght);
  246. fapLog('getUrl: gup= ' + gup);
  247. url = protocol +'//motherless.com/GI' + gup + '?page=1';
  248. urlall = protocol +'//motherless.com/GI' + gup;
  249. break;
  250. case 'g':
  251. var g = parthref.substring(casesn + 3, parthref.lenght);
  252. fapLog('getUrl: g= ' + g);
  253. url = protocol +'//motherless.com/gi' + g + '?page=1';
  254. urlall = protocol +'//motherless.com/gi' + g;
  255. break;
  256. case 'u':
  257. var u = parthref.substring(casesn, parthref.lenght);
  258. fapLog('getUrl: u= ' + u);
  259. url = protocol +'//motherless.com' + u + '?t=i&page=1';
  260. urlall = protocol +'//motherless.com' + u;
  261. break;
  262. case 't':
  263. var t = parthref.substring(casesn, parthref.lenght);
  264. fapLog('getUrl: t= ' + t);
  265. url = protocol +'//motherless.com' + t + '?range=0&size=0&sort=relevance&page=1';
  266. urlall = protocol +'//motherless.com' + t;
  267. break;
  268. }
  269. return {
  270. onesite: url,
  271. allsites: urlall
  272. };
  273. }
  274. function getImageList() {
  275. fapLog('getImageList: pressed');
  276. thisurl = window.location.href;
  277. if (thisurl.indexOf('?') == -1) {
  278. thisurl = thisurl + '?page=1';
  279. }
  280. //if (GM.getValue(thisurl) != undefined) {
  281. // addResetButton();
  282. // displayOverlay(data = [], 'lasti', thisurl);
  283. // return false;
  284. //}
  285. getImages('imagesurl', images);
  286. return;
  287. }
  288. function getVideoUrl() {
  289. alert('not jet implemented!');
  290. return;
  291. }
  292.  
  293. // Get url for full image and add url under thumbnail
  294.  
  295. function addSinglePreview() {
  296. var data = [];
  297. var i = 0;
  298. var imgs = $('img[src^="' + protocol + '//cdn5-thumbs.motherlessmedia.com/thumbs/"]');
  299. if (typeof unsafeWindow.__fileurl != "undefined") {
  300. fapLog('Script url found: ' + unsafeWindow.__fileurl);
  301. var $wrap = $('.media-action-networks');
  302. fapLog('TEst' + $wrap.toSource());
  303. var videourl = $('<strong>Video URL: </strong><a href=\'' + unsafeWindow.__fileurl + '\' class=\'pop\'>Download</a>');
  304. $wrap.after(videourl);
  305. }
  306. fapLog('image urls found: ' + imgs.length);
  307. imgs.each(function () {
  308. var $wrap = $(this);
  309. var $a = $wrap.closest('a');
  310. var vid = $wrap.attr('src').match('thumbs/([^.]+)');
  311. // test for video preview and not an image
  312. var vlink = vid[1];
  313. var n = vlink.indexOf('-');
  314. fapLog('vlink: ' + vlink);
  315. const regex = new RegExp(/-[s]/i);
  316. if (regex.test(vlink)) {
  317. var videoClicky = $('<a href=\'javascript;\' class=\'p2-single-preview\'><font color="#bb00ff" size="4">View Video</font></a>');
  318. $a.after(videoClicky);
  319. var href = $a.attr('href');
  320. fapLog("HREF video: " + href);
  321. if (typeof href == 'undefined') return;
  322. href = href.match(/\.com\/(\w)(\w+)/) ? [
  323. RegExp.$1,
  324. RegExp.$2
  325. ] : false;
  326. videoClicky.click(function (e, single) {
  327. var $this = $(this);
  328. //$this.text('loading...');
  329. var id = $wrap.attr('data-strip-src').match('thumbs/([^.]+)');
  330. var vl = id[1];
  331. var n = vl.indexOf('-');
  332. id[1] = vl.substring(0, n);
  333. fapLog('addSinglePreview: found url for video: ' + id[1]);
  334. //if (!id) {
  335. // $this.text('cant load :P');
  336. // return;
  337. //}
  338. //var timer = setTimeout(function () {
  339. // $this.text('cant load :P');
  340. //}, 8000);
  341. data[0] = {url: protocol + "//cdn5-videos.motherlessmedia.com/videos/" + id[1] +".mp4?fs=opencloud"}
  342. fapLog('addSinglePreview: video src: ' + data.toString());
  343. displayOverlay(data, 'video');
  344. //$this.text('View Video');
  345. //clearTimeout(timer);
  346. return false;
  347. });
  348. }
  349. else {
  350. try {
  351. var id = $wrap.attr('data-strip-src').match('thumbs/([^?]+)');
  352. }
  353. catch (err) {
  354. fapLog(err.message);
  355. return;
  356. }
  357. images[i] = id[1];
  358. i++;
  359. fapLog('fill images: image=' + images[i - 1] + ' index=' + i);
  360. var imageClicky = $('<a href=\'javascript;\' class=\'p2-single-preview\'><font color="#5500ff" size="4">View</font></a>');
  361. $a.after(imageClicky);
  362. href = $a.attr('href');
  363. fapLog("HREF image: " + href);
  364. if (typeof href == 'undefined') return;
  365. href = href.match(/\.com\/(\w)(\w+)/) ? [
  366. RegExp.$1,
  367. RegExp.$2
  368. ] : false;
  369. imageClicky.click(function (e, single) {
  370. var $this = $(this);
  371. //$this.text('loading...');
  372. fapLog('found url for image: ' + id[1]);
  373. //if (!id) {
  374. // $this.text('cant load :P');
  375. // return;
  376. //}
  377. //var timer = setTimeout(function () {
  378. // $this.text('cant load :P');
  379. //}, 8000);
  380. data[0] = {url: protocol + "//cdn5-images.motherlessmedia.com/images/" + id[1] +"?fs=opencloud"}
  381. fapLog('addSinglePreview: image src: ' + data.toString());
  382. displayOverlay(data, 'image');
  383. //$this.text('View');
  384. //clearTimeout(timer);
  385. return false;
  386. });
  387. }
  388. });
  389. }
  390.  
  391. function getImages(buttonname, arrimg)
  392. {
  393. fapLog('getImagesJPG: arrimg.length=' + arrimg.length);
  394. fapLog(arrimg);
  395. $button = $('input[name*=\'' + buttonname + '\']');
  396. $button.val('working...');
  397. arrimg.forEach( function (value) {
  398. imagesUrl.push(protocol + "//cdn5-images.motherlessmedia.com/images/" + value +"?fs=opencloud");
  399. });
  400. displayOverlay(imagesUrl, 'images', thisurl);
  401. $('input[name*=\'stopvalue\']').remove();
  402. return;
  403. }
  404.  
  405. function sneakyXHR(url, cb, method, headers) {
  406. method = method || 'GET';
  407. fapLog('sneaky requesting: ' + url);
  408. setTimeout(function () {
  409. GM.xmlHttpRequest({
  410. method: method,
  411. url: url,
  412. headers: $.extend({
  413. }, {
  414. 'User-agent': 'Mozilla/4.0',
  415. 'Accept': 'text/xml',
  416. 'Range': 'bytes=0-300',
  417. 'Cookie': document.cookie
  418. }, headers || {
  419. }),
  420. onload: function (responseDetails) {
  421. var text = responseDetails.responseText;
  422. cb(text, responseDetails);
  423. }
  424. });
  425. }, 1);
  426. return;
  427. }
  428.  
  429. //-- handler for Overlay (jquery)
  430.  
  431. function removeOverlay() {
  432. $('#overlay').remove();
  433. return;
  434. }
  435. // show the full image as overlay and shrink it to screen resolution
  436.  
  437. function displayOverlay(data, type, url) {
  438. var mywidht = window.innerWidth;
  439. var myheight = window.innerHeight;
  440. var html = '';
  441. fapLog('monitor resolution: ' + window.innerWidth + ':' + window.innerHeight);
  442. switch (type) {
  443. case 'lasti':
  444. fapLog('displayOverlay: lasti: url= ' + url);
  445. html = GM.getValue(url);
  446. GM.setClipboard(GM.getValue(url + 'clipboard'));
  447. break;
  448. case 'image':
  449. html = '<table id=\'overlay\'><tbody><tr><td><div id="close"><img src=\'' + data[0].url + '\' style=\'width:auto; hight:auto; max-height:' + myheight + 'px; max-width:' + mywidht + 'px\'></div></td></tr></tbody></table>';
  450. break;
  451. case 'video':
  452. html = '<table id=\'overlay\'><tbody><tr><td><video src="'+ data[0].url +'" type="video/mp4" controls></video><br><a href=\'' + data[0].url + '\'>Video Link</a><br><br><div id="close">Close</div></td></tr></tbody></table>';
  453. break;
  454. case 'images':
  455. var clipboard = '';
  456. var count = 1;
  457. $('input[name*=\'getallimages\']').val('Get all Images');
  458. $('input[name*=\'imagesurl\']').val('Images URLs');
  459. var newname = document.getElementById("newname").value;
  460. html = '<table id=\'overlay\'><tbody><tr><td><br><div id="close">Close</div>';
  461. data.forEach(function (value) {
  462. var extension = value.substr(value.lastIndexOf('.')+1, 3);
  463. html += '<a class=\'changeColorLink\' href=\'' + value + '\' download= '+ newname + count + '.' + extension +' >link ' + count + '</a> ';
  464. clipboard += value + ' \n';
  465. count++;
  466. });
  467. html += '</td></tr></tbody></table>';
  468. GM.setClipboard(clipboard);
  469. GM.setValue(url, html.toString());
  470. GM.setValue(url + 'clipboard', clipboard.toString());
  471. break;
  472. }
  473. fapLog('displayOverlay: type= ' + type + ': html=' + html.toString());
  474. setTimeout(function () {
  475. var $el = $(html).css({
  476. 'overlay':'before',
  477. 'position': 'fixed',
  478. 'top': 0,
  479. 'left': 0,
  480. 'width': '90%',
  481. 'height': '100%',
  482. 'background-color': 'rgba(0,0,0,.7)',
  483. 'z-index': 300000,
  484. 'vertical-align': 'middle',
  485. 'text-align': 'center',
  486. 'color': '#fff',
  487. 'font-size': '30px',
  488. 'font-weight': 'bold',
  489. 'overflow': 'hidden',
  490. 'cursor': 'auto'
  491. });
  492. $('a.changeColorLink', $el).hover(function () {
  493. $(this).css('color', 'blue');
  494. }, function () {
  495. $(this).css('color', 'pink');
  496. });
  497. $el.appendTo('body');
  498. $("#close").click(function () {
  499. fapLog("BUTTON CLICK");
  500. if ($('#overlay').length > 0) {
  501. removeOverlay();
  502. return;
  503. }
  504. });
  505. }, 50);
  506. return;
  507. }
  508. //----- PARALELLIZISE -----
  509. //paralellize for getting all sites within pagination
  510.  
  511. function loopGetSites(doneTask, value) {
  512. var timeout = setTimeout(function (){
  513. fapLog("Timeout is called");
  514. doneTask();
  515. }, 120000);
  516. sneakyXHR(value, function (src) {
  517. clearTimeout(timeout);
  518. $firstids = $('<div>' + src + '</div');
  519. $test = $firstids.find('img[src^="' + protocol +'//cdn5-thumbs.motherlessmedia.com/thumbs/"]');
  520. $test.each(function () {
  521. try {
  522. var id = $(this).attr('data-strip-src').match('thumbs/([^?]+)');
  523. fapLog(id[1]);
  524. }
  525. catch (err) {
  526. fapLog(err.message);
  527. return;
  528. }
  529. if (id[1].lastIndexOf('-strip') != -1) {
  530. fapLog('loopGetSites: Falsche parameter. Enthält -strip');
  531. return;
  532. }
  533. ids.push(id[1]);
  534. return;
  535. });
  536. doneTask();
  537. return;
  538. }, 'get', {
  539. 'Range': 'bytes=0-3000' //grab first 3k);
  540. });
  541. }
  542.  
  543. //helper function for parralelize functions
  544.  
  545. function parralelizeTask(arr, fn, buttonname, done) {
  546. fapLog('parralelizeTask: arr= ' + arr);
  547. var total = arr.length;
  548. var maxtotal = total;
  549. fapLog('parralelizeTask: arr.length= ' + total);
  550. doneTask = function () {
  551. if (--total === 0) {
  552. done();
  553. return;
  554. }
  555. $('input[name*=\'' + buttonname + '\']').val('processed:' + total);
  556. return;
  557. };
  558. arr.forEach(function (value) {
  559. fn(doneTask, value);
  560. });
  561. return;
  562. }
  563.  
  564. function addStop() {
  565. var stopButton = document.createElement('input');
  566. stopButton.type = 'button';
  567. stopButton.value = 'Stop';
  568. stopButton.name = 'stopvalue';
  569. stopButton.onclick = stop;
  570. stopButton.setAttribute('style', 'font-size:18px;position:fixed;top:260px;right:20px;z-index:10000;');
  571. document.body.appendChild(stopButton);
  572. return;
  573. }
  574.  
  575. function stop() {
  576. displayOverlay(imagesUrl, 'images', thisurl);
  577. }