| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697 |
- <?php
- class ddg{
-
- public function __construct(){
-
- include "lib/backend.php";
- $this->backend = new backend("ddg");
-
- include "lib/fuckhtml.php";
- $this->fuckhtml = new fuckhtml();
- }
-
- /*
- curl functions
- */
- private const req_web = 0;
- private const req_xhr = 1;
-
- private function get($proxy, $url, $get = [], $reqtype = self::req_web){
-
- $curlproc = curl_init();
-
- if($get !== []){
- $get = http_build_query($get);
- $url .= "?" . $get;
- }
-
- curl_setopt($curlproc, CURLOPT_URL, $url);
-
- // http2 bypass
- curl_setopt($curlproc, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
-
- switch($reqtype){
- case self::req_web:
- $headers =
- ["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",
- "DNT: 1",
- "Sec-GPC: 1",
- "Connection: keep-alive",
- "Upgrade-Insecure-Requests: 1",
- "Sec-Fetch-Dest: document",
- "Sec-Fetch-Mode: navigate",
- "Sec-Fetch-Site: same-origin",
- "Sec-Fetch-User: ?1",
- "Priority: u=0, i",
- "TE: trailers"];
- break;
-
- case self::req_xhr:
- $headers =
- ["User-Agent: " . config::USER_AGENT,
- "Accept: */*",
- "Accept-Language: en-US,en;q=0.9",
- "Accept-Encoding: gzip, deflate, br, zstd",
- "Referer: https://duckduckgo.com/",
- "DNT: 1",
- "Sec-GPC: 1",
- "Connection: keep-alive",
- "Sec-Fetch-Dest: script",
- "Sec-Fetch-Mode: no-cors",
- "Sec-Fetch-Site: same-site",
- "Priority: u=1"];
- break;
- }
-
- $this->backend->assign_proxy($curlproc, $proxy);
-
- curl_setopt($curlproc, CURLOPT_ENCODING, ""); // default encoding
- curl_setopt($curlproc, CURLOPT_HTTPHEADER, $headers);
-
- 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);
-
- $data = curl_exec($curlproc);
-
- if(curl_errno($curlproc)){
- throw new Exception(curl_error($curlproc));
- }
-
- curl_close($curlproc);
- return $data;
- }
-
- public function getfilters($pagetype){
-
- $base = [
- "country" => [
- "display" => "Country",
- "option" => [
- "us-en" => "US (English)",
- "ar-es" => "Argentina",
- "au-en" => "Australia",
- "at-de" => "Austria",
- "be-fr" => "Belgium (fr)",
- "be-nl" => "Belgium (nl)",
- "br-pt" => "Brazil",
- "bg-bg" => "Bulgaria",
- "ca-en" => "Canada (en)",
- "ca-fr" => "Canada (fr)",
- "ct-ca" => "Catalonia",
- "cl-es" => "Chile",
- "cn-zh" => "China",
- "co-es" => "Colombia",
- "hr-hr" => "Croatia",
- "cz-cs" => "Czech Republic",
- "dk-da" => "Denmark",
- "ee-et" => "Estonia",
- "fi-fi" => "Finland",
- "fr-fr" => "France",
- "de-de" => "Germany",
- "gr-el" => "Greece",
- "hk-tzh" => "Hong Kong",
- "hu-hu" => "Hungary",
- "in-en" => "India (en)",
- "id-en" => "Indonesia (en)",
- "ie-en" => "Ireland",
- "il-en" => "Israel (en)",
- "it-it" => "Italy",
- "jp-jp" => "Japan",
- "kr-kr" => "Korea",
- "lv-lv" => "Latvia",
- "lt-lt" => "Lithuania",
- "my-en" => "Malaysia (en)",
- "mx-es" => "Mexico",
- "nl-nl" => "Netherlands",
- "nz-en" => "New Zealand",
- "no-no" => "Norway",
- "pk-en" => "Pakistan (en)",
- "pe-es" => "Peru",
- "ph-en" => "Philippines (en)",
- "pl-pl" => "Poland",
- "pt-pt" => "Portugal",
- "ro-ro" => "Romania",
- "ru-ru" => "Russia",
- "xa-ar" => "Saudi Arabia",
- "sg-en" => "Singapore",
- "sk-sk" => "Slovakia",
- "sl-sl" => "Slovenia",
- "za-en" => "South Africa",
- "es-ca" => "Spain (ca)",
- "es-es" => "Spain (es)",
- "se-sv" => "Sweden",
- "ch-de" => "Switzerland (de)",
- "ch-fr" => "Switzerland (fr)",
- "tw-tzh" => "Taiwan",
- "th-en" => "Thailand (en)",
- "tr-tr" => "Turkey",
- "us-es" => "US (Spanish)",
- "ua-uk" => "Ukraine",
- "uk-en" => "United Kingdom",
- "vn-en" => "Vietnam (en)"
- ]
- ]
- ];
-
- switch($pagetype){
-
- case "web":
- $base["country"]["option"] =
- array_merge(["any" => "All Regions"], $base["country"]["option"]);
-
- return array_merge($base,
- [
- "nsfw" => [
- "display" => "NSFW",
- "option" => [
- "yes" => "Yes",
- "maybe" => "Maybe",
- "no" => "No"
- ]
- ],
- "newer" => [
- "display" => "Newer than",
- "option" => "_DATE"
- ],
- "older" => [
- "display" => "Older than",
- "option" => "_DATE"
- ],
- "extendedsearch" => [
- // undefined display
- "option" => [
- "yes" => "Yes",
- "no" => "No",
- ]
- ]
- ]
- );
- break;
-
- case "images":
- return array_merge($base,
- [
- "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"
- ]
- ],
- "size" => [
- "display" => "Size",
- "option" => [
- "any" => "Any size",
- "Small" => "Small",
- "Medium" => "Medium",
- "Large" => "Large",
- "Wallpaper" => "Wallpaper"
- ]
- ],
- "color" => [
- "display" => "Colors",
- "option" => [
- "any" => "All colors",
- "Monochrome" => "Black and white",
- "Red" => "Red",
- "Orange" => "Orange",
- "Yellow" => "Yellow",
- "Green" => "Green",
- "Blue" => "Blue",
- "Purple" => "Purple",
- "Pink" => "Pink",
- "Brown" => "Brown",
- "Black" => "Black",
- "Gray" => "Gray",
- "Teal" => "Teal",
- "White" => "White"
- ]
- ],
- "type" => [
- "display" => "Type",
- "option" => [
- "any" => "All types",
- "photo" => "Photograph",
- "clipart" => "Clipart",
- "gif" => "Animated GIF",
- "transparent" => "Transparent"
- ]
- ],
- "layout" => [
- "display" => "Layout",
- "option" => [
- "any" => "All layouts",
- "Square" => "Square",
- "Tall" => "Tall",
- "Wide" => "Wide"
- ]
- ],
- "license" => [
- "display" => "License",
- "option" => [
- "any" => "All licenses",
- "Any" => "All Creative Commons",
- "Public" => "Public domain",
- "Share" => "Free to Share and Use",
- "ShareCommercially" => "Free to Share and Use Commercially",
- "Modify" => "Free to Modify, Share, and Use",
- "ModifyCommercially" => "Free to Modify, Share, and Use Commercially"
- ]
- ]
- ]
- );
- break;
-
- case "videos":
- return array_merge($base,
- [
- "nsfw" => [
- "display" => "NSFW",
- "option" => [
- "yes" => "Yes",
- "maybe" => "Maybe",
- "no" => "No"
- ]
- ],
- "date" => [
- "display" => "Time fetched",
- "option" => [
- "any" => "Any time",
- "d" => "Past day",
- "w" => "Past week",
- "m" => "Past month"
- ]
- ],
- "resolution" => [ //videoDefinition
- "display" => "Resolution",
- "option" => [
- "any" => "Any resolution",
- "high" => "High definition",
- "standard" => "Standard definition"
- ]
- ],
- "duration" => [ // videoDuration
- "display" => "Duration",
- "option" => [
- "any" => "Any duration",
- "short" => "Short (>5min)",
- "medium" => "Medium (5-20min)",
- "long" => "Long (<20min)"
- ]
- ],
- "license" => [
- "display" => "License",
- "option" => [
- "any" => "Any license",
- "creativeCommon" => "Creative Commons",
- "youtube" => "YouTube Standard"
- ]
- ]
- ]
- );
- break;
-
- case "news":
- return array_merge($base,
- [
- "nsfw" => [
- "display" => "NSFW",
- "option" => [
- "yes" => "Yes",
- "maybe" => "Maybe",
- "no" => "No"
- ]
- ],
- "date" => [
- "display" => "Time posted",
- "option" => [
- "any" => "Any time",
- "d" => "Past day",
- "w" => "Past week",
- "m" => "Past month"
- ]
- ]
- ]
- );
- break;
- }
- }
-
- public function web($get){
-
- if($get["npt"]){
-
- [$raw_data, $proxy] = $this->backend->get($get["npt"], "web");
-
- $raw_data = explode(",", $raw_data, 2);
-
- if($raw_data[0] == "0"){
-
- return $this->web_html($get, [$raw_data[1], $proxy]);
- }
-
- return $this->web_full($get, [$raw_data[1], $proxy]);
- }else{
-
- // we have $get["s"]
- if(
- strpos($get["s"], "\"") !== false || // contains quotes
- strpos($get["s"], ":") !== false // contains potential site: operator or whatever the fuck
- ){
-
- return $this->web_html($get);
- }
-
- // no quotes sent, do full web search
- return $this->web_full($get);
- }
- }
-
- public function web_html($get, $npt = null){
-
- $out = [
- "status" => "ok",
- "spelling" => [
- "type" => "no_correction",
- "using" => null,
- "correction" => null
- ],
- "npt" => null,
- "answer" => [],
- "web" => [],
- "image" => [],
- "video" => [],
- "news" => [],
- "related" => []
- ];
-
- if($npt !== null){
-
- [$get_filters, $proxy] = $npt;
-
- $get_filters = json_decode($get_filters, true);
- }else{
-
- if(strlen($get["s"]) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
-
- // generate filters
- $get_filters = [
- "q" => $get["s"]
- ];
-
- if($get["country"] == "any"){
-
- $get_filters["kl"] = "wt-wt";
- }else{
-
- $get_filters["kl"] = $get["country"];
- }
-
- switch($get["nsfw"]){
-
- case "yes": $get_filters["kp"] = "-2"; break;
- case "maybe": $get_filters["kp"] = "-1"; break;
- case "no": $get_filters["kp"] = "1"; break;
- }
-
- $df = true;
-
- if($get["newer"] === false){
-
- if($get["older"] !== false){
-
- $start = 36000;
- $end = $get["older"];
- }else{
-
- $df = false;
- }
- }else{
-
- $start = $get["newer"];
-
- if($get["older"] !== false){
-
- $end = $get["older"];
- }else{
-
- $end = time();
- }
- }
-
- if($df === true){
- $get_filters["df"] = date("Y-m-d", $start) . ".." . date("Y-m-d", $end);
- }
- }
-
- //
- // Get HTML
- //
- try{
- $html = $this->get(
- $proxy,
- "https://html.duckduckgo.com/html/",
- $get_filters
- );
- }catch(Exception $e){
-
- throw new Exception("Failed to fetch search page");
- }
-
- //$html = file_get_contents("scraper/ddg.html");
-
- $this->fuckhtml->load($html);
-
- //
- // Get next page token
- //
- $forms =
- $this->fuckhtml
- ->getElementsByTagName(
- "form"
- );
-
- foreach($forms as $form){
-
- if(
- isset($form["attributes"]["id"]) &&
- $form["attributes"]["id"] == "challenge-form"
- ){
-
- throw new Exception("DuckDuckGo returned an image captcha");
- }
- }
-
- foreach(array_reverse($forms) as $form){
-
- $this->fuckhtml->load($form);
-
- $input_probe =
- $this->fuckhtml
- ->getElementsByClassName(
- "btn--alt",
- "input"
- );
-
- if(count($input_probe) !== 0){
-
- // found next page!
- $inputs =
- $this->fuckhtml
- ->getElementsByAttributeValue(
- "type",
- "hidden",
- "input"
- );
-
- $query = [];
-
- foreach($inputs as $q){
-
- $query[
- $this->fuckhtml
- ->getTextContent(
- $q["attributes"]["name"]
- )
- ] =
- $this->fuckhtml
- ->getTextContent(
- $q["attributes"]["value"]
- );
- }
-
- $out["npt"] =
- $this->backend->store(
- "0," . json_encode($query),
- "web",
- $proxy
- );
- break;
- }
- }
-
- // reset
- $this->fuckhtml->load($html);
-
- //
- // parse wikipedia answer
- //
- $wiki_wrapper =
- $this->fuckhtml
- ->getElementsByClassName(
- "zci-wrapper",
- "div"
- );
-
- if(count($wiki_wrapper) !== 0){
-
- $this->fuckhtml->load($wiki_wrapper[0]);
-
- $a =
- $this->fuckhtml
- ->getElementsByTagName(
- "a"
- );
-
- if(count($a) !== 0){
-
- $link =
- $this->unshiturl(
- $this->fuckhtml
- ->getTextContent(
- $a[0]["attributes"]["href"]
- )
- );
- }else{
-
- $link = null;
- }
-
- $title =
- $this->fuckhtml
- ->getElementsByTagName(
- "h1"
- );
-
- if(count($title) !== 0){
-
- $title =
- $this->fuckhtml
- ->getTextContent(
- $title[0]
- );
- }else{
-
- $title = null;
- }
-
- $description =
- $this->fuckhtml
- ->getElementById(
- "zero_click_abstract",
- "div"
- );
-
- if($description !== false){
-
- $this->fuckhtml->load($description);
-
- $thumb =
- $this->fuckhtml
- ->getElementsByTagName(
- "img"
- );
-
- if(count($thumb) !== 0){
-
- $thumb =
- $this->fuckhtml
- ->getTextContent(
- $thumb[0]["attributes"]["src"]
- );
- }else{
-
- $thumb = null;
- }
-
- $as =
- $this->fuckhtml
- ->getElementsByTagName(
- "a"
- );
-
- foreach($as as $a){
-
- $description["innerHTML"] =
- str_replace(
- $a["outerHTML"],
- "",
- $description["innerHTML"]
- );
- }
-
- $description =
- $this->fuckhtml
- ->getTextContent(
- $description
- );
-
- $out["answer"][] = [
- "title" => $title,
- "description" => [
- [
- "type" => "text",
- "value" => $description
- ]
- ],
- "url" => $link,
- "thumb" => $thumb,
- "table" => [],
- "sublink" => []
- ];
- }
-
- // reset
- $this->fuckhtml->load($html);
- }
-
- //
- // Get results
- //
- $results =
- $this->fuckhtml
- ->getElementsByClassName(
- "result",
- "div"
- );
-
- foreach($results as $result){
-
- $this->fuckhtml->load($result);
-
- if(stripos($result["attributes"]["class"], "result--ad") !== false){
-
- // found an ad
- continue;
- }
-
- $title =
- $this->fuckhtml
- ->getElementsByTagName(
- "h2"
- );
-
- if(count($title) === 0){
-
- // should not happen
- continue;
- }
-
- $title =
- $this->fuckhtml
- ->getTextContent(
- $title[0]
- );
-
- $description_obj =
- $this->fuckhtml
- ->getElementsByClassName(
- "result__snippet",
- "a"
- );
-
- if(count($description_obj) === 0){
-
- $description = null;
- }else{
-
- $description =
- $this->titledots(
- $this->fuckhtml
- ->getTextContent(
- $description_obj[0]
- )
- );
- }
-
- $url =
- $this->fuckhtml
- ->getTextContent(
- $description_obj[0]["attributes"]["href"]
- );
-
- $out["web"][] = [
- "title" => $this->titledots($title),
- "description" => $description,
- "url" => $this->unshiturl($url),
- "date" => null,
- "type" => "web",
- "thumb" => [
- "ratio" => null,
- "url" => null
- ],
- "sublink" => [],
- "table" => []
- ];
- }
-
- return $out;
- }
-
- public function web_full($get, $npt = null){
-
- $out = [
- "status" => "ok",
- "spelling" => [
- "type" => "no_correction",
- "using" => null,
- "correction" => null
- ],
- "npt" => null,
- "answer" => [],
- "web" => [],
- "image" => [],
- "video" => [],
- "news" => [],
- "related" => []
- ];
-
- if($npt !== null){
-
- [$js_link, $proxy] = $npt;
- $js_link = "https://links.duckduckgo.com" . $js_link;
-
- $html = "";
- $get["extendedsearch"] = "no";
-
- }else{
- if(strlen($get["s"]) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
-
- // generate filters
- $get_filters = [
- "q" => $get["s"]
- ];
-
- if($get["country"] == "any"){
-
- $get_filters["kl"] = "wt-wt";
- }else{
-
- $get_filters["kl"] = $get["country"];
- }
-
- switch($get["nsfw"]){
-
- case "yes": $get_filters["kp"] = "-2"; break;
- case "maybe": $get_filters["kp"] = "-1"; break;
- case "no": $get_filters["kp"] = "1"; break;
- }
-
- $df = true;
-
- if($get["newer"] === false){
-
- if($get["older"] !== false){
-
- $start = 36000;
- $end = $get["older"];
- }else{
-
- $df = false;
- }
- }else{
-
- $start = $get["newer"];
-
- if($get["older"] !== false){
-
- $end = $get["older"];
- }else{
-
- $end = time();
- }
- }
-
- if($df === true){
- $get_filters["df"] = date("Y-m-d", $start) . ".." . date("Y-m-d", $end);
- }
-
- //
- // Get HTML
- //
- try{
- $html = $this->get(
- $proxy,
- "https://duckduckgo.com/",
- $get_filters
- );
- }catch(Exception $e){
-
- throw new Exception("Failed to fetch search page");
- }
-
- $this->fuckhtml->load($html);
-
- $script =
- $this->fuckhtml
- ->getElementById(
- "deep_preload_link",
- "link"
- );
-
- if(
- $script === null ||
- !isset($script["attributes"]["href"])
- ){
-
- throw new Exception("Failed to grep d.js");
- }
-
- $js_link =
- $this->fuckhtml
- ->getTextContent(
- $script["attributes"]["href"]
- );
- }
-
- //
- // Get d.js
- //
- try{
- $js = $this->get(
- $proxy,
- $js_link,
- [],
- ddg::req_xhr
- );
-
- }catch(Exception $e){
-
- throw new Exception("Failed to fetch d.js");
- }
-
- //$js = file_get_contents("scraper/fuck.js");
- //echo htmlspecialchars($js);
-
- $js_tmp =
- preg_split(
- '/DDG\.pageLayout\.load\(\s*\'d\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) <= 1){
-
- //
- // Detect javascript challenge
- //
- if(
- preg_match(
- '/DDG\.deep\.initialize\(\'([^\']+)\'\ *\+ *jsa/i',
- $js,
- $challenge_url
- )
- ){
-
- throw new Exception("DuckDuckGo returned a JSA challenge");
- }
-
- //
- // Detect JavaScript anomaly failure thingy
- //
- if(
- preg_match(
- '/DDG.deep.anomalyDetectionBlock\({/',
- $js
- )
- ){
-
- throw new Exception("DuckDuckGo detected an anomaly in the Javascript challenge response");
- }
-
- throw new Exception("Failed to grep pageLayout(d)");
- }
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json === null){
-
- throw new Exception("Failed to decode JSON");
- }
-
- //
- // Get search results + NPT token
- //
- foreach($json as $item){
-
- if(isset($item["c"])){
-
- if(
- !isset($item["s"]) &&
- isset($item["t"]) &&
- (
- $item["t"] == "DEEP_ERROR_NO_RESULTS" ||
- $item["t"] == "DEEP_SIMPLE_NO_RESULTS"
- )
- ){
-
- return $out;
- }
-
- $table = [];
-
- // get youtube video information
- if(isset($item["video"]["thumbnail_url_template"])){
-
- $thumb =
- [
- "ratio" => "16:9",
- "url" => $this->bingimg($item["video"]["thumbnail_url_template"])
- ];
- }else{
-
- $thumb =
- [
- "ratio" => null,
- "url" => null
- ];
- }
-
- // get table items
- if(isset($item["rf"])){
-
- foreach($item["rf"] as $hint){
-
- if(
- !isset($hint["label"]["text"]) ||
- !isset($hint["items"][0]["text"])
- ){
-
- continue;
- }
-
- $text = [];
-
- foreach($hint["items"] as $text_part){
-
- $text[] = $text_part["text"];
- }
-
- $text = implode(", ", $text);
-
- if(is_numeric($text)){
-
- $text = number_format((string)$text);
- }
-
- $table[$hint["label"]["text"]] = $text;
- }
- }
-
- // get ratings
- if(isset($item["ar"])){
-
- foreach($item["ar"] as $rating){
-
- if(
- isset($rating["aggregateRating"]["bestRating"]) &&
- isset($rating["aggregateRating"]["ratingValue"])
- ){
-
- $text = $rating["aggregateRating"]["ratingValue"] . "/" . $rating["aggregateRating"]["bestRating"];
-
- if(isset($rating["aggregateRating"]["reviewCount"])){
-
- $text .= " (" . number_format($rating["aggregateRating"]["reviewCount"]) . " votes)";
- }
-
- $table["Rating"] = $text;
- }
- }
- }
-
- // get sublinks
- $sublinks = [];
-
- if(isset($item["l"])){
-
- foreach($item["l"] as $sublink){
-
- $sublinks[] = [
- "title" => $this->titledots($sublink["text"]),
- "description" => $this->titledots($sublink["snippet"]),
- "url" => $sublink["targetUrl"],
- "date" => null
- ];
- }
- }
-
- $title =
- $this->titledots(
- $this->fuckhtml
- ->getTextContent(
- $item["t"]
- )
- );
-
- if(
- $title == "EOF" &&
- strpos(
- $item["c"],
- "google"
- )
- ){
-
- continue;
- }
-
- // parse search result
- $out["web"][] = [
- "title" =>
- $this->titledots(
- $this->fuckhtml
- ->getTextContent(
- $item["t"]
- )
- ),
- "description" =>
- isset($item["a"]) ?
- $this->titledots(
- $this->fuckhtml
- ->getTextContent(
- $item["a"]
- )
- ) : null,
- "url" => $this->unshiturl($item["c"]),
- "date" =>
- isset($item["e"]) ?
- strtotime($item["e"]) : null,
- "type" => "web",
- "thumb" => $thumb,
- "sublink" => $sublinks,
- "table" => $table
- ];
- continue;
- }
-
- if(isset($item["n"])){
-
- // get NPT
- $out["npt"] =
- $this->backend->store(
- "1," . $item["n"],
- "web",
- $proxy
- );
- continue;
- }
- }
-
- //
- // Get spelling
- //
- $js_tmp =
- preg_split(
- '/DDG\.page\.showMessage\(\s*\'spelling\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- // parse spelling
- // qc=2: including
-
- switch((int)$json["qc"]){
-
- case 2:
- $type = "including";
- break;
-
- default:
- $type = "not_many";
- break;
- }
-
- $out["spelling"] = [
- "type" => $type,
- "using" =>
- $this->fuckhtml
- ->getTextContent(
- $json["suggestion"]
- ),
- "correction" => html_entity_decode($json["recourseText"])
- ];
- }
- }
-
- //
- // Get images
- //
- $js_tmp =
- preg_split(
- '/DDG\.duckbar\.load\(\s*\'images\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- foreach($json["results"] as $image){
-
- $ratio = $this->bingratio((int)$image["width"], (int)$image["height"]);
-
- $out["image"][] = [
- "title" => $image["title"],
- "source" => [
- [
- "url" => $image["image"],
- "width" => (int)$image["width"],
- "height" => (int)$image["height"]
- ],
- [
- "url" => $this->bingimg($image["thumbnail"]),
- "width" => $ratio[0],
- "height" => $ratio[1]
- ]
- ],
- "url" => $this->unshiturl($image["url"])
- ];
- }
- }
- }
-
- //
- // Get videos
- //
- $js_tmp =
- preg_split(
- '/DDG\.duckbar\.load\(\s*\'videos\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- foreach($json["results"] as $video){
-
- $thumb = [
- "ratio" => null,
- "url" => null
- ];
-
- foreach(["large", "medium", "small"] as $contender){
-
- if(isset($video["images"][$contender])){
-
- $thumb = [
- "ratio" => "16:9",
- "url" => $this->bingimg($video["images"][$contender])
- ];
- break;
- }
- }
-
- $out["video"][] = [
- "title" => $this->titledots($video["title"]),
- "description" =>
- $video["description"] != "" ?
- $this->titledots($video["description"]) : null,
- "date" =>
- isset($video["published"]) ?
- strtotime($video["published"]) : null,
- "duration" =>
- $video["duration"] != "" ?
- $this->hms2int($video["duration"]) : null,
- "views" =>
- isset($video["statistics"]["viewCount"]) ?
- (int)$video["statistics"]["viewCount"] : null,
- "thumb" => $thumb,
- "url" => $this->unshiturl($video["content"])
- ];
- }
- }
- }
-
- //
- // Get news
- //
- $js_tmp =
- preg_split(
- '/DDG\.duckbar\.load\(\s*\'news\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- foreach($json["results"] as $news){
-
- if(isset($news["image"])){
-
- $thumb = [
- "ratio" => "16:9",
- "url" => $news["image"]
- ];
- }else{
-
- $thumb = [
- "ratio" => null,
- "url" => null
- ];
- }
-
- $out["news"][] = [
- "title" => $news["title"],
- "description" =>
- $this->fuckhtml
- ->getTextContent(
- $news["excerpt"]
- ),
- "date" => (int)$news["date"],
- "thumb" => $thumb,
- "url" => $news["url"]
- ];
- }
- }
- }
-
- //
- // Get related searches
- //
- $js_tmp =
- preg_split(
- '/DDG\.duckbar\.loadModule\(\s*\'related_searches\'\s*,\s*/',
- $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- foreach($json["results"] as $related){
-
- $out["related"][] = $related["text"];
- }
- }
- }
-
- //
- // Get instant answers
- //
- $js_tmp =
- preg_split(
- '/DDG\.duckbar\.add\(\s*/',
- $html . $js,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
-
- if($json !== null){
-
- $json = $json["data"];
- $table = [];
- $sublinks = [];
- $description = [];
-
- // get official website
- if(
- isset($json["OfficialWebsite"]) &&
- $json["OfficialWebsite"] !== null
- ){
-
- $sublinks["Website"] = $json["OfficialWebsite"];
- }
-
- // get sublinks & table elements
- if(isset($json["Infobox"]["content"])){
- foreach($json["Infobox"]["content"] as $info){
-
- if($info["data_type"] == "string"){
-
- // add table element
- $table[$info["label"]] = $info["value"];
- continue;
- }
-
- if($info["data_type"] == "wd_description"){
-
- $description[] = [
- "type" => "quote",
- "value" => $info["value"]
- ];
- continue;
- }
-
- // add sublink
- switch($info["data_type"]){
-
- case "official_site":
- case "official_website":
- $type = "Website";
- break;
-
- case "wikipedia": $type = "Wikipedia"; break;
- case "itunes": $type = "iTunes"; break;
- case "amazon": $type = "Amazon"; break;
-
- case "imdb_title_id":
- case "imdb_id":
- case "imdb_name_id":
- $type = "IMDb";
- $delim = substr($info["value"], 0, 2);
-
- if($delim == "nm"){
-
- $prefix = "https://www.imdb.com/name/";
- }elseif($delim == "tt"){
-
- $prefix = "https://www.imdb.com/title/";
- }elseif($delim == "co"){
-
- $prefix = "https://www.imdb.com/search/title/?companies=";
- }else{
-
- $prefix = "https://www.imdb.com/title/";
- }
- break;
- case "imdb_name_id": $prefix = "https://www.imdb.com/name/"; $type = "IMDb"; break;
- case "twitter_profile": $prefix = "https://twitter.com/"; $type = "Twitter"; break;
- case "instagram_profile": $prefix = "https://instagram.com/"; $type = "Instagram"; break;
- case "facebook_profile": $prefix = "https://facebook.com/"; $type = "Facebook"; break;
- case "spotify_artist_id": $prefix = "https://open.spotify.com/artist/"; $type = "Spotify"; break;
- case "itunes_artist_id": $prefix = "https://music.apple.com/us/artist/"; $type = "iTunes"; break;
- case "rotten_tomatoes": $prefix = "https://rottentomatoes.com/"; $type = "Rotten Tomatoes"; break;
- case "youtube_channel": $prefix = "https://youtube.com/channel/"; $type = "YouTube"; break;
- case "soundcloud_id": $prefix = "https://soundcloud.com/"; $type = "SoundCloud"; break;
-
- default:
- $prefix = null;
- $type = false;
- }
-
- if($type !== false){
-
- if($prefix === null){
-
- $sublinks[$type] = $info["value"];
- }else{
-
- $sublinks[$type] = $prefix . $info["value"];
- }
- }
- }
- }
-
- if(isset($json["Abstract"])){
-
- $description = $this->parse_rich_text($json["Abstract"]);
- }
-
- if(
- !isset($json["Image"]) ||
- $json["Image"] == "" ||
- $json["Image"] === null ||
- $json["Image"] == "https://duckduckgo.com/i/"
- ){
-
- $image = null;
- }else{
-
- if(
- preg_match(
- '/^https?:\/\//',
- $json["Image"]
- )
- ){
-
- $image = $json["Image"];
- }else{
-
- $image = "https://duckduckgo.com" . $json["Image"];
- }
- }
-
- $out["answer"][] = [
- "title" => $json["Heading"],
- "description" => $description,
- "url" => $json["AbstractURL"],
- "thumb" => $image,
- "table" => $table,
- "sublink" => $sublinks
- ];
- }
- }
-
- if($get["extendedsearch"] == "no"){
-
- return $out;
- }
-
- //
- // Parse additional data endpoints
- //
- //nrj('/js/spice/dictionary/definition/create', null, null, null, null, 'dictionary_definition');
-
- preg_match_all(
- '/nrj\(\s*\'([^\']+)\'/',
- $js,
- $nrj
- );
-
- if(isset($nrj[1])){
-
- foreach($nrj[1] as $potential_endpoint){
-
- //
- // Probe for wordnik definition
- //
- preg_match(
- '/\/js\/spice\/dictionary\/definition\/([^\/]+)/',
- $potential_endpoint,
- $word
- );
-
- if(isset($word[1])){
-
- $word = $word[1];
-
- // found wordnik definition & word
- try{
- $nik =
- $this->get(
- $proxy,
- "https://duckduckgo.com/js/spice/dictionary/definition/" . $word,
- [],
- ddg::req_xhr
- );
-
- }catch(Exception $e){
-
- // fail gracefully
- return $out;
- }
-
- // remove javascript
- $js_tmp =
- preg_split(
- '/ddg_spice_dictionary_definition\(\s*/',
- $nik,
- 2
- );
-
- if(count($js_tmp) > 1){
-
- $nik =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $js_tmp[1]
- ),
- true
- );
- }
-
- if($nik === null){
-
- return $out;
- }
-
- $answer_cat = [];
- $answer = [];
-
- foreach($nik as $snippet){
-
- if(!isset($snippet["partOfSpeech"])){ continue; }
-
- $push = [];
-
- // add text snippet
- if(isset($snippet["text"])){
-
- $push[] = [
- "type" => "text",
- "value" =>
- $this->fuckhtml
- ->getTextContent(
- $snippet["text"]
- )
- ];
- }
-
- // add example uses
- if(isset($snippet["exampleUses"])){
-
- foreach($snippet["exampleUses"] as $example){
-
- $push[] = [
- "type" => "quote",
- "value" => "\"" .
- $this->fuckhtml
- ->getTextContent(
- $example["text"]
- ) . "\""
- ];
- }
- }
-
- // add citations
- if(isset($snippet["citations"])){
-
- foreach($snippet["citations"] as $citation){
-
- if(!isset($citation["cite"])){ continue; }
-
- $text =
- $this->fuckhtml
- ->getTextContent(
- $citation["cite"]
- );
-
- if(isset($citation["source"])){
-
- $text .=
- " - " .
- $this->fuckhtml
- ->getTextContent(
- $citation["source"]
- );
- }
-
- $push[] = [
- "type" => "quote",
- "value" => $text
- ];
- }
- }
-
- // add related words
- if(isset($snippet["relatedWords"])){
-
- $relations = [];
-
- foreach($snippet["relatedWords"] as $related){
-
- $words = [];
- foreach($related["words"] as $wrd){
-
- $words[] =
- $this->fuckhtml
- ->getTextContent(
- $wrd
- );
- }
-
- if(
- count($words) !== 0 &&
- isset($related["relationshipType"])
- ){
-
- $relations[ucfirst($related["relationshipType"]) . "s"] =
- implode(", ", $words);
- }
- }
-
- foreach($relations as $relation_title => $relation_content){
-
- $push[] = [
- "type" => "quote",
- "value" => $relation_title . ": " . $relation_content
- ];
- }
- }
-
-
- if(count($push) !== 0){
-
- // push data to answer_cat
- if(!isset($answer_cat[$snippet["partOfSpeech"]])){
-
- $answer_cat[$snippet["partOfSpeech"]] = [];
- }
-
- $answer_cat[$snippet["partOfSpeech"]] =
- array_merge(
- $answer_cat[$snippet["partOfSpeech"]],
- $push
- );
- }
- }
-
- foreach($answer_cat as $answer_title => $answer_content){
-
- $i = 0;
- $answer[] = [
- "type" => "title",
- "value" => $answer_title
- ];
-
- $old_type = $answer[count($answer) - 1]["type"];
-
- foreach($answer_content as $ans){
-
- if(
- $ans["type"] == "text" &&
- $old_type == "text"
- ){
-
- $i++;
- $c = count($answer) - 1;
-
- // append text to existing textfield
- $answer[$c] = [
- "type" => "text",
- "value" => $answer[$c]["value"] . "\n" . $i . ". " . $ans["value"]
- ];
-
- }elseif($ans["type"] == "text"){
-
- $i++;
- $answer[] = [
- "type" => "text",
- "value" => $i . ". " . $ans["value"]
- ];
- }else{
-
- // append normally
- $answer[] = $ans;
- }
-
- $old_type = $ans["type"];
- }
- }
-
- // yeah.. sometimes duckduckgo doesnt give us a definition back
- if(count($answer) !== 0){
-
- $out["answer"][] = [
- "title" => ucfirst(rawurldecode($word)),
- "description" => $answer,
- "url" => "https://www.wordnik.com/words/" . $word,
- "thumb" => null,
- "table" => [],
- "sublink" => []
- ];
- }
- }
-
- //
- // Parse stackoverflow answer
- //
- if(
- preg_match(
- '/^\/a\.js.*src_id=stack_overflow/',
- $potential_endpoint
- )
- ){
-
- // found stackoverflow answer
- try{
- $json =
- $this->get(
- $proxy,
- "https://duckduckgo.com" . $potential_endpoint,
- [],
- ddg::req_xhr
- );
-
- }catch(Exception $e){
-
- // fail gracefully
- return $out;
- }
-
- $json = explode("DDG.duckbar.add_array(", $json, 2);
-
- if(count($json) === 2){
-
- $json =
- json_decode(
- $this->fuckhtml
- ->extract_json(
- $json[1]
- ),
- true
- );
-
- if(
- $json !== null &&
- isset($json[0]["data"])
- ){
-
- $json = $json[0]["data"];
-
- foreach($json as $answer){
-
- if(isset($answer["Heading"])){
-
- $title = $answer["Heading"];
- }elseif(isset($answer["title"])){
-
- $title = $answer["title"];
- }else{
-
- $title = null;
- }
-
- if(
- $title !== null &&
- isset($answer["Abstract"])
- ){
-
- $description = $this->parse_rich_text($answer["Abstract"]);
-
- $out["answer"][] = [
- "title" => $title,
- "description" => $description,
- "url" => $answer["AbstractURL"],
- "thumb" => null,
- "table" => [],
- "sublink" => []
- ];
- }
- }
- }
- }
- }
- }
- }
-
- return $out;
- }
-
- public function image($get){
-
- if($get["npt"]){
-
- [$js_link, $proxy] = $this->backend->get($get["npt"], "images");
-
- }else{
- if(strlen($get["s"]) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
-
- $filters = [];
-
- if($get["date"] != "any"){ $filters[] = "time:{$get["date"]}"; }
- if($get["size"] != "any"){ $filters[] = "size:{$get["size"]}"; }
- if($get["color"] != "any"){ $filters[] = "color:{$get["color"]}"; }
- if($get["type"] != "any"){ $filters[] = "type:{$get["type"]}"; }
- if($get["layout"] != "any"){ $filters[] = "layout:{$get["layout"]}"; }
- if($get["license"] != "any"){ $filters[] = "license:{$get["license"]}"; }
-
- $filters = implode(",", $filters);
-
- $get_filters = [
- "q" => $get["s"],
- "iax" => "images",
- "ia" => "images"
- ];
-
- if($filters != ""){
-
- $get_filters["iaf"] = $filters;
- }
-
- $nsfw = $get["nsfw"] == "yes" ? "-1" : "1";
- $get_filters["kp"] = $nsfw;
-
- try{
-
- $html = $this->get(
- $proxy,
- "https://duckduckgo.com",
- $get_filters,
- ddg::req_web
- );
- }catch(Exception $err){
-
- throw new Exception("Failed to fetch search page");
- }
-
- preg_match(
- '/vqd="([0-9-]+)"/',
- $html,
- $vqd
- );
-
- if(!isset($vqd[1])){
-
- throw new Exception("Failed to grep VQD token");
- }
-
- $js_link =
- "i.js?" .
- http_build_query([
- "l" => $get["country"],
- "o" => "json",
- "q" => $get["s"],
- "vqd" => $vqd[1],
- "f" => $filters,
- "p" => $nsfw
- ]);
- }
-
- try{
-
- $json =
- $this->get(
- $proxy,
- "https://duckduckgo.com/" . $js_link,
- [],
- ddg::req_xhr
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to get i.js");
- }
-
- $json = json_decode($json, true);
-
- if($json === null){
-
- throw new Exception("Failed to decode JSON");
- }
-
- $out = [
- "status" => "ok",
- "npt" => null,
- "image" => []
- ];
-
- if(!isset($json["results"])){
-
- return $out;
- }
-
- // get npt
- if(
- isset($json["next"]) &&
- $json["next"] !== null
- ){
-
- $vqd = null;
-
- if(isset($vqd[1])){
-
- $vqd = $vqd[1];
- }else{
-
- $vqd = array_values($json["vqd"]);
-
- if(count($vqd) > 0){
-
- $vqd = $vqd[0];
- }
- }
-
- if($vqd !== null){
-
- $out["npt"] =
- $this->backend->store(
- $json["next"] . "&vqd=" . $vqd,
- "images",
- $proxy
- );
- }
- }
-
- // get images
- foreach($json["results"] as $image){
-
- $ratio =
- $this->bingratio(
- (int)$image["width"],
- (int)$image["height"]
- );
-
- $out["image"][] = [
- "title" => $this->titledots($image["title"]),
- "source" => [
- [
- "url" => $image["image"],
- "width" => (int)$image["width"],
- "height" => (int)$image["height"]
- ],
- [
- "url" => $this->bingimg($image["thumbnail"]),
- "width" => $ratio[0],
- "height" => $ratio[1]
- ]
- ],
- "url" => $this->unshiturl($image["url"])
- ];
- }
-
- return $out;
- }
-
- public function video($get){
-
- if($get["npt"]){
-
- [$js_link, $proxy] = $this->backend->get($get["npt"], "videos");
-
- }else{
- if(strlen($get["s"]) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
-
- $get_filters = [
- "q" => $get["s"],
- "iax" => "videos",
- "ia" => "videos"
- ];
-
- switch($get["nsfw"]){
-
- case "yes": $nsfw = "-2"; break;
- case "maybe": $nsfw = "-1"; break;
- case "no": $nsfw = "1"; break;
- }
-
- $filters = [];
-
- if($get["date"] != "any"){ $filters[] = "publishedAfter:{$date}"; }
- if($get["resolution"] != "any"){ $filters[] = "videoDefinition:{$resolution}"; }
- if($get["duration"] != "any"){ $filters[] = "videoDuration:{$duration}"; }
- if($get["license"] != "any"){ $filters[] = "videoLicense:{$license}"; }
-
- $filters = implode(",", $filters);
-
- if($filters != ""){
-
- $get_filters["iaf"] = $filters;
- }
-
- try{
-
- $html =
- $this->get(
- $proxy,
- "https://duckduckgo.com/",
- $get_filters,
- ddg::req_web
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to fetch search page");
- }
-
- preg_match(
- '/vqd="([0-9-]+)"/',
- $html,
- $vqd
- );
-
- if(!isset($vqd[1])){
-
- throw new Exception("Failed to grep VQD token");
- }
-
- $js_link =
- "v.js?" .
- http_build_query([
- "l" => $get["country"],
- "o" => "json",
- "sr" => "1",
- "q" => $get["s"],
- "vqd" => $vqd[1],
- "f" => $filters,
- "p" => $nsfw
- ]);
- }
-
- try{
-
- $json =
- $this->get(
- $proxy,
- "https://duckduckgo.com/" . $js_link,
- [],
- ddg::req_xhr
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to fetch JSON");
- }
-
- $json = json_decode($json, true);
-
- if($json === null){
-
- throw new Exception("Failed to decode JSON");
- }
-
- $out = [
- "status" => "ok",
- "npt" => null,
- "video" => [],
- "author" => [],
- "livestream" => [],
- "playlist" => [],
- "reel" => []
- ];
-
- if(!isset($json["results"])){
-
- return $out;
- }
-
- // get NPT
- if(
- isset($json["next"]) &&
- $json["next"] !== null
- ){
-
- $out["npt"] =
- $this->backend->store(
- $json["next"],
- "videos",
- $proxy
- );
- }
-
- foreach($json["results"] as $video){
-
- $thumb = [
- "ratio" => null,
- "url" => null
- ];
-
- foreach(["large", "medium", "small"] as $contender){
-
- if(isset($video["images"][$contender])){
-
- $thumb = [
- "ratio" => "16:9",
- "url" => $this->bingimg($video["images"][$contender])
- ];
- break;
- }
- }
-
- $out["video"][] = [
- "title" => $this->titledots($video["title"]),
- "description" => $this->titledots($video["description"]),
- "author" => [
- "name" =>
- (
- isset($video["uploader"]) &&
- $video["uploader"] != ""
- ) ?
- $video["uploader"] : null,
- "url" => null,
- "avatar" => null
- ],
- "date" =>
- (
- isset($video["published"]) &&
- $video["published"] != ""
- ) ?
- strtotime($video["published"]) : null,
- "duration" =>
- (
- isset($video["duration"]) &&
- $video["duration"] != ""
- ) ?
- $this->hms2int($video["duration"]) : null,
- "views" =>
- isset($video["statistics"]["viewCount"]) ?
- (int)$video["statistics"]["viewCount"] : null,
- "thumb" => $thumb,
- "url" => $this->unshiturl($video["content"])
- ];
- }
-
- return $out;
- }
-
- public function news($get){
-
- if($get["npt"]){
-
- [$js_link, $proxy] = $this->backend->get($get["npt"], "news");
-
- }else{
- if(strlen($get["s"]) === 0){
-
- throw new Exception("Search term is empty!");
- }
-
- $proxy = $this->backend->get_ip();
-
- $get_filters = [
- "q" => $get["s"],
- "iar" => "news",
- "ia" => "news"
- ];
-
- if($get["date"] != "any"){
-
- $date = $get["date"];
- $get_filters["df"] = $date;
- }else{
-
- $date = "";
- }
-
- switch($get["nsfw"]){
-
- case "yes": $get_filters["kp"] = "-2"; break;
- case "maybe": $get_filters["kp"] = "-1"; break;
- case "no": $get_filters["kp"] = "1"; break;
- }
-
- try{
-
- $html =
- $this->get(
- $proxy,
- "https://duckduckgo.com/",
- $get_filters,
- ddg::req_web
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to fetch search page");
- }
-
- preg_match(
- '/vqd="([0-9-]+)"/',
- $html,
- $vqd
- );
-
- if(!isset($vqd[1])){
-
- throw new Exception("Failed to grep VQD token");
- }
-
- $js_link =
- "news.js?" .
- http_build_query([
- "l" => $get["country"],
- "o" => "json",
- "noamp" => "1",
- "m" => "30",
- "q" => $get["s"],
- "vqd" => $vqd[1],
- "p" => $get_filters["kp"],
- "df" => $date,
- "u" => "bing"
- ]);
- }
-
- try{
-
- $json =
- $this->get(
- $proxy,
- "https://duckduckgo.com/" . $js_link,
- [],
- ddg::req_xhr
- );
- }catch(Exception $error){
-
- throw new Exception("Failed to fetch JSON");
- }
-
- $json = json_decode($json, true);
-
- if($json === null){
-
- throw new Exception("Failed to decode JSON");
- }
-
- $out = [
- "status" => "ok",
- "npt" => null,
- "news" => []
- ];
-
- if(!isset($json["results"])){
-
- return $out;
- }
-
- // get NPT
- if(
- isset($json["next"]) &&
- $json["next"] !== null
- ){
-
- $out["npt"] =
- $this->backend->store(
- $json["next"],
- "news",
- $proxy
- );
- }
-
- foreach($json["results"] as $news){
-
- if(
- isset($news["image"]) &&
- $news["image"] != ""
- ){
-
- $thumb = [
- "ratio" => "16:9",
- "url" => $news["image"]
- ];
- }else{
-
- $thumb = [
- "ratio" => null,
- "url" => null
- ];
- }
-
- $out["news"][] = [
- "title" => $news["title"],
- "author" =>
- (
- isset($news["source"]) &&
- $news["source"] != ""
- ) ?
- $news["source"] : null,
- "description" =>
- (
- isset($news["excerpt"]) &&
- $news["excerpt"] != ""
- ) ?
- $this->fuckhtml
- ->getTextContent(
- $news["excerpt"]
- ) : null,
- "date" =>
- isset($news["date"]) ?
- (int)$news["date"] : null,
- "thumb" => $thumb,
- "url" => $this->unshiturl($news["url"])
- ];
- }
-
- return $out;
- }
-
- private function parse_rich_text($html){
-
- $description = [];
-
- // pre-process the html, remove useless elements
- $html =
- strip_tags(
- $html,
- [
- "h1", "h2", "h3", "h4", "h5", "h6", "h7",
- "pre", "code"
- ]
- );
-
- $html =
- preg_replace(
- '/<(\/?)pre *[^>]*>\s*<\/?code *[^>]*>/i',
- '<$1pre>',
- $html
- );
-
- $this->fuckhtml->load($html);
-
- $tags =
- $this->fuckhtml
- ->getElementsByTagName(
- "*"
- );
-
- if(count($tags) === 0){
-
- $description[] = [
- "type" => "text",
- "value" =>
- trim(
- $this->fuckhtml
- ->getTextContent(
- $html,
- true,
- false
- )
- )
- ];
- }else{
-
- $start = 0;
- $was_code_block = true;
- foreach($tags as $tag){
-
- $text =
- $this->fuckhtml
- ->getTextContent(
- substr(
- $html,
- $start,
- $tag["startPos"] - $start
- ),
- true,
- false
- );
-
- if($was_code_block){
-
- $text = ltrim($text);
- $was_code_block = false;
- }
-
- $description[] = [
- "type" => "text",
- "value" => $text
- ];
-
- switch($tag["tagName"]){
-
- case "pre":
- $append = "code";
- $was_code_block = true;
- $c = count($description) - 1;
- $description[$c]["value"] =
- rtrim($description[$c]["value"]);
- break;
-
- case "code":
- $append = "inline_code";
- $c = count($description) - 1;
- $description[$c]["value"] =
- rtrim($description[$c]["value"]) . " ";
- break;
-
- case "h1":
- case "h2":
- case "h3":
- case "h4":
- case "h5":
- case "h6":
- case "h7":
- $append = "title";
- $c = count($description) - 1;
- $description[$c]["value"] =
- rtrim($description[$c]["value"]);
- break;
- }
-
- $description[] = [
- "type" => $append,
- "value" =>
- trim(
- $this->fuckhtml
- ->getTextContent(
- $tag,
- true,
- false
- )
- )
- ];
-
- $start = $tag["endPos"];
- }
-
- // shit out remainder
- $description[] = [
- "type" => "text",
- "value" =>
- trim(
- $this->fuckhtml
- ->getTextContent(
- substr(
- $html,
- $start
- ),
- true,
- false
- )
- )
- ];
- }
-
- return $description;
- }
-
- private function titledots($title){
-
- $substr = substr($title, -3);
-
- if(
- $substr == "..." ||
- $substr == "…"
- ){
-
- return trim(substr($title, 0, -3));
- }
-
- return trim($title);
- }
-
- private function hms2int($time){
-
- $parts = explode(":", $time, 3);
- $time = 0;
-
- if(count($parts) === 3){
-
- // hours
- $time = $time + ((int)$parts[0] * 3600);
- array_shift($parts);
- }
-
- if(count($parts) === 2){
-
- // minutes
- $time = $time + ((int)$parts[0] * 60);
- array_shift($parts);
- }
-
- // seconds
- $time = $time + (int)$parts[0];
-
- return $time;
- }
-
- private function unshiturl($url){
-
- // remove tracking redirect
- // yes, the privacy search engine has click-out tracking. great!
- $domain = parse_url($url, PHP_URL_HOST);
-
- if($domain == "duckduckgo.com"){
-
- $query = parse_url($url, PHP_URL_QUERY);
- parse_str($query, $query);
-
- if(isset($query["uddg"])){
-
- $url = $query["uddg"];
- $domain = parse_url($url, PHP_URL_HOST);
- }
- }
-
- // check for domains w/out first short subdomain (ex: www.)
-
- $subdomain = preg_replace(
- '/^[A-z0-9]{1,3}\./',
- "",
- $domain
- );
-
- switch($subdomain){
- case "ebay.com.au":
- case "ebay.at":
- case "ebay.ca":
- case "ebay.fr":
- case "ebay.de":
- case "ebay.com.hk":
- case "ebay.ie":
- case "ebay.it":
- case "ebay.com.my":
- case "ebay.nl":
- case "ebay.ph":
- case "ebay.pl":
- case "ebay.com.sg":
- case "ebay.es":
- case "ebay.ch":
- case "ebay.co.uk":
- case "cafr.ebay.ca":
- case "ebay.com":
- case "community.ebay.com":
- case "pages.ebay.com":
-
- // remove ebay tracking elements
- $old_params = parse_url($url, PHP_URL_QUERY);
- parse_str($old_params, $params);
-
- if(isset($params["mkevt"])){ unset($params["mkevt"]); }
- if(isset($params["mkcid"])){ unset($params["mkcid"]); }
- if(isset($params["mkrid"])){ unset($params["mkrid"]); }
- if(isset($params["campid"])){ unset($params["campid"]); }
- if(isset($params["customid"])){ unset($params["customid"]); }
- if(isset($params["toolid"])){ unset($params["toolid"]); }
- if(isset($params["_sop"])){ unset($params["_sop"]); }
- if(isset($params["_dcat"])){ unset($params["_dcat"]); }
- if(isset($params["epid"])){ unset($params["epid"]); }
- if(isset($params["epid"])){ unset($params["oid"]); }
-
- $params = http_build_query($params);
-
- if(strlen($params) === 0){
- $replace = "\?";
- }else{
- $replace = "";
- }
-
- $url = preg_replace(
- "/" . $replace . preg_quote($old_params, "/") . "$/",
- $params,
- $url
- );
- break;
- }
-
- return $url;
- }
-
- private function bingimg($url){
-
- $image = parse_url($url);
-
- $id = null;
- if(isset($image["query"])){
-
- parse_str($image["query"], $str);
-
- if(isset($str["id"])){
-
- $id = $str["id"];
- }
- }
-
- if($id === null){
-
- $id = explode("/th/id/", $image["path"], 2);
-
- if(count($id) !== 2){
-
- // malformed
- return $url;
- }
-
- $id = $id[1];
- }
-
- return "https://" . $image["host"] . "/th?id=" . rawurlencode($id);
- }
-
- private function bingratio($width, $height){
-
- $ratio = [
- 474 / $width,
- 474 / $height
- ];
-
- if($ratio[0] < $ratio[1]){
-
- $ratio = $ratio[0];
- }else{
-
- $ratio = $ratio[1];
- }
-
- return [
- floor($width * $ratio),
- floor($height * $ratio)
- ];
- }
- }
|