aboutsummaryrefslogtreecommitdiff
path: root/bridges/NyaaTorrentsBridge.php
blob: 36708411410e8b5b0a0717abfd1dc93947ef1d3d (plain) (blame)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php

class NyaaTorrentsBridge extends BridgeAbstract
{
    const MAINTAINER = 'ORelio & Jisagi';
    const NAME = 'NyaaTorrents';
    const URI = 'https://nyaa.si/';
    const DESCRIPTION = 'Returns the newest torrents, with optional search criteria.';
    const PARAMETERS = [
        [
            'f' => [
                'name' => 'Filter',
                'type' => 'list',
                'values' => [
                    'No filter' => '0',
                    'No remakes' => '1',
                    'Trusted only' => '2'
                ]
            ],
            'c' => [
                'name' => 'Category',
                'type' => 'list',
                'values' => [
                    'All categories' => '0_0',
                    'Anime' => '1_0',
                    'Anime - AMV' => '1_1',
                    'Anime - English' => '1_2',
                    'Anime - Non-English' => '1_3',
                    'Anime - Raw' => '1_4',
                    'Audio' => '2_0',
                    'Audio - Lossless' => '2_1',
                    'Audio - Lossy' => '2_2',
                    'Literature' => '3_0',
                    'Literature - English' => '3_1',
                    'Literature - Non-English' => '3_2',
                    'Literature - Raw' => '3_3',
                    'Live Action' => '4_0',
                    'Live Action - English' => '4_1',
                    'Live Action - Idol/PV' => '4_2',
                    'Live Action - Non-English' => '4_3',
                    'Live Action - Raw' => '4_4',
                    'Pictures' => '5_0',
                    'Pictures - Graphics' => '5_1',
                    'Pictures - Photos' => '5_2',
                    'Software' => '6_0',
                    'Software - Apps' => '6_1',
                    'Software - Games' => '6_2',
                ]
            ],
            'q' => [
                'name' => 'Keyword',
                'description' => 'Keyword(s)',
                'type' => 'text'
            ],
            'u' => [
                'name' => 'User',
                'description' => 'User',
                'type' => 'text'
            ]
        ]
    ];

    public function collectData()
    {
        $feedParser = new FeedParser();
        $feed = $feedParser->parseFeed(getContents($this->getURI()));

        foreach ($feed['items'] as $item) {
            $item['enclosures'] = [$item['uri']];
            $item['uri'] = str_replace('.torrent', '', $item['uri']);
            $item['uri'] = str_replace('/download/', '/view/', $item['uri']);
            $item['id'] = str_replace('https://nyaa.si/view/', '', $item['uri']);
            $dom = getSimpleHTMLDOMCached($item['uri']);
            if ($dom) {
                $description = $dom->find('#torrent-description', 0)->innertext ?? '';
                $item['content'] = markdownToHtml(html_entity_decode($description));

                $magnet = $dom->find('div.panel-footer.clearfix > a', 1)->href;
                // can't put raw magnet link in enclosure, this gives information on
                // magnet contents and works a way to sent magnet value
                $magnet = 'https://torrent.parts/#' . html_entity_decode($magnet);
                array_push($item['enclosures'], $magnet);
            }
            $this->items[] = $item;
            if (count($this->items) >= 10) {
                break;
            }
        }
    }

    public function getName()
    {
        $name = parent::getName();
        $name .= $this->getInput('u') ? ' - ' . $this->getInput('u') : '';
        $name .= $this->getInput('q') ? ' - ' . $this->getInput('q') : '';
        $name .= $this->getInput('c') ? ' (' . $this->getKey('c') . ')' : '';
        return $name;
    }

    public function getIcon()
    {
        return self::URI . 'static/favicon.png';
    }

    public function getURI()
    {
        $params = [
            'f' => $this->getInput('f'),
            'c' => $this->getInput('c'),
            'q' => $this->getInput('q'),
            'u' => $this->getInput('u'),
        ];
        return self::URI . '?page=rss&s=id&o=desc&' . http_build_query($params);
    }
}