aboutsummaryrefslogtreecommitdiff
path: root/src/khaganatForum.py
blob: 862eada52b53b9dd634631fc48ab7533d4454ef4 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -*- coding: utf-8 -*-
# Doku Wiki
#
# @website     https://www.dokuwiki.org/
# @provide-api yes
#              (https://www.dokuwiki.org/devel:xmlrpc)
#
# @using-api   no
# @results     HTML
# @stable      yes
# @parse       (general)    url, title, content

from urllib import urlencode
from lxml.html import fromstring
from searx.engines.xpath import extract_text
from datetime import datetime

# engine dependent config
categories = ['general']  # TODO , 'images', 'music', 'videos', 'files'
paging = False
language_support = False
number_of_results = 5

# search-url
# Doku is OpenSearch compatible
base_url = 'https://khaganat.net'
search_url = '/forum/index.php?action=search2&{query}'
# TODO             '&startRecord={offset}'\
# TODO             '&maximumRecords={limit}'\


# do search-request
def request(query, params):

    params['url'] = base_url +\
            search_url.format(query=urlencode({'search': query}))

    return params


# get response from search-request
def response(resp):
    results = []

    doc = fromstring(resp.text)

    # Search
    for r in doc.xpath('//div[@id="main_content_section"]/div/div/div'):
        try:
            res_url = r.xpath('.//div[@class="topic_details floatleft"]/h5/a/@href')[-1]
            title = extract_text(r.xpath('.//div[@class="topic_details floatleft"]/h5')) 
            content = extract_text(r.xpath('.//div[@class="list_posts double_height"]'))

            dateBrut = extract_text(r.xpath('.//div[@class="topic_details floatleft"]/span/em')).encode('utf-8')
            date = dateBrut.split(' ')
            year = date[2]
            day = date[0]
            french_text_month = date[1]
            time = date[4]

            if french_text_month == "janvier":
                Month = 1
            elif french_text_month.decode('utf-8') == "février".decode('utf-8'):
                Month = 2
            elif french_text_month  == "mars":
                Month = 3
            elif french_text_month == "avril":
                Month = 4
            elif french_text_month == "mai":
                Month = 5
            elif french_text_month == "juin":
                Month = 6
            elif french_text_month == "juillet":
                Month = 7
            elif french_text_month.decode('utf-8') == "août".decode('utf-8'):
                Month = 8
            elif french_text_month == "septembre":
                Month = 9
            elif french_text_month == "octobre":
                 Month = 10
            elif french_text_month == "novembre":
                Month = 11
            else:
                Month = 12


            # append result
            results.append({'title': title,
                            'content': content,
                            'url': res_url,
                            'publishedDate': datetime(int(year), Month, int(day), 3, 1, 42)})

        except:
            continue

    # return results
    return results