Advertisement
rg443

wallpaperscraft to imgur (widescreen wallpapers)

Feb 10th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function get_url(url,callback) {
  2.         var r=new XMLHttpRequest();
  3.         r.open("GET",url,true);
  4.         //r.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  5.         //r.setRequestHeader("Accept-Encoding", "gzip");
  6.         r.onreadystatechange=function(){
  7.        if (this.readyState==4 && this.status==200 && callback) callback.call(this.responseText);
  8.        }
  9.     r.send();      
  10.  
  11. }
  12.  
  13. function post_imgur(a,callback) {        
  14. var r=new XMLHttpRequest();
  15. r.open("POST","http://176.34.162.148/jabry/imgur1.asp?u=&b=",true);
  16. //r.open("POST","http://notebook1.lan:8000/jabry/imgur1.asp?u=&b=",true);
  17. r.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  18. r.onreadystatechange=function(){if (this.readyState==4 && this.status==200) callback&&callback.call(this.responseText); }
  19. r.send("u=" + a.join(","));
  20. }
  21.  
  22. /* downloads ratings all    fullscreen widescreen    
  23.    w: 1280x720 1280x800 1440x900 1680x1050 1920x1080 1920x1200 2560x1440 2560x1600  
  24.    f: 1024x768 1152x864 1280x960 1280x1024 1400x1050 1600x1200    
  25.    a: 320x480 640x960 640x1136 1024x1024 2048x2048
  26. */
  27. for(var i=1,q=0;i<=2805;i++,q++) get_url("http://wallpaperscraft.com/all/downloads/widescreen/1920x1200/page"+i,function(){
  28.    var a= this.toString().match(/http:\S+_preview\.jpg/gim).map(function(v){return v.replace("_preview.jpg","_1920x1200.jpg")});
  29.    a&&console.log(q--,a.length);
  30.    post_imgur(a,function(){});
  31.  
  32.  
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement