Skip to content
Snippets Groups Projects
Commit e0b3f712 authored by Phil Höfer's avatar Phil Höfer
Browse files

Pixabay hinzugefügt

parent c8e2b1c9
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
<?php
namespace app\Models\parserSkripte;
use App\Models\Searchengine;
use Symfony\Component\DomCrawler\Crawler;
class Pixabay extends Searchengine
{
public $results = [];
function __construct (\SimpleXMLElement $engine, \App\MetaGer $metager)
{
parent::__construct($engine, $metager);
}
public function loadResults ($result)
{
$result = preg_replace("/\r\n/si", "", $result);
try {
$content = json_decode($result);
} catch (\Exception $e) {
abort(500, "$result is not a valid json string");
}
if(!$content)
{
return;
}
$results = $content->hits;
foreach($results as $result)
{
$title = $result->tags;
$link = $result->pageURL;
$anzeigeLink = $link;
$descr = "";
$image = $result->previewURL;
$this->counter++;
$this->results[] = new \App\Models\Result(
$this->engine,
$title,
$link,
$anzeigeLink,
$descr,
$this->gefVon,
$this->counter,
false,
$image
);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment