2017-06-18 10:23:37 -04:00
|
|
|
<?php
|
2017-11-16 20:23:18 -05:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-06-18 10:23:37 -04:00
|
|
|
declare(strict_types=1);
|
2019-02-25 22:41:12 -05:00
|
|
|
namespace JKingWeb\Arsse\Context;
|
2017-08-29 10:50:31 -04:00
|
|
|
|
2017-09-26 16:45:41 -04:00
|
|
|
use JKingWeb\Arsse\Misc\ValueInfo;
|
2019-02-26 11:11:42 -05:00
|
|
|
use JKingWeb\Arsse\Misc\Date;
|
2017-06-18 10:23:37 -04:00
|
|
|
|
2019-02-25 22:41:12 -05:00
|
|
|
class ExclusionContext {
|
2017-06-18 10:23:37 -04:00
|
|
|
public $folder;
|
2017-11-16 15:56:14 -05:00
|
|
|
public $folderShallow;
|
2017-06-18 10:23:37 -04:00
|
|
|
public $subscription;
|
|
|
|
public $edition;
|
|
|
|
public $article;
|
2017-07-06 22:53:17 -04:00
|
|
|
public $editions;
|
|
|
|
public $articles;
|
2017-10-13 00:04:26 -04:00
|
|
|
public $label;
|
|
|
|
public $labelName;
|
2019-02-25 22:41:12 -05:00
|
|
|
public $annotationTerms;
|
|
|
|
public $searchTerms;
|
|
|
|
public $titleTerms;
|
|
|
|
public $authorTerms;
|
2019-02-26 11:11:42 -05:00
|
|
|
public $oldestArticle;
|
|
|
|
public $latestArticle;
|
|
|
|
public $oldestEdition;
|
|
|
|
public $latestEdition;
|
|
|
|
public $modifiedSince;
|
|
|
|
public $notModifiedSince;
|
|
|
|
public $markedSince;
|
|
|
|
public $notMarkedSince;
|
2017-06-18 10:23:37 -04:00
|
|
|
|
|
|
|
protected $props = [];
|
2019-02-25 23:37:14 -05:00
|
|
|
protected $parent;
|
|
|
|
|
|
|
|
public function __construct(self $c = null) {
|
|
|
|
$this->parent = $c;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __clone() {
|
|
|
|
if ($this->parent) {
|
2019-02-25 23:59:48 -05:00
|
|
|
$t = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS | \DEBUG_BACKTRACE_PROVIDE_OBJECT, 2)[1];
|
|
|
|
if (($t['object'] ?? null) instanceof self && $t['function'] === "__clone") {
|
|
|
|
$this->parent = $t['object'];
|
2019-02-25 23:37:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 11:12:40 -05:00
|
|
|
/** @codeCoverageIgnore */
|
2019-02-25 23:37:14 -05:00
|
|
|
public function __destruct() {
|
|
|
|
unset($this->parent);
|
|
|
|
}
|
2017-06-18 10:23:37 -04:00
|
|
|
|
|
|
|
protected function act(string $prop, int $set, $value) {
|
2017-08-29 10:50:31 -04:00
|
|
|
if ($set) {
|
2018-12-04 20:41:21 -05:00
|
|
|
if (is_null($value)) {
|
|
|
|
unset($this->props[$prop]);
|
|
|
|
$this->$prop = (new \ReflectionClass($this))->getDefaultProperties()[$prop];
|
|
|
|
} else {
|
|
|
|
$this->props[$prop] = true;
|
|
|
|
$this->$prop = $value;
|
|
|
|
}
|
2019-02-25 23:37:14 -05:00
|
|
|
return $this->parent ?? $this;
|
2017-06-18 10:23:37 -04:00
|
|
|
} else {
|
|
|
|
return isset($this->props[$prop]);
|
|
|
|
}
|
|
|
|
}
|
2017-07-06 22:53:17 -04:00
|
|
|
|
2019-02-22 11:13:42 -05:00
|
|
|
protected function cleanIdArray(array $spec): array {
|
2017-07-06 22:53:17 -04:00
|
|
|
$spec = array_values($spec);
|
2017-08-29 10:50:31 -04:00
|
|
|
for ($a = 0; $a < sizeof($spec); $a++) {
|
2017-09-28 10:16:24 -04:00
|
|
|
if (ValueInfo::id($spec[$a])) {
|
2017-09-26 16:45:41 -04:00
|
|
|
$spec[$a] = (int) $spec[$a];
|
2017-07-06 22:53:17 -04:00
|
|
|
} else {
|
2017-09-26 16:45:41 -04:00
|
|
|
$spec[$a] = 0;
|
2017-07-06 22:53:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return array_values(array_filter($spec));
|
|
|
|
}
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2019-02-22 11:13:42 -05:00
|
|
|
protected function cleanStringArray(array $spec): array {
|
|
|
|
$spec = array_values($spec);
|
2019-02-22 12:34:06 -05:00
|
|
|
$stop = sizeof($spec);
|
|
|
|
for ($a = 0; $a < $stop; $a++) {
|
|
|
|
if (strlen($str = ValueInfo::normalize($spec[$a], ValueInfo::T_STRING | ValueInfo::M_DROP) ?? "")) {
|
2019-02-22 11:13:42 -05:00
|
|
|
$spec[$a] = $str;
|
|
|
|
} else {
|
|
|
|
unset($spec[$a]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array_values($spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function folder(int $spec = null) {
|
2017-06-18 10:23:37 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2017-11-16 15:56:14 -05:00
|
|
|
public function folderShallow(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function subscription(int $spec = null) {
|
2017-06-18 10:23:37 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function edition(int $spec = null) {
|
2017-06-18 10:23:37 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function article(int $spec = null) {
|
2017-06-18 10:23:37 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-07-06 22:53:17 -04:00
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function editions(array $spec = null) {
|
2018-12-04 20:41:21 -05:00
|
|
|
if (isset($spec)) {
|
2019-02-22 11:13:42 -05:00
|
|
|
$spec = $this->cleanIdArray($spec);
|
2017-07-20 22:40:09 -04:00
|
|
|
}
|
2017-07-06 22:53:17 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2017-08-29 10:50:31 -04:00
|
|
|
public function articles(array $spec = null) {
|
2018-12-04 20:41:21 -05:00
|
|
|
if (isset($spec)) {
|
2019-02-22 11:13:42 -05:00
|
|
|
$spec = $this->cleanIdArray($spec);
|
2017-07-20 22:40:09 -04:00
|
|
|
}
|
2017-07-06 22:53:17 -04:00
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-10-13 00:04:26 -04:00
|
|
|
|
|
|
|
public function label(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function labelName(string $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-11-16 15:56:14 -05:00
|
|
|
|
2019-02-23 20:14:52 -05:00
|
|
|
public function annotationTerms(array $spec = null) {
|
|
|
|
if (isset($spec)) {
|
|
|
|
$spec = $this->cleanStringArray($spec);
|
|
|
|
}
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
2019-02-22 11:13:42 -05:00
|
|
|
public function searchTerms(array $spec = null) {
|
|
|
|
if (isset($spec)) {
|
|
|
|
$spec = $this->cleanStringArray($spec);
|
|
|
|
}
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2019-02-25 10:46:43 -05:00
|
|
|
|
|
|
|
public function titleTerms(array $spec = null) {
|
|
|
|
if (isset($spec)) {
|
|
|
|
$spec = $this->cleanStringArray($spec);
|
|
|
|
}
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function authorTerms(array $spec = null) {
|
|
|
|
if (isset($spec)) {
|
|
|
|
$spec = $this->cleanStringArray($spec);
|
|
|
|
}
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2019-02-26 11:11:42 -05:00
|
|
|
|
|
|
|
public function latestArticle(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function oldestArticle(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function latestEdition(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function oldestEdition(int $spec = null) {
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function modifiedSince($spec = null) {
|
|
|
|
$spec = Date::normalize($spec);
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function notModifiedSince($spec = null) {
|
|
|
|
$spec = Date::normalize($spec);
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function markedSince($spec = null) {
|
|
|
|
$spec = Date::normalize($spec);
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function notMarkedSince($spec = null) {
|
|
|
|
$spec = Date::normalize($spec);
|
|
|
|
return $this->act(__FUNCTION__, func_num_args(), $spec);
|
|
|
|
}
|
2017-08-29 10:50:31 -04:00
|
|
|
}
|