diff options
author | lolcat <will@lolcat.ca> | 2023-10-16 02:30:43 -0400 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-10-16 02:30:43 -0400 |
commit | 3aa01807741ffad103b9f6a74d878e58f2e828e8 (patch) | |
tree | a06816e71b059d96b5e08f9d304cbc3818e85b48 /lib/frontend.php | |
parent | fa9dc4d6efc593b7301229c18b058d90024c939e (diff) |
captcha and imgur, findthatmeme, yep imagesearch
Diffstat (limited to 'lib/frontend.php')
-rw-r--r-- | lib/frontend.php | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/frontend.php b/lib/frontend.php index 4c5e232..97c8c5b 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -901,7 +901,11 @@ class frontend{ "ddg" => "DuckDuckGo", "yandex" => "Yandex", "brave" => "Brave", - "google" => "Google" + "google" => "Google", + "yep" => "Yep", + //"pinterest" => "Pinterest", + "imgur" => "Imgur", + "ftm" => "FindThatMeme" ] ]; break; @@ -1011,10 +1015,30 @@ class frontend{ $lib = new wiby(); break; + case "yep": + include "scraper/yep.php"; + $lib = new yep(); + break; + case "sc": include "scraper/sc.php"; $lib = new sc(); break; + + case "pinterest": + include "scraper/pinterest.php"; + $lib = new pinterest(); + break; + + case "imgur": + include "scraper/imgur.php"; + $lib = new imgur(); + break; + + case "ftm": + include "scraper/ftm.php"; + $lib = new ftm(); + break; } // set scraper on $_GET |