mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
6afd13eb06
* fix: bug in prior commit * refactor: deprecate FeedItem constructor * test: fix
67 lines
1.3 KiB
PHP
67 lines
1.3 KiB
PHP
<?php
|
|
|
|
abstract class FormatAbstract
|
|
{
|
|
public const ITUNES_NS = 'http://www.itunes.com/dtds/podcast-1.0.dtd';
|
|
|
|
const MIME_TYPE = 'text/plain';
|
|
|
|
protected array $feed = [];
|
|
protected array $items = [];
|
|
protected string $charset = 'UTF-8';
|
|
|
|
protected int $lastModified;
|
|
|
|
abstract public function stringify();
|
|
|
|
public function setFeed(array $feed)
|
|
{
|
|
$default = [
|
|
'name' => '',
|
|
'uri' => '',
|
|
'icon' => '',
|
|
'donationUri' => '',
|
|
];
|
|
$this->feed = array_merge($default, $feed);
|
|
}
|
|
|
|
public function getFeed(): array
|
|
{
|
|
return $this->feed;
|
|
}
|
|
|
|
public function setItems(array $items): void
|
|
{
|
|
foreach ($items as $item) {
|
|
$this->items[] = FeedItem::fromArray($item);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return FeedItem[] The items
|
|
*/
|
|
public function getItems(): array
|
|
{
|
|
return $this->items;
|
|
}
|
|
|
|
public function getMimeType(): string
|
|
{
|
|
return static::MIME_TYPE;
|
|
}
|
|
|
|
public function setCharset(string $charset)
|
|
{
|
|
$this->charset = $charset;
|
|
}
|
|
|
|
public function getCharset(): string
|
|
{
|
|
return $this->charset;
|
|
}
|
|
|
|
public function setLastModified(int $lastModified)
|
|
{
|
|
$this->lastModified = $lastModified;
|
|
}
|
|
}
|