Advertisement
rg443

wallpaperscraft.com -> imgur

Mar 7th, 2013
125
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. for (var i=1;i<=557;i++) get_url("http://wallpaperscraft.com/catalog/animals/ratings/page"+i,function(){
  23.    var s=this.toString()
  24.    var a1=s.match(/http.*?_preview.jpg/gim);
  25.    var a2=s.match(/\d+x\d+(?=\n)/gim);
  26.    var a=a1.map(function(v,i){return v.replace("_preview","_"+a2[i])});
  27.    stack++;
  28.    post_imgur(a,function(){console.log(--stack,a.length,this.toString().split("\n").length-1)});
  29.    //console.log(a.join("\n"));
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement