repod/lib/Core/EpisodeAction/EpisodeActionExtraData.php

134 lines
2.8 KiB
PHP
Raw Normal View History

2023-08-24 10:48:10 +00:00
<?php
declare(strict_types=1);
namespace OCA\RePod\Core\EpisodeAction;
use OCA\GPodderSync\Core\EpisodeAction\EpisodeAction;
/**
* Base: https://github.com/pbek/nextcloud-nextpod/blob/main/lib/Core/EpisodeAction/EpisodeActionExtraData.php.
* Specs: https://github.com/Podcast-Standards-Project/PSP-1-Podcast-RSS-Specification/blob/main/README.md#required-item-elements.
2023-08-24 10:48:10 +00:00
*
* @psalm-import-type EpisodeActionType from EpisodeAction
*
* @psalm-type EpisodeActionExtraDataType = array{
* title: string,
* url: ?string,
* name: string,
* link: ?string,
* image: ?string,
* description: ?string,
2023-08-24 10:48:10 +00:00
* fetchedAtUnix: int,
* guid: string,
* type: ?string,
* size: ?int,
* pubDate: ?\DateTime,
2024-01-16 18:46:02 +00:00
* duration: ?string,
* action: ?EpisodeActionType
2023-08-24 10:48:10 +00:00
* }
*/
class EpisodeActionExtraData implements \JsonSerializable
{
public function __construct(
private string $title,
private ?string $url,
private string $name,
private ?string $link,
private ?string $image,
private ?string $description,
2023-08-24 10:48:10 +00:00
private int $fetchedAtUnix,
private string $guid,
private ?string $type,
private ?int $size,
private ?\DateTime $pubDate,
2024-01-16 18:46:02 +00:00
private ?string $duration,
private ?EpisodeAction $action
) {}
2023-08-24 10:48:10 +00:00
2023-12-23 16:25:20 +00:00
public function __toString(): string {
return $this->url ?? '/no episodeUrl/';
}
2024-01-15 09:13:39 +00:00
public function getTitle(): string {
return $this->title;
}
public function getUrl(): ?string {
return $this->url;
}
public function getName(): string {
return $this->name;
2023-08-24 10:48:10 +00:00
}
public function getLink(): ?string {
return $this->link;
}
public function getImage(): ?string {
return $this->image;
}
public function getDescription(): ?string {
return $this->description;
}
public function getFetchedAtUnix(): int {
return $this->fetchedAtUnix;
2023-08-28 15:44:17 +00:00
}
public function getGuid(): string {
return $this->guid;
2023-08-24 17:03:11 +00:00
}
public function getType(): ?string {
return $this->type;
2023-08-24 17:03:11 +00:00
}
public function getSize(): ?int {
return $this->size;
2023-08-24 17:03:11 +00:00
}
public function getPubDate(): ?\DateTime {
return $this->pubDate;
2023-08-29 10:04:14 +00:00
}
2024-01-16 18:46:02 +00:00
public function getDuration(): ?string {
return $this->duration;
}
public function getAction(): ?EpisodeAction {
return $this->action;
2023-08-24 10:48:10 +00:00
}
/**
* @return EpisodeActionExtraDataType
*/
2023-12-23 16:25:20 +00:00
public function toArray(): array {
2023-08-24 10:48:10 +00:00
return
[
'title' => $this->title,
'url' => $this->url,
'name' => $this->name,
'link' => $this->link,
'image' => $this->image,
'description' => $this->description,
2023-08-24 10:48:10 +00:00
'fetchedAtUnix' => $this->fetchedAtUnix,
'guid' => $this->guid,
'type' => $this->type,
'size' => $this->size,
'pubDate' => $this->pubDate,
'duration' => $this->duration,
'action' => $this->action ? $this->action->toArray() : null,
2023-08-24 10:48:10 +00:00
];
}
/**
* @return EpisodeActionExtraDataType
*/
2023-12-23 16:25:20 +00:00
public function jsonSerialize(): mixed {
2023-08-24 10:48:10 +00:00
return $this->toArray();
}
}