Skip to content
Snippets Groups Projects
Commit 3cdd1970 authored by Karl's avatar Karl
Browse files

Dailymotion ist jetzt als Videosuche eingefügt und funktioniert super.

parent f3c51a11
No related branches found
No related tags found
3 merge requests!404Development,!392Resolve "Codekommentare & Refactoring",!363Resolve "Codekommentare & Refactoring"
<?php
namespace app\Models\parserSkripte;
use App\Models\Searchengine;
class Dailymotion extends Searchengine
{
public $results = [];
public 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 xml string");
}
if (!$content) {
return;
}
$results = $content->list;
foreach ($results as $result) {
$title = $result->title;
$link = $result->url;
$anzeigeLink = $link;
$descr = $result->description;
$image = $result->thumbnail_240_url;
$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