2020-10-30 20:16:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace OCA\Radio\Db;
|
|
|
|
|
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
|
|
|
|
class Station extends Entity implements JsonSerializable {
|
2020-11-06 08:11:30 +00:00
|
|
|
protected $stationuuid;
|
|
|
|
protected $name;
|
|
|
|
protected $favicon;
|
2020-11-07 09:26:41 +00:00
|
|
|
protected $urlresolved;
|
2020-11-19 21:35:13 +00:00
|
|
|
protected $bitrate;
|
|
|
|
protected $country;
|
|
|
|
protected $language;
|
|
|
|
protected $homepage;
|
|
|
|
protected $codec;
|
|
|
|
protected $tags;
|
2020-10-30 20:16:27 +00:00
|
|
|
protected $userId;
|
|
|
|
|
|
|
|
public function jsonSerialize(): array {
|
|
|
|
return [
|
|
|
|
'id' => $this->id,
|
2020-11-06 08:11:30 +00:00
|
|
|
'stationuuid' => $this->stationuuid,
|
|
|
|
'name' => $this->name,
|
|
|
|
'favicon' => $this->favicon,
|
2020-11-19 21:35:13 +00:00
|
|
|
'urlresolved' => $this->urlresolved,
|
|
|
|
'bitrate' => $this->bitrate,
|
|
|
|
'country' => $this->country,
|
|
|
|
'language' => $this->language,
|
|
|
|
'homepage' => $this->homepage,
|
|
|
|
'codec' => $this->codec,
|
|
|
|
'tags' => $this->tags
|
2020-10-30 20:16:27 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|