Files
XBMC4Xbox/xbmc/utils/ScraperParser.cpp
Rocky5 921f9fe9f8 Clean Copy
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
2024-01-08 19:01:29 +00:00

628 lines
17 KiB
C++

/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "system.h"
#include "ScraperParser.h"
#ifdef _LINUX
#include "system.h"
#endif
#include "RegExp.h"
#include "HTMLUtil.h"
#include "ScraperSettings.h"
#include "FileSystem/File.h"
#include "FileSystem/Directory.h"
#include "Util.h"
#include "settings/AdvancedSettings.h"
#include "FileItem.h"
#include "CharsetConverter.h"
#include "utils/URIUtils.h"
#include "log.h"
#include <sstream>
#include <cstring>
using namespace std;
using namespace XFILE;
CScraperParser::CScraperParser()
{
m_pRootElement = NULL;
m_name = m_content = NULL;
m_thumb = NULL;
m_document = NULL;
m_settings = NULL;
m_language = NULL;
m_framework = NULL;
m_date = NULL;
m_requiressettings = false;
m_SearchStringEncoding = "UTF-8";
}
CScraperParser::CScraperParser(const CScraperParser& parser)
{
m_document = NULL;
m_SearchStringEncoding = "UTF-8";
*this = parser;
}
CScraperParser &CScraperParser::operator=(const CScraperParser &parser)
{
if (this != &parser)
{
Clear();
if (parser.m_document)
{
m_strFile = parser.m_strFile;
m_persistence = parser.m_persistence;
m_document = new TiXmlDocument(*parser.m_document);
LoadFromXML();
}
}
return *this;
}
CScraperParser::~CScraperParser()
{
Clear();
}
void CScraperParser::Clear()
{
m_pRootElement = NULL;
delete m_document;
m_document = NULL;
m_name = m_thumb = m_content = m_language = m_framework = m_date = NULL;
m_requiressettings = false;
m_settings = NULL;
m_strFile.Empty();
}
bool CScraperParser::Load(const CStdString& strXMLFile)
{
Clear();
m_document = new TiXmlDocument(strXMLFile);
if (!m_document)
return false;
m_strFile = strXMLFile;
if (m_document->LoadFile())
return LoadFromXML();
delete m_document;
m_document = NULL;
return false;
}
bool CScraperParser::LoadFromXML()
{
if (!m_document)
return false;
CStdString strPath;
URIUtils::GetDirectory(m_strFile,strPath);
m_pRootElement = m_document->RootElement();
CStdString strValue = m_pRootElement->Value();
if (strValue == "scraper")
{
m_name = m_pRootElement->Attribute("name");
m_thumb = m_pRootElement->Attribute("thumb");
m_content = m_pRootElement->Attribute("content");
m_language = m_pRootElement->Attribute("language");
m_framework = m_pRootElement->Attribute("framework");
m_date = m_pRootElement->Attribute("date");
if (m_pRootElement->Attribute("cachePersistence"))
m_persistence.SetFromTimeString(m_pRootElement->Attribute("cachePersistence"));
const char* requiressettings;
m_requiressettings = ((requiressettings = m_pRootElement->Attribute("requiressettings")) && strnicmp("true", requiressettings, 4) == 0);
if (m_name && m_content) // FIXME
{
// check for known content
if ((0 == stricmp(m_content,"tvshows")) ||
(0 == stricmp(m_content,"movies")) ||
(0 == stricmp(m_content,"musicvideos")) ||
(0 == stricmp(m_content,"albums")))
{
TiXmlElement* pChildElement = m_pRootElement->FirstChildElement("CreateSearchUrl");
if (pChildElement)
{
if (!(m_SearchStringEncoding = pChildElement->Attribute("SearchStringEncoding")))
m_SearchStringEncoding = "UTF-8";
}
// inject includes
const TiXmlElement* include = m_pRootElement->FirstChildElement("include");
while (include)
{
if (include->FirstChild())
{
CStdString strFile = URIUtils::AddFileToFolder(strPath,include->FirstChild()->Value());
TiXmlDocument doc;
if (doc.LoadFile(strFile))
{
const TiXmlNode* node = doc.RootElement()->FirstChild();
while (node)
{
m_pRootElement->InsertEndChild(*node);
node = node->NextSibling();
}
}
}
include = include->NextSiblingElement("include");
}
return true;
}
}
}
delete m_document;
m_document = NULL;
m_pRootElement = NULL;
return false;
}
void CScraperParser::ReplaceBuffers(CStdString& strDest)
{
// insert buffers
int iIndex;
for (int i=MAX_SCRAPER_BUFFERS-1; i>=0; i--)
{
CStdString temp;
iIndex = 0;
temp.Format("$$%i",i+1);
while ((size_t)(iIndex = strDest.find(temp,iIndex)) != CStdString::npos) // COPIED FROM CStdString WITH THE ADDITION OF $ ESCAPING
{
strDest.replace(strDest.begin()+iIndex,strDest.begin()+iIndex+temp.GetLength(),m_param[i]);
iIndex += m_param[i].length();
}
}
// insert settings
iIndex = 0;
while ((size_t)(iIndex = strDest.find("$INFO[",iIndex)) != CStdString::npos && m_settings)
{
int iEnd = strDest.Find("]",iIndex);
CStdString strInfo = strDest.Mid(iIndex+6,iEnd-iIndex-6);
CStdString strReplace = m_settings->Get(strInfo);
strDest.replace(strDest.begin()+iIndex,strDest.begin()+iEnd+1,strReplace);
iIndex += strReplace.length();
}
iIndex = 0;
while ((size_t)(iIndex = strDest.find("\\n",iIndex)) != CStdString::npos)
strDest.replace(strDest.begin()+iIndex,strDest.begin()+iIndex+2,"\n");
}
void CScraperParser::ParseExpression(const CStdString& input, CStdString& dest, TiXmlElement* element, bool bAppend)
{
CStdString strOutput = element->Attribute("output");
TiXmlElement* pExpression = element->FirstChildElement("expression");
if (pExpression)
{
bool bInsensitive=true;
const char* sensitive = pExpression->Attribute("cs");
if (sensitive)
if (stricmp(sensitive,"yes") == 0)
bInsensitive=false; // match case sensitive
CRegExp reg(bInsensitive);
CStdString strExpression;
if (pExpression->FirstChild())
strExpression = pExpression->FirstChild()->Value();
else
strExpression = "(.*)";
ReplaceBuffers(strExpression);
ReplaceBuffers(strOutput);
if (!reg.RegComp(strExpression.c_str()))
{
return;
}
bool bRepeat = false;
const char* szRepeat = pExpression->Attribute("repeat");
if (szRepeat)
if (stricmp(szRepeat,"yes") == 0)
bRepeat = true;
const char* szClear = pExpression->Attribute("clear");
if (szClear)
if (stricmp(szClear,"yes") == 0)
dest=""; // clear no matter if regexp fails
bool bClean[MAX_SCRAPER_BUFFERS];
GetBufferParams(bClean,pExpression->Attribute("noclean"),true);
bool bTrim[MAX_SCRAPER_BUFFERS];
GetBufferParams(bTrim,pExpression->Attribute("trim"),false);
bool bFixChars[MAX_SCRAPER_BUFFERS];
GetBufferParams(bFixChars,pExpression->Attribute("fixchars"),false);
bool bEncode[MAX_SCRAPER_BUFFERS];
GetBufferParams(bEncode,pExpression->Attribute("encode"),false);
int iOptional = -1;
pExpression->QueryIntAttribute("optional",&iOptional);
int iCompare = -1;
pExpression->QueryIntAttribute("compare",&iCompare);
if (iCompare > -1)
m_param[iCompare-1].ToLower();
CStdString curInput = input;
for (int iBuf=0;iBuf<MAX_SCRAPER_BUFFERS;++iBuf)
{
if (bClean[iBuf])
InsertToken(strOutput,iBuf+1,"!!!CLEAN!!!");
if (bTrim[iBuf])
InsertToken(strOutput,iBuf+1,"!!!TRIM!!!");
if (bFixChars[iBuf])
InsertToken(strOutput,iBuf+1,"!!!FIXCHARS!!!");
if (bEncode[iBuf])
InsertToken(strOutput,iBuf+1,"!!!ENCODE!!!");
}
int i = reg.RegFind(curInput.c_str());
while (i > -1 && (i < (int)curInput.size() || curInput.size() == 0))
{
if (!bAppend)
{
dest = "";
bAppend = true;
}
CStdString strCurOutput=strOutput;
if (iOptional > -1) // check that required param is there
{
char temp[4];
sprintf(temp,"\\%i",iOptional);
char* szParam = reg.GetReplaceString(temp);
CRegExp reg2;
reg2.RegComp("(.*)(\\\\\\(.*\\\\2.*)\\\\\\)(.*)");
int i2=reg2.RegFind(strCurOutput.c_str());
while (i2 > -1)
{
char* szRemove = reg2.GetReplaceString("\\2");
int iRemove = strlen(szRemove);
int i3 = strCurOutput.find(szRemove);
if (szParam && strcmp(szParam,""))
{
strCurOutput.erase(i3+iRemove,2);
strCurOutput.erase(i3,2);
}
else
strCurOutput.replace(strCurOutput.begin()+i3,strCurOutput.begin()+i3+iRemove+2,"");
free(szRemove);
i2 = reg2.RegFind(strCurOutput.c_str());
}
free(szParam);
}
int iLen = reg.GetFindLen();
// nasty hack #1 - & means \0 in a replace string
strCurOutput.Replace("&","!!!AMPAMP!!!");
char* result = reg.GetReplaceString(strCurOutput.c_str());
if (result)
{
if (strlen(result))
{
CStdString strResult(result);
strResult.Replace("!!!AMPAMP!!!","&");
Clean(strResult);
ReplaceBuffers(strResult);
if (iCompare > -1)
{
CStdString strResultNoCase = strResult;
strResultNoCase.ToLower();
if (strResultNoCase.Find(m_param[iCompare-1]) != -1)
dest += strResult;
}
else
dest += strResult;
}
free(result);
}
if (bRepeat && iLen > 0)
{
curInput.erase(0,i+iLen>(int)curInput.size()?curInput.size():i+iLen);
i = reg.RegFind(curInput.c_str());
}
else
i = -1;
}
}
}
void CScraperParser::ParseNext(TiXmlElement* element)
{
TiXmlElement* pReg = element;
while (pReg)
{
TiXmlElement* pChildReg = pReg->FirstChildElement("RegExp");
if (pChildReg)
ParseNext(pChildReg);
else
{
TiXmlElement* pChildReg = pReg->FirstChildElement("clear");
if (pChildReg)
ParseNext(pChildReg);
}
int iDest = 1;
bool bAppend = false;
const char* szDest = pReg->Attribute("dest");
if (szDest)
if (strlen(szDest))
{
if (szDest[strlen(szDest)-1] == '+')
bAppend = true;
iDest = atoi(szDest);
}
const char *szInput = pReg->Attribute("input");
CStdString strInput;
if (szInput)
{
strInput = szInput;
ReplaceBuffers(strInput);
}
else
strInput = m_param[0];
const char* szConditional = pReg->Attribute("conditional");
bool bExecute = true;
if (szConditional)
{
bool bInverse=false;
if (szConditional[0] == '!')
{
bInverse = true;
szConditional++;
}
CStdString strSetting;
if (m_settings)
strSetting = m_settings->Get(szConditional);
bExecute = bInverse != strSetting.Equals("true");
}
if (bExecute)
ParseExpression(strInput, m_param[iDest-1],pReg,bAppend);
pReg = pReg->NextSiblingElement("RegExp");
}
}
const CStdString CScraperParser::Parse(const CStdString& strTag, const CScraperSettings* pSettings)
{
TiXmlElement* pChildElement = m_pRootElement->FirstChildElement(strTag.c_str());
if(pChildElement == NULL)
{
// CLog::Log(LOGNOTICE,"%s: Could not find scraper function %s",__FUNCTION__,strTag.c_str());
return "";
}
int iResult = 1; // default to param 1
pChildElement->QueryIntAttribute("dest",&iResult);
TiXmlElement* pChildStart = pChildElement->FirstChildElement("RegExp");
m_settings = pSettings;
ParseNext(pChildStart);
CStdString tmp = m_param[iResult-1];
const char* szClearBuffers = pChildElement->Attribute("clearbuffers");
if (!szClearBuffers || stricmp(szClearBuffers,"no") != 0)
ClearBuffers();
return tmp;
}
bool CScraperParser::HasFunction(const CStdString& strTag)
{
TiXmlElement* pChildElement = m_pRootElement->FirstChildElement(strTag.c_str());
if (!pChildElement)
return false;
return true;
}
void CScraperParser::Clean(CStdString& strDirty)
{
size_t i=0;
CStdString strBuffer;
while ((i=strDirty.Find("!!!CLEAN!!!",i)) != -1)
{
size_t i2;
if ((i2=strDirty.Find("!!!CLEAN!!!",i+11)) != -1)
{
strBuffer = strDirty.substr(i+11,i2-i-11);
CStdString strConverted(strBuffer);
HTML::CHTMLUtil::RemoveTags(strConverted);
RemoveWhiteSpace(strConverted);
strDirty.erase(i,i2-i+11);
strDirty.Insert(i,strConverted);
i += strConverted.size();
}
else
break;
}
i=0;
while ((i=strDirty.Find("!!!TRIM!!!",i)) != -1)
{
size_t i2;
if ((i2=strDirty.Find("!!!TRIM!!!",i+10)) != -1)
{
strBuffer = strDirty.substr(i+10,i2-i-10);
RemoveWhiteSpace(strBuffer);
strDirty.erase(i,i2-i+10);
strDirty.Insert(i,strBuffer);
i += strBuffer.size();
}
else
break;
}
i=0;
while ((i=strDirty.Find("!!!FIXCHARS!!!",i)) != -1)
{
int i2;
if ((i2=strDirty.Find("!!!FIXCHARS!!!",i+14)) != -1)
{
strBuffer = strDirty.substr(i+14,i2-i-14);
CStdStringW wbuffer;
g_charsetConverter.toW(strBuffer,wbuffer,GetSearchStringEncoding());
CStdStringW wConverted;
HTML::CHTMLUtil::ConvertHTMLToW(wbuffer,wConverted);
g_charsetConverter.fromW(wConverted,strBuffer,GetSearchStringEncoding());
RemoveWhiteSpace(strBuffer);
ConvertJSON(strBuffer);
strDirty.erase(i,i2-i+14);
strDirty.Insert(i,strBuffer);
i += strBuffer.size();
}
else
break;
}
i=0;
while ((i=strDirty.Find("!!!ENCODE!!!",i)) != -1)
{
int i2;
if ((i2=strDirty.Find("!!!ENCODE!!!",i+12)) != -1)
{
strBuffer = strDirty.substr(i+12,i2-i-12);
CURL::Encode(strBuffer);
strDirty.erase(i,i2-i+12);
strDirty.Insert(i,strBuffer);
i += strBuffer.size();
}
else
break;
}
}
void CScraperParser::RemoveWhiteSpace(CStdString &string)
{
string.TrimLeft(" \t\r\n");
string.TrimRight(" \t\r\n");
}
void CScraperParser::ConvertJSON(CStdString &string)
{
CRegExp reg;
reg.RegComp("\\\\u([0-f]{4})");
while (reg.RegFind(string.c_str()) > -1)
{
int pos = reg.GetSubStart(1);
char* szReplace = reg.GetReplaceString("\\1");
CStdString replace;
replace.Format("&#x%s;", szReplace);
string.replace(string.begin()+pos-2, string.begin()+pos+4, replace);
free(szReplace);
}
CRegExp reg2;
reg2.RegComp("\\\\x([0-9]{2})([^\\\\]+;)");
while (reg2.RegFind(string.c_str()) > -1)
{
int pos1 = reg2.GetSubStart(1);
int pos2 = reg2.GetSubStart(2);
char* szHexValue = reg2.GetReplaceString("\\1");
CStdString replace;
replace.Format("%c", strtol(szHexValue, NULL, 16));
string.replace(string.begin()+pos1-2, string.begin()+pos2+reg2.GetSubLength(2), replace);
free(szHexValue);
}
string.Replace("\\\"","\"");
}
void CScraperParser::ClearBuffers()
{
//clear all m_param strings
for (int i=0;i<MAX_SCRAPER_BUFFERS;++i)
m_param[i].clear();
}
void CScraperParser::ClearCache()
{
CStdString strCachePath;
URIUtils::AddFileToFolder(g_advancedSettings.m_cachePath,"scrapers",strCachePath);
// create scraper cache dir if needed
if (!CDirectory::Exists(strCachePath))
CDirectory::Create(strCachePath);
strCachePath = URIUtils::AddFileToFolder(strCachePath,URIUtils::GetFileName(m_strFile));
URIUtils::AddSlashAtEnd(strCachePath);
if (CDirectory::Exists(strCachePath))
{
CFileItemList items;
CDirectory::GetDirectory(strCachePath,items);
for (int i=0;i<items.Size();++i)
{
// wipe cache
if (items[i]->m_dateTime+m_persistence <= CDateTime::GetCurrentDateTime())
CFile::Delete(items[i]->GetPath());
}
}
else
CDirectory::Create(strCachePath);
}
void CScraperParser::GetBufferParams(bool* result, const char* attribute, bool defvalue)
{
for (int iBuf=0;iBuf<MAX_SCRAPER_BUFFERS;++iBuf)
result[iBuf] = defvalue;;
if (attribute)
{
vector<CStdString> vecBufs;
CUtil::Tokenize(attribute,vecBufs,",");
for (size_t nToken=0; nToken < vecBufs.size(); nToken++)
result[atoi(vecBufs[nToken].c_str())-1] = !defvalue;
}
}
void CScraperParser::InsertToken(CStdString& strOutput, int buf, const char* token)
{
char temp[4];
sprintf(temp,"\\%i",buf);
size_t i2=0;
while ((i2 = strOutput.Find(temp,i2)) != -1)
{
strOutput.Insert(i2,token);
i2 += strlen(token);
strOutput.Insert(i2+2,token);
i2 += 2;
}
}