summaryrefslogtreecommitdiff
path: root/scraper/thetvdbscraper/tvdbactor.c
blob: f64846a804db3bc89f7d3de24e23a27bfb3efbff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <libxml/parser.h>
#include <libxml/tree.h>
#include "tvdbactor.h"

using namespace std;

cTVDBActors::cTVDBActors(string language, cTVDBMirrors *mirrors) {
    this->language = language;
    this->mirrors = mirrors;
}

cTVDBActors::~cTVDBActors() {
}

void cTVDBActors::ParseXML(string xml, vector<cTVDBActor*> *actors) {
    xmlDoc *doc = xmlReadMemory(xml.c_str(), xml.size(), "noname.xml", NULL, 0);
    if (doc == NULL)
        return;
    //Root Element has to be <Actors>
    xmlNode *node = NULL;
    node = xmlDocGetRootElement(doc);
    if (!(node && !xmlStrcmp(node->name, (const xmlChar *)"Actors"))) {
        xmlFreeDoc(doc);
        return;
    }
    //Looping through actors
    node = node->children;
    xmlNode *cur_node = NULL;
    for (cur_node = node; cur_node; cur_node = cur_node->next) {
        if ((cur_node->type == XML_ELEMENT_NODE) && !xmlStrcmp(cur_node->name, (const xmlChar *)"Actor")) {
            cTVDBActor *actor = ReadEntry(doc, cur_node->children);
            actors->push_back(actor);
        }
    }
    xmlFreeDoc(doc);
}

cTVDBActor *cTVDBActors::ReadEntry(xmlDoc *doc, xmlNode *node) {
    xmlNode *cur_node = NULL;
    xmlChar *node_content;
    cTVDBActor *actor = new cTVDBActor();
    for (cur_node = node; cur_node; cur_node = cur_node->next) {
        if (cur_node->type == XML_ELEMENT_NODE) {
            node_content = xmlNodeListGetString(doc, cur_node->xmlChildrenNode, 1);
            if (!node_content)
                continue;
            if (!xmlStrcmp(cur_node->name, (const xmlChar *)"Image")) {
                actor->thumbUrl = mirrors->GetMirrorBanner() + (const char *)node_content;
            } else if (!xmlStrcmp(cur_node->name, (const xmlChar *)"Name")) {
                actor->name = (const char *)node_content;
            } else if (!xmlStrcmp(cur_node->name, (const xmlChar *)"Role")) {
                actor->role = (const char *)node_content;
            } else if (!xmlStrcmp(cur_node->name, (const xmlChar *)"id")) {
                actor->id = atoi((const char *)node_content);
            } else if (!xmlStrcmp(cur_node->name, (const xmlChar *)"SortOrder")) {
                actor->sortOrder = atoi((const char *)node_content);
            }
            xmlFree(node_content);
        }
    }
    return actor;
}