summaryrefslogtreecommitdiff
path: root/bridges/TinyLetterBridge.php
blob: e7f1240c33c16226d1deded87458e693c5d2c1a5 (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
<?php
class TinyLetterBridge extends BridgeAbstract {
	const NAME = 'Tiny Letter';
	const URI = 'https://tinyletter.com/';
	const DESCRIPTION = 'Tiny Letter is a mailing list service';
	const MAINTAINER = 'somini';
	const PARAMETERS = array(
		array(
			'username' => array(
				'name' => 'User Name',
				'exampleValue' => 'forwards',
			)
		)
	);

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

		return parent::getName();
	}

	public function getURI() {
		$username = $this->getInput('username');
		if (!is_null($username)) {
			return static::URI . urlencode($username);
		}

		return parent::getURI();
	}

	public function collectData() {
		$archives = self::getURI() . '/archive';
		$html = getSimpleHTMLDOMCached($archives);

		foreach($html->find('.message-list li') as $element) {
			$item = array();

			$snippet = $element->find('p.message-snippet', 0);
			$link = $element->find('.message-link', 0);

			$item['title'] = $link->plaintext;
			$item['content'] = $snippet->innertext;
			$item['uri'] = $link->href;
			$item['timestamp'] = strtotime($element->find('.message-date', 0)->plaintext);

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

	}
}