Plugin jdownloader.org

Publicado por zeronett, Noviembre 13, 2013, 06:36:30 AM

Tema anterior - Siguiente tema

zeronett

www.jdownloader.org    

Guarda contenido de la pagina y sus actualizaciones.


Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include "../utils.cpp"

using namespace std;

// use this line to compile
// g++ -I. -fPIC -shared -g -o jdownloader.org.so jdownloader.org.cpp
// Regex
// http.*\.jdownloader\.org.*(\.swf|\.jpg|\.png|\.gif|\.flv|\.class)

string get_filename(string url) {
               vector<string> resultado;
       string retorna = "";
       stringexplode(url, "/", &resultado);
       retorna = resultado.at(resultado.size()-2) + "-"+resultado.at(resultado.size()-1);
       return retorna;
}

extern "C" resposta getmatch(const string url) {
       resposta r;        
               
 if ( (url.find("jdownloader.org/") != string::npos)
    ) {
     r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;
        r.domain = "jdownloader.org";      
     } else {
        r.match = false;
     }
  }
  else
  {
     r.match = false;
  }
  return r;
}

firecold

Gracias amigo Zeronett por este plugin la verdad nunca se me habia ocurrido, Saludos

zeronett

De nada fire, es un placer poder aportar en el foro.