103 lines
1.3 KiB
PHP
103 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\PodcastData;
|
|
|
|
/**
|
|
* @psalm-type PodcastDataType = array{
|
|
* title: ?string,
|
|
* author: ?string,
|
|
* link: ?string,
|
|
* description: ?string,
|
|
* imageUrl: ?string,
|
|
* fetchedAtUnix: int,
|
|
* imageBlob: ?string
|
|
* }
|
|
*/
|
|
class PodcastData implements \JsonSerializable
|
|
{
|
|
/**
|
|
* @return PodcastData
|
|
* @throws \Exception if the XML data could not be parsed
|
|
*/
|
|
public static function parseRssXml(string $xmlString, ?int $fetchedAtUnix = null)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getTitle()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getAuthor()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getLink()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getImageUrl()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?int
|
|
*/
|
|
public function getFetchedAtUnix()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getImageBlob()
|
|
{
|
|
}
|
|
|
|
public function setImageBlob(?string $blob): void
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return PodcastDataType
|
|
*/
|
|
public function toArray()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return PodcastDataType
|
|
*/
|
|
public function jsonSerialize(): mixed
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param PodcastDataType $data
|
|
* @return PodcastData
|
|
*/
|
|
public static function fromArray(array $data)
|
|
{
|
|
}
|
|
}
|