mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
73 lines
1.5 KiB
PHP
Executable file
73 lines
1.5 KiB
PHP
Executable file
<?php
|
|
|
|
class FreshRSS_Category extends Minz_Model {
|
|
private $id = 0;
|
|
private $name;
|
|
private $nbFeed = -1;
|
|
private $nbNotRead = -1;
|
|
private $feeds = null;
|
|
|
|
public function __construct ($name = '', $feeds = null) {
|
|
$this->_name ($name);
|
|
if (isset ($feeds)) {
|
|
$this->_feeds ($feeds);
|
|
$this->nbFeed = 0;
|
|
$this->nbNotRead = 0;
|
|
foreach ($feeds as $feed) {
|
|
$this->nbFeed++;
|
|
$this->nbNotRead += $feed->nbNotRead ();
|
|
}
|
|
}
|
|
}
|
|
|
|
public function id () {
|
|
return $this->id;
|
|
}
|
|
public function name () {
|
|
return $this->name;
|
|
}
|
|
public function nbFeed () {
|
|
if ($this->nbFeed < 0) {
|
|
$catDAO = new FreshRSS_CategoryDAO ();
|
|
$this->nbFeed = $catDAO->countFeed ($this->id ());
|
|
}
|
|
|
|
return $this->nbFeed;
|
|
}
|
|
public function nbNotRead () {
|
|
if ($this->nbNotRead < 0) {
|
|
$catDAO = new FreshRSS_CategoryDAO ();
|
|
$this->nbNotRead = $catDAO->countNotRead ($this->id ());
|
|
}
|
|
|
|
return $this->nbNotRead;
|
|
}
|
|
public function feeds () {
|
|
if ($this->feeds === null) {
|
|
$feedDAO = FreshRSS_Factory::createFeedDao();
|
|
$this->feeds = $feedDAO->listByCategory ($this->id ());
|
|
$this->nbFeed = 0;
|
|
$this->nbNotRead = 0;
|
|
foreach ($this->feeds as $feed) {
|
|
$this->nbFeed++;
|
|
$this->nbNotRead += $feed->nbNotRead ();
|
|
}
|
|
}
|
|
|
|
return $this->feeds;
|
|
}
|
|
|
|
public function _id ($value) {
|
|
$this->id = $value;
|
|
}
|
|
public function _name ($value) {
|
|
$this->name = $value;
|
|
}
|
|
public function _feeds ($values) {
|
|
if (!is_array ($values)) {
|
|
$values = array ($values);
|
|
}
|
|
|
|
$this->feeds = $values;
|
|
}
|
|
}
|