diff options
Diffstat (limited to 'mentions.php')
-rw-r--r-- | mentions.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mentions.php b/mentions.php new file mode 100644 index 0000000..66d35e1 --- /dev/null +++ b/mentions.php @@ -0,0 +1,21 @@ +<?php + require_once("../main.php"); + $o = new oldredditclient(); + $o->setusername($_ENV["orc_user"]); + $o->setpasword($_ENV["orc_pass"]); + while (true) { + $mentions = $o->get("mentions"); + if ($mentions < 0) { + echo "\n".'[mentions.php] ERROR in $mentions'; + continue; + } + foreach($mentions["data"]["children"] as $mention) { + if (in_array(explode("\n", file_get_contents("banned_subs.txt")), $mention["subreddit"])) { + continue; + } + if (in_array(explode("\n", file_get_contents("banned_authors.txt")), $mention["author"])) { + continue; + } + } + } +?> |