summaryrefslogtreecommitdiffstats
path: root/mentions/mentions.php
diff options
context:
space:
mode:
Diffstat (limited to 'mentions/mentions.php')
-rwxr-xr-xmentions/mentions.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/mentions/mentions.php b/mentions/mentions.php
new file mode 100755
index 0000000..c3d095b
--- /dev/null
+++ b/mentions/mentions.php
@@ -0,0 +1,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");
+ 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);
+ }
+?>