Skip to content
Snippets Groups Projects
Commit 95d1c905 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch '406-allesklar-wirft-bei-der-suche-fehler' into 'development'

Allesklar wird jetzt wieder fehlerfrei geparsed.

Closes #406

See merge request !693
parents a2cc0603 4825a920
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
Showing
with 75 additions and 52 deletions
...@@ -20,36 +20,37 @@ class Allesklar extends Searchengine ...@@ -20,36 +20,37 @@ class Allesklar extends Searchengine
$crawler = $crawler $crawler = $crawler
->filter('table[width=585]') ->filter('table[width=585]')
->reduce(function (Crawler $node, $i) { ->reduce(function (Crawler $node, $i) {
if ($i < 5) { // The first 5 elements are additional information
return false; return $i >= 5;
}
}); });
$this->counter = 0; $this->counter = 0;
$crawler->filter('table')->each(function (Crawler $node, $i) { $crawler->each(function (Crawler $node, $i) {
try { // Only the first 20 elements are actual search results
$this->string = ""; if ($i < 20) {
$titleTag = $node->filter('tr > td > a')->first(); try {
$title = trim($titleTag->filter('a')->text()); $titleTag = $node->filter('tr > td > a.katalogtitel')->first();
$link = $titleTag->filter('a')->attr('href'); $title = trim($titleTag->text());
if ($i === 0) { $link = $titleTag->attr('href');
$descr = trim($node->filter('tr > td.bodytext')->eq(3)->text()); // Sometimes the description is in the 3rd element
} else {
$descr = trim($node->filter('tr > td.bodytext')->eq(2)->text()); $descr = trim($node->filter('tr > td.bodytext')->eq(2)->text());
if (strlen($descr) <= 2) {
$descr = trim($node->filter('tr > td.bodytext')->eq(3)->text());
}
$this->counter++;
$this->results[] = new \App\Models\Result(
$this->engine,
$title,
$link,
$link,
$descr,
$this->gefVon,
$this->counter
);
} catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return;
} }
$this->counter++;
$this->results[] = new \App\Models\Result(
$this->engine,
$title,
$link,
$link,
$descr,
$this->gefVon,
$this->counter
);
} catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name");
return;
} }
}); });
} }
......
...@@ -55,7 +55,8 @@ class BASE extends Searchengine ...@@ -55,7 +55,8 @@ class BASE extends Searchengine
} }
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -36,7 +36,8 @@ class Bing extends Searchengine ...@@ -36,7 +36,8 @@ class Bing extends Searchengine
); );
}); });
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
......
...@@ -40,7 +40,8 @@ class Blogsearch extends Searchengine ...@@ -40,7 +40,8 @@ class Blogsearch extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -43,7 +43,8 @@ class Dailymotion extends Searchengine ...@@ -43,7 +43,8 @@ class Dailymotion extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -59,7 +59,8 @@ class Ebay extends Searchengine ...@@ -59,7 +59,8 @@ class Ebay extends Searchengine
$count++; $count++;
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -56,7 +56,8 @@ class Ecoshopper extends Searchengine ...@@ -56,7 +56,8 @@ class Ecoshopper extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -50,7 +50,8 @@ class Europeana extends Searchengine ...@@ -50,7 +50,8 @@ class Europeana extends Searchengine
} }
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
...@@ -72,7 +73,8 @@ class Europeana extends Searchengine ...@@ -72,7 +73,8 @@ class Europeana extends Searchengine
$next->hash = md5($next->host . $next->getString . $next->port . $next->name); $next->hash = md5($next->host . $next->getString . $next->port . $next->name);
$this->next = $next; $this->next = $next;
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -70,7 +70,8 @@ class Exalead extends Searchengine ...@@ -70,7 +70,8 @@ class Exalead extends Searchengine
} }
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -47,7 +47,8 @@ class Fernsehsuche extends Searchengine ...@@ -47,7 +47,8 @@ class Fernsehsuche extends Searchengine
} }
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -44,7 +44,8 @@ class Flickr extends Searchengine ...@@ -44,7 +44,8 @@ class Flickr extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
...@@ -68,7 +69,8 @@ class Flickr extends Searchengine ...@@ -68,7 +69,8 @@ class Flickr extends Searchengine
$next->hash = md5($next->host . $next->getString . $next->port . $next->name); $next->hash = md5($next->host . $next->getString . $next->port . $next->name);
$this->next = $next; $this->next = $next;
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -49,7 +49,8 @@ class Mg_produkt2 extends Searchengine ...@@ -49,7 +49,8 @@ class Mg_produkt2 extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -44,7 +44,8 @@ class Openclipart extends Searchengine ...@@ -44,7 +44,8 @@ class Openclipart extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
...@@ -65,7 +66,8 @@ class Openclipart extends Searchengine ...@@ -65,7 +66,8 @@ class Openclipart extends Searchengine
$next->hash = md5($next->host . $next->getString . $next->port . $next->name); $next->hash = md5($next->host . $next->getString . $next->port . $next->name);
$this->next = $next; $this->next = $next;
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -46,7 +46,8 @@ class Opencrawlastronomie extends Searchengine ...@@ -46,7 +46,8 @@ class Opencrawlastronomie extends Searchengine
$count++; $count++;
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -46,7 +46,8 @@ class Opencrawlregengergie extends Searchengine ...@@ -46,7 +46,8 @@ class Opencrawlregengergie extends Searchengine
$count++; $count++;
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -46,7 +46,8 @@ class Opencrawltauchen extends Searchengine ...@@ -46,7 +46,8 @@ class Opencrawltauchen extends Searchengine
$count++; $count++;
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -60,7 +60,8 @@ class Overture extends Searchengine ...@@ -60,7 +60,8 @@ class Overture extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
...@@ -73,10 +74,9 @@ class Overture extends Searchengine ...@@ -73,10 +74,9 @@ class Overture extends Searchengine
if (!$content) { if (!$content) {
return; return;
} }
///////////////////
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
......
...@@ -39,7 +39,8 @@ class OvertureAds extends Searchengine ...@@ -39,7 +39,8 @@ class OvertureAds extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -44,7 +44,8 @@ class Pixabay extends Searchengine ...@@ -44,7 +44,8 @@ class Pixabay extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
...@@ -75,7 +76,8 @@ class Pixabay extends Searchengine ...@@ -75,7 +76,8 @@ class Pixabay extends Searchengine
$next->hash = md5($next->host . $next->getString . $next->port . $next->name); $next->hash = md5($next->host . $next->getString . $next->port . $next->name);
$this->next = $next; $this->next = $next;
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
...@@ -40,7 +40,8 @@ class Qip extends Searchengine ...@@ -40,7 +40,8 @@ class Qip extends Searchengine
); );
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name"); Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return; return;
} }
} }
......
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