Advertisement
rg443

widescreen-wallpaper.eu -> imgur

Mar 10th, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function post_imgur(a,callback) {        
  2. var r=new XMLHttpRequest();
  3. r.open("POST","http://176.34.162.148/jabry/imgur1.asp?u=&b=",true);
  4. //r.open("POST","http://notebook1.lan:8000/jabry/imgur1.asp?u=&b=",true);
  5. r.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6. r.onreadystatechange=function(){if (this.readyState==4 && this.status==200) callback&&callback.call(this.responseText); }
  7. r.send("u=" + a.join(","));
  8. }
  9. function get_url(url,callback) {
  10.         var r=new XMLHttpRequest();
  11.         r.open("GET",url,true);
  12.         //r.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  13.         //r.setRequestHeader("Accept-Encoding", "gzip");
  14.         r.onreadystatechange=function(){
  15.        if (this.readyState==4 && this.status==200 && callback) callback.call(this.responseText);
  16.        }
  17.     r.send();      
  18.  
  19. }
  20.  
  21. var stack=0;
  22.  
  23. for (var i=1;i<=508;i++) get_url("http://widescreen-wallpaper.eu/1920x1200-wallpapers-r/page/"+i,function(){
  24.    var a=this.toString().match(/\/thumbs\/\S+\.jpg/gim).map(function(v){return "http://widescreen-wallpaper.eu/wallpapers/"+v.replace("/thumbs/","").replace("-t1.jpg","-1920x1200.jpg")});
  25.    stack++;
  26.    post_imgur(a,function(){console.log(--stack,a.length,this.toString().split("\n").length-1)});
  27.    console.log(a.join("\n"));
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement