aboutsummaryrefslogtreecommitdiff
path: root/bridges/BooruprojectBridge.php
blob: 761fd08404d0cf7b7581555f80ea13ee59904a43 (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
<?php

class BooruprojectBridge extends DanbooruBridge
{
    const MAINTAINER = 'mitsukarenai';
    const NAME = 'Booruproject';
    const URI = 'https://booru.org/';
    const DESCRIPTION = 'Returns images from given page of booruproject';
    const PARAMETERS = [
        'global' => [
            'p' => [
                'name' => 'page',
                'defaultValue' => 0,
                'type' => 'number'
            ],
            't' => [
                'name' => 'tags',
                'required' => true,
                'exampleValue'  => 'tagme',
                'title' => 'Use "all" to get all posts'
            ]
        ],
        'Booru subdomain (subdomain.booru.org)' => [
            'i' => [
                'name' => 'Subdomain',
                'required' => true,
                'exampleValue'  => 'rm'
            ]
        ]
    ];

    const PATHTODATA = '.thumb';
    const IDATTRIBUTE = 'id';
    const TAGATTRIBUTE = 'title';
    const PIDBYPAGE = 20;

    protected function getFullURI()
    {
        return $this->getURI()
        . 'index.php?page=post&s=list&pid='
        . ($this->getInput('p') ? ($this->getInput('p') - 1) * static::PIDBYPAGE : '')
        . '&tags=' . urlencode($this->getInput('t'));
    }

    protected function getTags($element)
    {
        $tags = parent::getTags($element);
        $tags = explode(' ', $tags);

        // Remove statistics from the tags list (identified by colon)
        foreach ($tags as $key => $tag) {
            if (strpos($tag, ':') !== false) {
                unset($tags[$key]);
            }
        }

        return implode(' ', $tags);
    }

    public function getURI()
    {
        if (!is_null($this->getInput('i'))) {
            return 'https://' . $this->getInput('i') . '.booru.org/';
        }

        return parent::getURI();
    }

    public function getName()
    {
        if (!is_null($this->getInput('i'))) {
            return static::NAME . ' ' . $this->getInput('i');
        }

        return parent::getName();
    }
}