Plugin http://www.novelasdetv.com

Publicado por delfpc, Febrero 09, 2013, 10:10:46 PM

Tema anterior - Siguiente tema

delfpc

aqui dejo el plugin de http://www.novelasdetv.com, lo probe en http://www.novelasdetv.com/2012/05/capitulos-de-escobar-completos-online.html; cualquier problema agradeceré reportarlo:

#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o userapi.com.so userapi.com.cpp
//regex
//http.*\.userapi\.com.*(\.flv|\.mp4)

string get_filename(string url) {
vector<string> resultado;
if (url.find("?") != string::npos) {
stringexplode(url, "?", &resultado);
stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
return resultado.at(resultado.size()-1);           
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}

extern "C" resposta getmatch(const string url) {
    resposta r;

if ( (url.find(".userapi.com/") != string::npos)  and
(url.find(".mp4") != string::npos) and (url.find("?start=") == string::npos) // tirar start para nao fazer cache de file incompleto
) {

    r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "userapi";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}