From a357032d3280256e2f4ea7cd31e0a32bdb8e36ae Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 9 Nov 2020 19:43:37 +0000 Subject: izbrisal worddetect.php iz jmentions bozt direktorija --- mentions/mentions.php | 2 +- mentions/worddetect.php | 38 -------------------------------------- 2 files changed, 1 insertion(+), 39 deletions(-) delete mode 100755 mentions/worddetect.php diff --git a/mentions/mentions.php b/mentions/mentions.php index c3d095b..8969063 100755 --- a/mentions/mentions.php +++ b/mentions/mentions.php @@ -6,7 +6,7 @@ $o->setpassword(getenv("orC_pass")); $botsignature = "\n\n-- [/u/ImgLinkBot](/u/ImgLinkBot)"; while (true) { - $mentions = $o->fetch("mentions"); + $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; diff --git a/mentions/worddetect.php b/mentions/worddetect.php deleted file mode 100755 index 9e63526..0000000 --- a/mentions/worddetect.php +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env php -setusername(getenv("orC_user")); - $o->setpassword(getenv("orC_pass")); - $botsignature = "\n\n-- [/u/PozigalecBot](/u/PozigalecBot)"; - while (true) { - $comments = $o->fetch("comments"); - if ($comments < 0) { - file_put_contents("log.txt", '[worddetect.php] ERROR in $comments'."\n", FILE_APPEND); - continue; - } - foreach($comment["data"]["children"] as $comment) { - $processed = file_get_contents("processed.txt"); - if ($processed === false) { - file_put_contents("log.txt", "[worddetect.php] ERROR: can't read processed.txt\n", FILE_APPEND); - continue; - } - if (in_array($comment["data"]["id"], explode("\n", $processed))) { - continue; - } - if (in_array($comment["data"]["subreddit"], explode("\n", file_get_contents("banned_subs.txt")))) { - continue; - } - if (in_array($comment"data"]["author"], explode("\n", file_get_contents("banned_users.txt")))) { - continue; - } - $parent = "t1_".$comment["data"]["id"]; - if (!file_put_contents("processed.txt", $comment["data"]["id"]."\n", FILE_APPEND)) { - file_put_contents("log.txt", "[worddetect.php] ERROR mentions_processed.txt PUT\n", FILE_APPEND); - continue; - } - $o->comment("Pa je zašvicu ful! $botsignature", $parent); // TODO! - } - sleep(10); - } -?> -- cgit v1.2.3