2023-07-22 18:41:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
Initialize random shit
|
|
|
|
*/
|
2023-11-07 13:04:56 +00:00
|
|
|
include "data/config.php";
|
|
|
|
|
2023-07-22 18:41:14 +00:00
|
|
|
include "lib/frontend.php";
|
|
|
|
$frontend = new frontend();
|
|
|
|
|
|
|
|
[$scraper, $filters] = $frontend->getscraperfilters("news");
|
|
|
|
|
|
|
|
$get = $frontend->parsegetfilters($_GET, $filters);
|
|
|
|
|
2023-10-16 06:30:43 +00:00
|
|
|
/*
|
|
|
|
Captcha
|
|
|
|
*/
|
2024-02-18 04:22:19 +00:00
|
|
|
include "lib/bot_protection.php";
|
|
|
|
new bot_protection($frontend, $get, $filters, "news", true);
|
2023-07-22 18:41:14 +00:00
|
|
|
|
|
|
|
$payload = [
|
2024-02-18 04:22:19 +00:00
|
|
|
"timetaken" => microtime(true),
|
2023-07-22 18:41:14 +00:00
|
|
|
"class" => "",
|
|
|
|
"right-left" => "",
|
|
|
|
"right-right" => "",
|
|
|
|
"left" => ""
|
|
|
|
];
|
|
|
|
|
|
|
|
try{
|
|
|
|
$results = $scraper->news($get);
|
|
|
|
|
|
|
|
}catch(Exception $error){
|
|
|
|
|
2024-03-25 02:31:19 +00:00
|
|
|
$frontend->drawscrapererror($error->getMessage(), $get, "news", $payload["timetaken"]);
|
2023-07-22 18:41:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Populate links
|
|
|
|
*/
|
|
|
|
if(count($results["news"]) === 0){
|
|
|
|
|
|
|
|
$payload["left"] =
|
|
|
|
'<div class="infobox">' .
|
|
|
|
"<h1>Nobody here but us chickens!</h1>" .
|
|
|
|
'Have you tried:' .
|
|
|
|
'<ul>' .
|
|
|
|
'<li>Using a different scraper</li>' .
|
|
|
|
'<li>Using fewer keywords</li>' .
|
|
|
|
'<li>Defining broader filters (Is NSFW turned off?)</li>' .
|
|
|
|
'</ul>' .
|
|
|
|
'</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($results["news"] as $news){
|
|
|
|
|
|
|
|
$greentext = [];
|
|
|
|
|
|
|
|
if($news["date"] !== null){
|
|
|
|
|
|
|
|
$greentext[] = date("jS M y @ g:ia", $news["date"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($news["author"] !== null){
|
|
|
|
|
|
|
|
$greentext[] = htmlspecialchars($news["author"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($greentext) !== 0){
|
|
|
|
|
|
|
|
$greentext = implode(" • ", $greentext);
|
|
|
|
}else{
|
|
|
|
|
|
|
|
$greentext = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$n = null;
|
|
|
|
$payload["left"] .= $frontend->drawtextresult($news, $greentext, $n, $get["s"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($results["npt"] !== null){
|
|
|
|
|
|
|
|
$payload["left"] .=
|
|
|
|
'<a href="' . $frontend->htmlnextpage($get, $results["npt"], "news") . '" class="nextpage">Next page ></a>';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $frontend->load("search.html", $payload);
|