mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
[DealabsBridge-HotUKDealsBridge-MydealsBridge-PepperBridgeAbstract] Fix (#2789)
the date handling The deal posting date logic was wrong, and leaded to warnings and notice. Now, only the feed with the deal sorted by date contains date (the feed sorted by hottest deal does not contain a date anymore, because there are no deal date in this case).
This commit is contained in:
parent
aa32040bd4
commit
a4785370fa
2 changed files with 20 additions and 13 deletions
|
@ -3305,7 +3305,7 @@ class HotUKDealsBridge extends PepperBridgeAbstract {
|
|||
'th'
|
||||
),
|
||||
'local-time-relative' => array(
|
||||
'Found ',
|
||||
'Posted ',
|
||||
'm',
|
||||
'h,',
|
||||
'day',
|
||||
|
|
|
@ -119,17 +119,25 @@ class PepperBridgeAbstract extends BridgeAbstract {
|
|||
. $deal->find('div[class*=' . $selectorHot . ']', 0)
|
||||
->find('span', 1)->outertext
|
||||
. '</td></table>';
|
||||
$dealDateDiv = $deal->find('div[class*=' . $selectorDate . ']', 0)
|
||||
->find('span[class=hide--toW3]');
|
||||
$itemDate = end($dealDateDiv)->plaintext;
|
||||
// In case of a Local deal, there is no date, but we can use
|
||||
// this case for other reason (like date not in the last field)
|
||||
if ($this->contains($itemDate, $this->i8n('localdeal'))) {
|
||||
$item['timestamp'] = time();
|
||||
} else if ($this->contains($itemDate, $this->i8n('relative-date-indicator'))) {
|
||||
$item['timestamp'] = $this->relativeDateToTimestamp($itemDate);
|
||||
} else {
|
||||
$item['timestamp'] = $this->parseDate($itemDate);
|
||||
|
||||
// Check if a clock icon is displayed on the deal
|
||||
$clocks = $deal->find('svg[class*=icon--clock]');
|
||||
if($clocks !== null && count($clocks) > 0) {
|
||||
// Get the last clock, corresponding to the deal posting date
|
||||
$clock = end($clocks);
|
||||
|
||||
// Find the text corresponding to the clock
|
||||
$spanDateDiv = $clock->parent()->find('span[class=hide--toW3]', 0);
|
||||
$itemDate = $spanDateDiv->plaintext;
|
||||
// In case of a Local deal, there is no date, but we can use
|
||||
// this case for other reason (like date not in the last field)
|
||||
if ($this->contains($itemDate, $this->i8n('localdeal'))) {
|
||||
$item['timestamp'] = time();
|
||||
} else if ($this->contains($itemDate, $this->i8n('relative-date-indicator'))) {
|
||||
$item['timestamp'] = $this->relativeDateToTimestamp($itemDate);
|
||||
} else {
|
||||
$item['timestamp'] = $this->parseDate($itemDate);
|
||||
}
|
||||
}
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
@ -564,7 +572,6 @@ HEREDOC;
|
|||
'year',
|
||||
''
|
||||
);
|
||||
|
||||
$date->modify(str_replace($search, $replace, $str));
|
||||
return $date->getTimestamp();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue