123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <?php
- class wiby{
-
- public function __construct(){
-
- include "lib/backend.php";
- $this->backend = new backend("wiby");
- }
-
- public function getfilters($page){
-
- if($page != "web"){
-
- return [];
- }
-
- return [
- "nsfw" => [
- "display" => "NSFW",
- "option" => [
- "yes" => "Yes",
- "no" => "No"
- ]
- ],
- "date" => [
- "display" => "Time posted",
- "option" => [
- "any" => "Any time",
- "day" => "Past day",
- "week" => "Past week",
- "month" => "Past month",
- "year" => "Past year",
- ]
- ]
- ];
- }
-
- private function get($proxy, $url, $get = [], $nsfw){
-
- $curlproc = curl_init();
-
- if($get !== []){
- $get = http_build_query($get);
- $url .= "?" . $get;
- }
-
- curl_setopt($curlproc, CURLOPT_URL, $url);
-
- curl_setopt($curlproc, CURLOPT_ENCODING, ""); // default encoding
- curl_setopt($curlproc, CURLOPT_HTTPHEADER,
- ["User-Agent: " . config::USER_AGENT,
- "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
- "Accept-Language: en-US,en;q=0.5",
- "Accept-Encoding: gzip",
- "Cookie: ws={$nsfw}",
- "DNT: 1",
- "Connection: keep-alive",
- "Upgrade-Insecure-Requests: 1",
- "Sec-Fetch-Dest: document",
- "Sec-Fetch-Mode: navigate",
- "Sec-Fetch-Site: none",
- "Sec-Fetch-User: ?1"]
- );
-
- curl_setopt($curlproc, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curlproc, CURLOPT_SSL_VERIFYHOST, 2);
- curl_setopt($curlproc, CURLOPT_SSL_VERIFYPEER, true);
- curl_setopt($curlproc, CURLOPT_CONNECTTIMEOUT, 30);
- curl_setopt($curlproc, CURLOPT_TIMEOUT, 30);
-
- $this->backend->assign_proxy($curlproc, $proxy);
-
- $data = curl_exec($curlproc);
-
- if(curl_errno($curlproc)){
-
- throw new Exception(curl_error($curlproc));
- }
-
- curl_close($curlproc);
- return $data;
- }
-
- public function web($get){
-
- if($get["npt"]){
-
- [$q, $proxy] = $this->backend->get($get["npt"], "web");
- $q = json_decode($q, true);
-
- $nsfw = $q["nsfw"];
- unset($q["nsfw"]);
- }else{
-
- $search = $get["s"];
- if(strlen($search) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
- $date = $get["date"];
- $nsfw = $get["nsfw"] == "yes" ? "0" : "1";
-
- $search =
- str_replace(
- [
- "!g",
- "!gi",
- "!gv",
- "!gm",
- "!b",
- "!bi",
- "!bv",
- "!bm",
- "!td",
- "!tw",
- "!tm",
- "!ty",
- "&g",
- "&gi",
- "&gv",
- "&gm",
- "&b",
- "&bi",
- "&bv",
- "&bm",
- "&td",
- "&tw",
- "&tm",
- "&ty",
- ],
- "",
- $search
- );
-
- switch($date){
-
- case "day": $search = "!td " . $search; break;
- case "week": $search = "!tw " . $search; break;
- case "month": $search = "!tm " . $search; break;
- case "year": $search = "!ty " . $search; break;
- }
-
- $q = [
- "q" => $search
- ];
- }
-
- try{
- $html = $this->get(
- $proxy,
- "https://wiby.me/",
- $q,
- $nsfw
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to fetch search page");
- }
-
- preg_match(
- '/<p class="pin"><blockquote>(?:<\/p>)?<br><a class="more" href="\/\?q=[^"]+&p=([0-9]+)">Find more\.\.\.<\/a><\/blockquote>/',
- $html,
- $nextpage
- );
-
- if(count($nextpage) === 0){
-
- $nextpage = null;
- }else{
-
- $nextpage =
- $this->backend->store(
- json_encode([
- "q" => $q["q"],
- "p" => (int)$nextpage[1],
- "nsfw" => $nsfw
- ]),
- "web",
- $proxy
- );
- }
-
- $out = [
- "status" => "ok",
- "spelling" => [
- "type" => "no_correction",
- "using" => null,
- "correction" => null
- ],
- "npt" => $nextpage,
- "answer" => [],
- "web" => [],
- "image" => [],
- "video" => [],
- "news" => [],
- "related" => []
- ];
-
- preg_match_all(
- '/<blockquote>[\s]*<a .* href="(.*)">(.*)<\/a>.*<p>(.*)<\/p>[\s]*<\/blockquote>/Ui',
- $html,
- $links
- );
-
- for($i=0; $i<count($links[0]); $i++){
-
- $out["web"][] = [
- "title" => $this->unescapehtml(trim($links[2][$i])),
- "description" => $this->unescapehtml(trim(strip_tags($links[3][$i]), ".\n\r ")),
- "url" => trim($links[1][$i]),
- "date" => null,
- "type" => "web",
- "thumb" => [
- "url" => null,
- "ratio" => null
- ],
- "sublink" => [],
- "table" => []
- ];
- }
-
- return $out;
- }
-
- private function unescapehtml($str){
-
- return html_entity_decode(
- str_replace(
- [
- "<br>",
- "<br/>",
- "</br>",
- "<BR>",
- "<BR/>",
- "</BR>",
- ],
- "\n",
- $str
- ),
- ENT_QUOTES | ENT_XML1, 'UTF-8'
- );
- }
- }
|