aboutsummaryrefslogtreecommitdiff
path: root/bridges/NewgroundsBridge.php
blob: f84ad8c078dc853bbf00e8a2e6528f6fc6d0d435 (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
<?php
declare(strict_types=1);

class NewgroundsBridge extends BridgeAbstract
{
	const NAME = 'Newgrounds';
	const URI = 'https://www.newgrounds.com';
	const DESCRIPTION = 'Get the latest art from a given user';
	const MAINTAINER = 'KamaleiZestri';
	const PARAMETERS = [
		'User' => [
			'username' => [
				'name' => 'Username',
				'type' => 'text',
				'required' => true,
				'exampleValue' => 'TomFulp'
			]
		]
	];

	public function collectData()
	{
		$username = $this->getInput('username');
		if (!preg_match('/^\w+$/', $username)) {
			throw new \Exception('Illegal username');
		}

		$html = getSimpleHTMLDOM($this->getURI());

		$posts = $html->find('.item-portalitem-art-medium');

		foreach ($posts as $post) {
			$item = [];

			$item['author'] = $username;
			$item['uri'] = $post->href;

			$titleOrRestricted = $post->find('h4')[0]->innertext;

			// Newgrounds doesn't show public previews for NSFW content.
			if ($titleOrRestricted === 'Restricted Content: Sign in to view!') {
				$item['title'] = 'NSFW: ' . $item['uri'];
				$item['content'] = <<<EOD
<a href="{$item['uri']}">
{$item['title']}
</a>
EOD;
			} else {
				$item['title'] = $titleOrRestricted;
				$item['content'] = <<<EOD
<a href="{$item['uri']}">
<img
    style="align:top; width:270px; border:1px solid black;"
    alt="{$item['title']}"
    src="{$post->find('img')[0]->src}"
    title="{$item['title']}" />
</a>
EOD;
			}

			$this->items[] = $item;
		}
	}

	public function getName()
	{
		if ($this->getInput('username')) {
			return sprintf('%s - %s', $this->getInput('username'), self::NAME);
		}
		return parent::getName();
	}

	public function getURI()
	{
		if ($this->getInput('username')) {
			return sprintf('https://%s.newgrounds.com/art', $this->getInput('username'));
		}
		return parent::getURI();
	}
}