2017-06-18 14:23:37 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Misc;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-07-17 11:47:57 +00:00
|
|
|
use JKingWeb\Arsse\Misc\Date;
|
2017-09-26 20:45:41 +00:00
|
|
|
use JKingWeb\Arsse\Misc\ValueInfo;
|
2017-06-18 14:23:37 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
class Context {
|
2017-06-18 14:23:37 +00:00
|
|
|
public $reverse = false;
|
|
|
|
public $limit = 0;
|
|
|
|
public $offset = 0;
|
|
|
|
public $folder;
|
|
|
|
public $subscription;
|
|
|
|
public $oldestEdition;
|
|
|
|
public $latestEdition;
|
|
|
|
public $unread = false;
|
|
|
|
public $starred = false;
|
|
|
|
public $modifiedSince;
|
|
|
|
public $notModifiedSince;
|
|
|
|
public $edition;
|
|
|
|
public $article;
|
2017-07-07 02:53:17 +00:00
|
|
|
public $editions;
|
|
|
|
public $articles;
|
2017-06-18 14:23:37 +00:00
|
|
|
|
|
|
|
protected $props = [];
|
|
|
|
|
|
|
|
protected function act(string $prop, int $set, $value) {
|
2017-08-29 14:50:31 +00:00
|
|
|
if ($set) {
|
2017-06-18 14:23:37 +00:00
|
|
|
$this->props[$prop] = true;
|
|
|
|
$this->$prop = $value;
|
|
|
|
return $this;
|
|
|
|
} else {
|
|
|
|
return isset($this->props[$prop]);
|
|
|
|
}
|
|
|
|
}
|
2017-07-07 02:53:17 +00:00
|
|
|
|
|
|
|
protected function cleanArray(array $spec): array {
|
|
|
|
$spec = array_values($spec);
|
2017-08-29 14:50:31 +00:00
|
|
|
for ($a = 0; $a < sizeof($spec); $a++) {
|
2017-09-26 20:45:41 +00:00
|
|
|
if(ValueInfo::int($spec[$a])===ValueInfo::VALID) {
|
|
|
|
$spec[$a] = (int) $spec[$a];
|
2017-07-07 02:53:17 +00:00
|
|
|
} else {
|
2017-09-26 20:45:41 +00:00
|
|
|
$spec[$a] = 0;
|
2017-07-07 02:53:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return array_values(array_filter($spec));
|
|
|
|
}
|
2017-06-18 14:23:37 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function reverse(bool $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function limit(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function offset(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function folder(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function subscription(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function latestEdition(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function oldestEdition(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function unread(bool $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function starred(bool $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function modifiedSince($spec = null) {
|
2017-07-17 11:47:57 +00:00
|
|
|
$spec = Date::normalize($spec);
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function notModifiedSince($spec = null) {
|
2017-07-17 11:47:57 +00:00
|
|
|
$spec = Date::normalize($spec);
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function edition(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function article(int $spec = null) {
|
2017-06-18 14:23:37 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-07-07 02:53:17 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function editions(array $spec = null) {
|
|
|
|
if ($spec) {
|
2017-07-21 02:40:09 +00:00
|
|
|
$spec = $this->cleanArray($spec);
|
|
|
|
}
|
2017-07-07 02:53:17 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function articles(array $spec = null) {
|
|
|
|
if ($spec) {
|
2017-07-21 02:40:09 +00:00
|
|
|
$spec = $this->cleanArray($spec);
|
|
|
|
}
|
2017-07-07 02:53:17 +00:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|