mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
Add 'itunes:duration' tag for items with duration (#3774)
* [{Atom,Mrss}Format] Allow itunes tags on items without enclosure * [Arte7Bridge] Add $item['itunes']['duration'] value
This commit is contained in:
parent
9056106c2d
commit
658391263e
@ -156,6 +156,10 @@ class Arte7Bridge extends BridgeAbstract
|
|||||||
. $element['mainImage']['url']
|
. $element['mainImage']['url']
|
||||||
. '" /></a>';
|
. '" /></a>';
|
||||||
|
|
||||||
|
$item['itunes'] = [
|
||||||
|
'duration' => $durationSeconds,
|
||||||
|
];
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,11 +147,13 @@ class AtomFormat extends FormatAbstract
|
|||||||
$entry->appendChild($itunesProperty);
|
$entry->appendChild($itunesProperty);
|
||||||
$itunesProperty->appendChild($document->createTextNode($itunesValue));
|
$itunesProperty->appendChild($document->createTextNode($itunesValue));
|
||||||
}
|
}
|
||||||
$itunesEnclosure = $document->createElement('enclosure');
|
if (isset($itemArray['enclosure'])) {
|
||||||
$entry->appendChild($itunesEnclosure);
|
$itunesEnclosure = $document->createElement('enclosure');
|
||||||
$itunesEnclosure->setAttribute('url', $itemArray['enclosure']['url']);
|
$entry->appendChild($itunesEnclosure);
|
||||||
$itunesEnclosure->setAttribute('length', $itemArray['enclosure']['length']);
|
$itunesEnclosure->setAttribute('url', $itemArray['enclosure']['url']);
|
||||||
$itunesEnclosure->setAttribute('type', $itemArray['enclosure']['type']);
|
$itunesEnclosure->setAttribute('length', $itemArray['enclosure']['length']);
|
||||||
|
$itunesEnclosure->setAttribute('type', $itemArray['enclosure']['type']);
|
||||||
|
}
|
||||||
} elseif (!empty($entryUri)) {
|
} elseif (!empty($entryUri)) {
|
||||||
$entryLinkAlternate = $document->createElement('link');
|
$entryLinkAlternate = $document->createElement('link');
|
||||||
$entry->appendChild($entryLinkAlternate);
|
$entry->appendChild($entryLinkAlternate);
|
||||||
|
@ -135,11 +135,13 @@ class MrssFormat extends FormatAbstract
|
|||||||
$entry->appendChild($itunesProperty);
|
$entry->appendChild($itunesProperty);
|
||||||
$itunesProperty->appendChild($document->createTextNode($itunesValue));
|
$itunesProperty->appendChild($document->createTextNode($itunesValue));
|
||||||
}
|
}
|
||||||
$itunesEnclosure = $document->createElement('enclosure');
|
if (isset($itemArray['enclosure'])) {
|
||||||
$entry->appendChild($itunesEnclosure);
|
$itunesEnclosure = $document->createElement('enclosure');
|
||||||
$itunesEnclosure->setAttribute('url', $itemArray['enclosure']['url']);
|
$entry->appendChild($itunesEnclosure);
|
||||||
$itunesEnclosure->setAttribute('length', $itemArray['enclosure']['length']);
|
$itunesEnclosure->setAttribute('url', $itemArray['enclosure']['url']);
|
||||||
$itunesEnclosure->setAttribute('type', $itemArray['enclosure']['type']);
|
$itunesEnclosure->setAttribute('length', $itemArray['enclosure']['length']);
|
||||||
|
$itunesEnclosure->setAttribute('type', $itemArray['enclosure']['type']);
|
||||||
|
}
|
||||||
} if (!empty($itemUri)) {
|
} if (!empty($itemUri)) {
|
||||||
$entryLink = $document->createElement('link');
|
$entryLink = $document->createElement('link');
|
||||||
$entry->appendChild($entryLink);
|
$entry->appendChild($entryLink);
|
||||||
|
Loading…
Reference in New Issue
Block a user