summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorlolcat <will@lolcat.ca>2024-01-06 19:38:11 -0500
committerlolcat <will@lolcat.ca>2024-01-06 19:38:11 -0500
commitfa6cefb6edd5184f605bd1af0e1b5ffe82b495c5 (patch)
tree9f9d88c8eefffcdc18dbb248b260f1288bb3b1ad /lib
parent479545165a38bc13875587c57d27cd3b757e1222 (diff)
hey im not dead, curlie scraper ok bye
Diffstat (limited to 'lib')
-rw-r--r--lib/frontend.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/frontend.php b/lib/frontend.php
index a5035b6..b002ee9 100644
--- a/lib/frontend.php
+++ b/lib/frontend.php
@@ -895,7 +895,8 @@ class frontend{
"yep" => "Yep",
"mojeek" => "Mojeek",
"marginalia" => "Marginalia",
- "wiby" => "wiby"
+ "wiby" => "wiby",
+ "curlie" => "Curlie"
]
];
break;
@@ -948,6 +949,7 @@ class frontend{
"display" => "Scraper",
"option" => [
"sc" => "SoundCloud"
+ //"spotify" => "Spotify"
]
];
break;
@@ -1022,6 +1024,11 @@ class frontend{
$lib = new wiby();
break;
+ case "curlie":
+ include "scraper/curlie.php";
+ $lib = new curlie();
+ break;
+
case "yep":
include "scraper/yep.php";
$lib = new yep();
@@ -1032,6 +1039,11 @@ class frontend{
$lib = new sc();
break;
+ case "spotify":
+ include "scraper/spotify.php";
+ $lib = new spotify();
+ break;
+
case "pinterest":
include "scraper/pinterest.php";
$lib = new pinterest();