summaryrefslogtreecommitdiffstats
path: root/mentions/mentions.php
blob: 89690639b276683c828f5b0f0c4cb07eebe2b3aa (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
#!/usr/bin/env php
<?php
	require_once("../main.php");
	$o = new oldredditClient();
	$o->setusername(getenv("orC_user"));
	$o->setpassword(getenv("orC_pass"));
	$botsignature = "\n\n--  [/u/ImgLinkBot](/u/ImgLinkBot)";
	while (true) {
		$mentions = $o->fetch("mentions", null, 1); // increase to 100!
		if ($mentions < 0) {
			file_put_contents("log.txt", '[mentions.php] ERROR in $mentions'."\n", FILE_APPEND);
			continue;
		}
		foreach($mentions["data"]["children"] as $mention) {
			$processed = file_get_contents("processed.txt");
			if ($processed === false) {
				file_put_contents("log.txt", "[mentions.php] ERROR: can't read processed.txt\n", FILE_APPEND);
				continue;
			}
			if (in_array($mention["data"]["id"], explode("\n", $processed))) {
				continue;
			}
			if (in_array($mention["data"]["subreddit"], explode("\n", file_get_contents("banned_subs.txt")))) {
				continue;
			}
			if (in_array($mention["data"]["author"], explode("\n", file_get_contents("banned_users.txt")))) {
				continue;
			}
			$post = explode("/", $mention["data"]["context"])[4];
			$post = $o->fetch("post", $post);
			var_dump($post);
			if ($post < 0) {
				file_put_contents("log.txt", '[mentions.php] ERROR in $post'."\n", FILE_APPEND);
				continue;
			}
			$post = $post[0]["data"]["children"][0];
			$parent = "t1_".$mention["data"]["id"];
			if (!file_put_contents("processed.txt", $mention["data"]["id"]."\n", FILE_APPEND)) {
				file_put_contents("log.txt", "[mentions.php] ERROR mentions_processed.txt PUT\n", FILE_APPEND);
				continue;
			}
			if (!in_array("media_metadata", array_keys($post["data"]))) {
				$o->comment("Error: This post does not appear to be a gallery.$botsignature", $parent);
			} else {
				$imgs = "";
				foreach ($post["data"]["media_metadata"] as $metadata) {
					$imgs .= get_string_between($metadata["s"]["u"], "dd.it/", "?width=").",";
				}
				$imgs = substr($imgs, 0, -1); // da odstranimo zadnjo vejico
				$o->comment("[https://imglinkbot.ž.ga/?i=$imgs](https://imglinkbot.xn--jha.ga/?i=$imgs)$botsignature", $parent);
			}
		}
		sleep(10);
	}
?>