Cita de: zeronett en Diciembre 28, 2013, 03:42:43 PMthanks,
The plugins are made for Raptorcache, I could not tell if they work in thundecache.
got to test on raptor then :)
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Menú Mostrar MensajesCita de: zeronett en Diciembre 28, 2013, 03:42:43 PMthanks,
The plugins are made for Raptorcache, I could not tell if they work in thundecache.
#include <iostream>
#include <cstring>
#include <vector>
#include <regex.h>
#include "../utils.cpp"
using namespace std;
// use this line to compile
// g++ -I. -fPIC -shared -g -o xhamster.com.so xhamster.com.cpp
// Regex
// http.*\.xhamster\.com.*(\.swf|\.jpg|\.png|\.gif|\.flv|\.mp4)
// http.*\.xhcdn\.com.*(\.swf|\.jpg|\.png|\.gif|\.flv|\.mp4)
// http.*192\.96\.200\.\d{1,3}\/.*(\.swf|\.jpg|\.png|\.gif|\.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()-2) + "_" +resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find("xhamster.com/") != string::npos) or
(url.find("xhcdn.com/") != string::npos) or
(regex_match("192\\.96\\.200\\.\\d{1,3}\\/", url) != "")
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "xhamster";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}