72bf365285
persist and list with database create episodeAction list reponse (with mocked timestamp, started and total) create episodeActions with received values update existing episodeActions by unique episode link receive and store subscription changes deal with multiple subscription changes in single request split database into subdirectories only return subscription changes younger then passed parameter since parse passed timestamp parse passed timestamp for episode_actions listing only return list of urls for subscription changes align list endpoint naming schema store userId with episode actions and subscriptions return json object on application root route
36 lines
556 B
PHP
36 lines
556 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\SubscriptionChange;
|
|
|
|
class SubscriptionChange {
|
|
private string $url;
|
|
private bool $isSubscribed;
|
|
|
|
public function __construct(
|
|
string $url,
|
|
bool $isSubscribed
|
|
) {
|
|
$this->url = $url;
|
|
$this->isSubscribed = $isSubscribed;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isSubscribed(): bool {
|
|
return $this->isSubscribed;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUrl(): string {
|
|
return $this->url;
|
|
}
|
|
|
|
public function __toString() : String {
|
|
return $this->url;
|
|
}
|
|
}
|