2019-03-09 22:44:59 -05:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\REST\Fever;
|
|
|
|
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
|
|
use JKingWeb\Arsse\Context\Context;
|
2019-03-28 14:54:31 -04:00
|
|
|
use JKingWeb\Arsse\Misc\ValueInfo as V;
|
2019-03-26 08:53:26 -04:00
|
|
|
use JKingWeb\Arsse\Misc\Date;
|
2019-03-09 22:44:59 -05:00
|
|
|
use JKingWeb\Arsse\Db\ExceptionInput;
|
2019-09-27 22:38:03 -04:00
|
|
|
use JKingWeb\Arsse\Misc\HTTP;
|
2019-03-09 22:44:59 -05:00
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2019-03-18 22:49:47 -04:00
|
|
|
use Zend\Diactoros\Response\JsonResponse;
|
2019-04-08 20:58:45 -04:00
|
|
|
use Zend\Diactoros\Response\XmlResponse;
|
2019-03-09 22:44:59 -05:00
|
|
|
use Zend\Diactoros\Response\EmptyResponse;
|
|
|
|
|
|
|
|
class API extends \JKingWeb\Arsse\REST\AbstractHandler {
|
|
|
|
const LEVEL = 3;
|
2019-07-24 12:27:50 -04:00
|
|
|
const GENERIC_ICON_TYPE = "image/png;base64";
|
|
|
|
const GENERIC_ICON_DATA = "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMjHxIGmVAAAADUlEQVQYV2NgYGBgAAAABQABijPjAAAAAABJRU5ErkJggg==";
|
2019-09-27 22:38:03 -04:00
|
|
|
const ACCEPTED_TYPE = "application/x-www-form-urlencoded";
|
2019-03-09 22:44:59 -05:00
|
|
|
|
2019-03-28 14:54:31 -04:00
|
|
|
// GET parameters for which we only check presence: these will be converted to booleans
|
|
|
|
const PARAM_BOOL = ["groups", "feeds", "items", "favicons", "links", "unread_item_ids", "saved_item_ids"];
|
|
|
|
// GET parameters which contain meaningful values
|
|
|
|
const PARAM_GET = [
|
2019-07-26 23:23:22 -04:00
|
|
|
'api' => V::T_STRING, // this parameter requires special handling
|
|
|
|
'page' => V::T_INT, // parameter for hot links
|
|
|
|
'range' => V::T_INT, // parameter for hot links
|
|
|
|
'offset' => V::T_INT, // parameter for hot links
|
|
|
|
'since_id' => V::T_INT,
|
|
|
|
'max_id' => V::T_INT,
|
|
|
|
'with_ids' => V::T_STRING,
|
|
|
|
'group_ids' => V::T_STRING, // undocumented parameter for 'items' lookup
|
|
|
|
'feed_ids' => V::T_STRING, // undocumented parameter for 'items' lookup
|
|
|
|
// these should be POST parameters only, but some clients misbehave
|
|
|
|
'mark' => V::T_STRING,
|
|
|
|
'as' => V::T_STRING,
|
|
|
|
'id' => V::T_INT,
|
|
|
|
'before' => V::T_DATE,
|
|
|
|
'unread_recently_read' => V::T_BOOL,
|
2019-03-28 14:54:31 -04:00
|
|
|
];
|
|
|
|
// POST parameters, all of which contain meaningful values
|
|
|
|
const PARAM_POST = [
|
|
|
|
'api_key' => V::T_STRING,
|
|
|
|
'mark' => V::T_STRING,
|
|
|
|
'as' => V::T_STRING,
|
|
|
|
'id' => V::T_INT,
|
|
|
|
'before' => V::T_DATE,
|
|
|
|
'unread_recently_read' => V::T_BOOL,
|
|
|
|
];
|
|
|
|
|
2019-03-09 22:44:59 -05:00
|
|
|
public function __construct() {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dispatch(ServerRequestInterface $req): ResponseInterface {
|
2019-03-28 14:54:31 -04:00
|
|
|
$G = $this->normalizeInputGet($req->getQueryParams() ?? []);
|
|
|
|
$P = $this->normalizeInputPost($req->getParsedBody() ?? []);
|
|
|
|
if (!isset($G['api'])) {
|
2019-03-09 22:44:59 -05:00
|
|
|
// the original would have shown the Fever UI in the absence of the "api" parameter, but we'll return 404
|
|
|
|
return new EmptyResponse(404);
|
|
|
|
}
|
|
|
|
switch ($req->getMethod()) {
|
|
|
|
case "OPTIONS":
|
2019-04-10 10:51:02 -04:00
|
|
|
return new EmptyResponse(204, [
|
|
|
|
'Allow' => "POST",
|
2019-09-27 22:38:03 -04:00
|
|
|
'Accept' => self::ACCEPTED_TYPE,
|
2019-04-10 10:51:02 -04:00
|
|
|
]);
|
2019-03-09 22:44:59 -05:00
|
|
|
case "POST":
|
2019-09-27 22:38:03 -04:00
|
|
|
if (!HTTP::matchType($req, self::ACCEPTED_TYPE, "")) {
|
|
|
|
return new EmptyResponse(415, ['Accept' => self::ACCEPTED_TYPE]);
|
2019-03-09 22:44:59 -05:00
|
|
|
}
|
|
|
|
$out = [
|
|
|
|
'api_version' => self::LEVEL,
|
|
|
|
'auth' => 0,
|
|
|
|
];
|
2019-03-19 23:37:08 -04:00
|
|
|
if ($req->getAttribute("authenticated", false)) {
|
|
|
|
// if HTTP authentication was successfully used, set the expected user ID
|
|
|
|
Arsse::$user->id = $req->getAttribute("authenticatedUser");
|
|
|
|
$out['auth'] = 1;
|
|
|
|
} elseif (Arsse::$conf->userHTTPAuthRequired || Arsse::$conf->userPreAuth || $req->getAttribute("authenticationFailed", false)) {
|
|
|
|
// otherwise if HTTP authentication failed or is required, deny access at the HTTP level
|
|
|
|
return new EmptyResponse(401);
|
|
|
|
}
|
2019-03-27 15:09:04 -04:00
|
|
|
// produce a full response if authenticated or a basic response otherwise
|
2019-03-28 14:54:31 -04:00
|
|
|
if ($this->logIn(strtolower($P['api_key'] ?? ""))) {
|
|
|
|
$out = $this->processRequest($this->baseResponse(true), $G, $P);
|
2019-03-09 22:44:59 -05:00
|
|
|
} else {
|
2019-03-27 15:09:04 -04:00
|
|
|
$out = $this->baseResponse(false);
|
2019-03-26 08:53:26 -04:00
|
|
|
}
|
2019-03-27 15:09:04 -04:00
|
|
|
// return the result, possibly formatted as XML
|
2019-03-28 14:54:31 -04:00
|
|
|
return $this->formatResponse($out, ($G['api'] === "xml"));
|
2019-03-09 22:44:59 -05:00
|
|
|
default:
|
|
|
|
return new EmptyResponse(405, ['Allow' => "OPTIONS,POST"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 14:54:31 -04:00
|
|
|
protected function normalizeInputGet(array $data): array {
|
|
|
|
$out = [];
|
|
|
|
if (array_key_exists("api", $data)) {
|
|
|
|
// the "api" parameter must be handled specially as it a string, but null has special meaning
|
|
|
|
$data['api'] = $data['api'] ?? "json";
|
|
|
|
}
|
|
|
|
foreach (self::PARAM_BOOL as $p) {
|
|
|
|
// first handle all the boolean parameters
|
|
|
|
$out[$p] = array_key_exists($p, $data);
|
|
|
|
}
|
|
|
|
foreach (self::PARAM_GET as $p => $t) {
|
|
|
|
$out[$p] = V::normalize($data[$p] ?? null, $t | V::M_DROP, "unix");
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function normalizeInputPost(array $data): array {
|
|
|
|
$out = [];
|
|
|
|
foreach (self::PARAM_POST as $p => $t) {
|
|
|
|
$out[$p] = V::normalize($data[$p] ?? null, $t | V::M_DROP, "unix");
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2019-03-27 11:54:47 -04:00
|
|
|
protected function processRequest(array $out, array $G, array $P): array {
|
2019-04-08 23:31:22 -04:00
|
|
|
$listUnread = false;
|
|
|
|
$listSaved = false;
|
|
|
|
if ($P['unread_recently_read']) {
|
|
|
|
$this->setUnread();
|
|
|
|
$listUnread = true;
|
|
|
|
}
|
2019-04-10 09:48:28 -04:00
|
|
|
if ($P['mark'] && $P['as'] && is_int($P['id'])) {
|
2019-04-08 23:31:22 -04:00
|
|
|
// depending on which mark are being made,
|
|
|
|
// either an 'unread_item_ids' or a
|
|
|
|
// 'saved_item_ids' entry will be added later
|
|
|
|
$listSaved = $this->setMarks($P, $listUnread);
|
2019-07-26 23:23:22 -04:00
|
|
|
} elseif ($G['mark'] && $G['as'] && is_int($G['id'])) {
|
|
|
|
// some clients send GET rather than POST parameters for marking
|
|
|
|
$listSaved = $this->setMarks($G, $listUnread);
|
2019-04-08 23:31:22 -04:00
|
|
|
}
|
2019-03-28 14:54:31 -04:00
|
|
|
if ($G['feeds'] || $G['groups']) {
|
|
|
|
if ($G['groups']) {
|
2019-03-27 11:54:47 -04:00
|
|
|
$out['groups'] = $this->getGroups();
|
|
|
|
}
|
2019-03-28 14:54:31 -04:00
|
|
|
if ($G['feeds']) {
|
2019-03-27 11:54:47 -04:00
|
|
|
$out['feeds'] = $this->getFeeds();
|
|
|
|
}
|
|
|
|
$out['feeds_groups'] = $this->getRelationships();
|
|
|
|
}
|
2019-03-28 14:54:31 -04:00
|
|
|
if ($G['favicons']) {
|
2019-07-24 12:27:50 -04:00
|
|
|
// TODO: implement favicons properly
|
|
|
|
// we provide a single blank favicon for now
|
|
|
|
$out['favicons'] = [
|
|
|
|
[
|
|
|
|
'id' => 0,
|
|
|
|
'data' => self::GENERIC_ICON_TYPE.",".self::GENERIC_ICON_DATA,
|
|
|
|
],
|
|
|
|
];
|
2019-03-27 11:54:47 -04:00
|
|
|
}
|
2019-03-28 14:54:31 -04:00
|
|
|
if ($G['items']) {
|
|
|
|
$out['items'] = $this->getItems($G);
|
|
|
|
$out['total_items'] = Arsse::$db->articleCount(Arsse::$user->id);
|
|
|
|
}
|
|
|
|
if ($G['links']) {
|
|
|
|
// TODO: implement hot links
|
2019-04-08 19:21:21 -04:00
|
|
|
$out['links'] = [];
|
2019-03-28 14:54:31 -04:00
|
|
|
}
|
2019-04-08 23:31:22 -04:00
|
|
|
if ($G['unread_item_ids'] || $listUnread) {
|
2019-04-04 19:37:48 -04:00
|
|
|
$out['unread_item_ids'] = $this->getItemIds((new Context)->unread(true));
|
|
|
|
}
|
2019-04-08 23:31:22 -04:00
|
|
|
if ($G['saved_item_ids'] || $listSaved) {
|
2019-04-04 19:37:48 -04:00
|
|
|
$out['saved_item_ids'] = $this->getItemIds((new Context)->starred(true));
|
|
|
|
}
|
2019-03-27 11:54:47 -04:00
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2019-03-27 15:09:04 -04:00
|
|
|
protected function baseResponse(bool $authenticated): array {
|
|
|
|
$out = [
|
|
|
|
'api_version' => self::LEVEL,
|
|
|
|
'auth' => (int) $authenticated,
|
|
|
|
];
|
|
|
|
if ($authenticated) {
|
|
|
|
// authenticated requests always include the most recent feed refresh
|
|
|
|
$out['last_refreshed_on_time'] = $this->getRefreshTime();
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2019-03-09 22:44:59 -05:00
|
|
|
protected function formatResponse(array $data, bool $xml): ResponseInterface {
|
|
|
|
if ($xml) {
|
2019-04-08 20:58:45 -04:00
|
|
|
$d = new \DOMDocument("1.0", "utf-8");
|
|
|
|
$d->appendChild($this->makeXMLAssoc($data, $d->createElement("response")));
|
|
|
|
return new XmlResponse($d->saveXML());
|
2019-03-09 22:44:59 -05:00
|
|
|
} else {
|
|
|
|
return new JsonResponse($data, 200, [], \JSON_UNESCAPED_SLASHES | \JSON_UNESCAPED_UNICODE);
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 20:58:45 -04:00
|
|
|
|
|
|
|
protected function makeXMLAssoc(array $data, \DOMElement $p): \DOMElement {
|
|
|
|
$d = $p->ownerDocument;
|
|
|
|
foreach ($data as $k => $v) {
|
|
|
|
if (!is_array($v)) {
|
2019-07-24 09:10:13 -04:00
|
|
|
$p->appendChild($d->createElement($k, (string) $v));
|
2019-04-08 20:58:45 -04:00
|
|
|
} elseif (isset($v[0])) {
|
|
|
|
// this is a very simplistic check for an indexed array
|
|
|
|
// it would not pass muster in the face of generic data,
|
2019-09-05 10:21:36 -04:00
|
|
|
// but we'll assume our code produces only well-ordered
|
2019-04-08 20:58:45 -04:00
|
|
|
// indexed arrays
|
|
|
|
$p->appendChild($this->makeXMLIndexed($v, $d->createElement($k), substr($k, 0, strlen($k) - 1)));
|
|
|
|
} else {
|
|
|
|
$p->appendChild($this->makeXMLAssoc($v, $d->createElement($k)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $p;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function makeXMLIndexed(array $data, \DOMElement $p, string $k): \DOMElement {
|
|
|
|
$d = $p->ownerDocument;
|
|
|
|
foreach ($data as $v) {
|
|
|
|
if (!is_array($v)) {
|
2019-07-24 09:10:13 -04:00
|
|
|
// this case is never encountered with Fever's output
|
|
|
|
$p->appendChild($d->createElement($k, (string) $v)); // @codeCoverageIgnore
|
2019-04-08 20:58:45 -04:00
|
|
|
} elseif (isset($v[0])) {
|
2019-07-24 09:10:13 -04:00
|
|
|
// this case is never encountered with Fever's output
|
|
|
|
$p->appendChild($this->makeXMLIndexed($v, $d->createElement($k), substr($k, 0, strlen($k) - 1))); // @codeCoverageIgnore
|
2019-04-08 20:58:45 -04:00
|
|
|
} else {
|
|
|
|
$p->appendChild($this->makeXMLAssoc($v, $d->createElement($k)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $p;
|
|
|
|
}
|
2019-03-09 22:44:59 -05:00
|
|
|
|
|
|
|
protected function logIn(string $hash): bool {
|
|
|
|
// if HTTP authentication was successful and sessions are not enforced, proceed unconditionally
|
|
|
|
if (isset(Arsse::$user->id) && !Arsse::$conf->userSessionEnforced) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
// verify the supplied hash is valid
|
2019-03-18 22:49:47 -04:00
|
|
|
$s = Arsse::$db->TokenLookup("fever.login", $hash);
|
2019-03-09 22:44:59 -05:00
|
|
|
} catch (\JKingWeb\Arsse\Db\ExceptionInput $e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// set the user name
|
|
|
|
Arsse::$user->id = $s['user'];
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-26 08:53:26 -04:00
|
|
|
|
2019-07-26 23:24:29 -04:00
|
|
|
protected function setMarks(array $P, &$listUnread): bool {
|
2019-04-08 23:31:22 -04:00
|
|
|
$listSaved = false;
|
|
|
|
$c = new Context;
|
|
|
|
$id = $P['id'];
|
|
|
|
if ($P['before']) {
|
|
|
|
$c->notMarkedSince($P['before']);
|
|
|
|
}
|
|
|
|
switch ($P['mark']) {
|
|
|
|
case "item":
|
|
|
|
$c->article($id);
|
|
|
|
break;
|
|
|
|
case "group":
|
|
|
|
if ($id > 0) {
|
2019-04-10 09:48:28 -04:00
|
|
|
// concrete groups
|
2019-04-08 23:31:22 -04:00
|
|
|
$c->tag($id);
|
|
|
|
} elseif ($id < 0) {
|
|
|
|
// group negative-one is the "Sparks" supergroup i.e. no feeds
|
|
|
|
$c->not->folder(0);
|
2019-04-10 09:48:28 -04:00
|
|
|
} else {
|
|
|
|
// group zero is the "Kindling" supergroup i.e. all feeds
|
|
|
|
// nothing need to be done for this
|
2019-04-08 23:31:22 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "feed":
|
|
|
|
$c->subscription($id);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $listSaved;
|
|
|
|
}
|
|
|
|
switch ($P['as']) {
|
|
|
|
case "read":
|
|
|
|
$data = ['read' => true];
|
|
|
|
$listUnread = true;
|
|
|
|
break;
|
|
|
|
case "unread":
|
|
|
|
// this option is undocumented, but valid
|
|
|
|
$data = ['read' => false];
|
|
|
|
$listUnread = true;
|
|
|
|
break;
|
|
|
|
case "saved":
|
|
|
|
$data = ['starred' => true];
|
|
|
|
$listSaved = true;
|
|
|
|
break;
|
|
|
|
case "unsaved":
|
|
|
|
$data = ['starred' => false];
|
|
|
|
$listSaved = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $listSaved;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
Arsse::$db->articleMark(Arsse::$user->id, $data, $c);
|
|
|
|
} catch (ExceptionInput $e) {
|
|
|
|
// ignore any errors
|
|
|
|
}
|
|
|
|
return $listSaved;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function setUnread() {
|
2019-04-10 10:21:14 -04:00
|
|
|
$lastUnread = Arsse::$db->articleList(Arsse::$user->id, (new Context)->limit(1), ["marked_date"], ["marked_date desc"])->getValue();
|
|
|
|
if (!$lastUnread) {
|
|
|
|
// there are no articles
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fever takes the date of the last read article less fifteen seconds as a cut-off.
|
|
|
|
// We take the date of last mark (whether it be read, unread, saved, unsaved), which
|
2019-04-10 10:51:02 -04:00
|
|
|
// may not actually signify a mark, but we'll otherwise also count back fifteen seconds
|
2019-04-10 10:21:14 -04:00
|
|
|
$c = new Context;
|
|
|
|
$lastUnread = Date::normalize($lastUnread, "sql");
|
2019-04-10 18:27:57 -04:00
|
|
|
$since = Date::sub("PT15S", $lastUnread);
|
2019-04-10 10:21:14 -04:00
|
|
|
$c->unread(false)->markedSince($since);
|
2019-09-05 10:21:36 -04:00
|
|
|
Arsse::$db->articleMark(Arsse::$user->id, ['read' => false], $c);
|
2019-04-08 23:31:22 -04:00
|
|
|
}
|
|
|
|
|
2019-03-27 15:09:04 -04:00
|
|
|
protected function getRefreshTime() {
|
|
|
|
return Date::transform(Arsse::$db->subscriptionRefreshed(Arsse::$user->id), "unix");
|
|
|
|
}
|
|
|
|
|
2019-03-26 08:53:26 -04:00
|
|
|
protected function getFeeds(): array {
|
|
|
|
$out = [];
|
|
|
|
foreach (arsse::$db->subscriptionList(Arsse::$user->id) as $sub) {
|
|
|
|
$out[] = [
|
2019-03-27 15:09:04 -04:00
|
|
|
'id' => (int) $sub['id'],
|
2019-07-24 12:27:50 -04:00
|
|
|
'favicon_id' => 0, // TODO: implement favicons
|
2019-03-27 15:09:04 -04:00
|
|
|
'title' => (string) $sub['title'],
|
|
|
|
'url' => $sub['url'],
|
|
|
|
'site_url' => $sub['source'],
|
|
|
|
'is_spark' => 0,
|
|
|
|
'last_updated_on_time' => Date::transform($sub['edited'], "unix", "sql"),
|
2019-03-26 08:53:26 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2019-03-27 11:54:47 -04:00
|
|
|
protected function getGroups(): array {
|
2019-03-26 08:53:26 -04:00
|
|
|
$out = [];
|
2019-03-27 11:54:47 -04:00
|
|
|
foreach (Arsse::$db->tagList(Arsse::$user->id) as $member) {
|
|
|
|
$out[] = [
|
|
|
|
'id' => (int) $member['id'],
|
|
|
|
'title' => $member['name'],
|
|
|
|
];
|
2019-03-26 08:53:26 -04:00
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2019-03-27 11:54:47 -04:00
|
|
|
protected function getRelationships(): array {
|
2019-03-26 08:53:26 -04:00
|
|
|
$out = [];
|
|
|
|
$sets = [];
|
2019-03-27 11:54:47 -04:00
|
|
|
foreach (Arsse::$db->tagSummarize(Arsse::$user->id) as $member) {
|
2019-03-26 08:53:26 -04:00
|
|
|
if (!isset($sets[$member['id']])) {
|
|
|
|
$sets[$member['id']] = [];
|
|
|
|
}
|
|
|
|
$sets[$member['id']][] = (int) $member['subscription'];
|
|
|
|
}
|
|
|
|
foreach ($sets as $id => $subs) {
|
|
|
|
$out[] = [
|
|
|
|
'group_id' => (int) $id,
|
|
|
|
'feed_ids' => implode(",", $subs),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2019-04-04 17:57:12 -04:00
|
|
|
|
|
|
|
protected function getItems(array $G): array {
|
|
|
|
$c = (new Context)->limit(50);
|
|
|
|
$reverse = false;
|
|
|
|
// handle the standard options
|
|
|
|
if ($G['with_ids']) {
|
|
|
|
$c->articles(explode(",", $G['with_ids']));
|
|
|
|
} elseif ($G['max_id']) {
|
2019-04-08 18:41:56 -04:00
|
|
|
$c->latestArticle($G['max_id'] - 1);
|
2019-04-04 17:57:12 -04:00
|
|
|
$reverse = true;
|
2019-04-08 18:41:56 -04:00
|
|
|
} elseif ($G['since_id']) {
|
|
|
|
$c->oldestArticle($G['since_id'] + 1);
|
2019-04-04 17:57:12 -04:00
|
|
|
}
|
|
|
|
// handle the undocumented options
|
|
|
|
if ($G['group_ids']) {
|
|
|
|
$c->tags(explode(",", $G['group_ids']));
|
|
|
|
}
|
|
|
|
if ($G['feed_ids']) {
|
|
|
|
$c->subscriptions(explode(",", $G['feed_ids']));
|
|
|
|
}
|
|
|
|
// get results
|
|
|
|
$out = [];
|
|
|
|
$order = $reverse ? "id desc" : "id";
|
|
|
|
foreach (Arsse::$db->articleList(Arsse::$user->id, $c, ["id", "subscription", "title", "author", "content", "url", "starred", "unread", "published_date"], [$order]) as $r) {
|
|
|
|
$out[] = [
|
|
|
|
'id' => (int) $r['id'],
|
|
|
|
'feed_id' => (int) $r['subscription'],
|
|
|
|
'title' => (string) $r['title'],
|
|
|
|
'author' => (string) $r['author'],
|
|
|
|
'html' => (string) $r['content'],
|
2019-04-08 18:41:56 -04:00
|
|
|
'url' => (string) $r['url'],
|
2019-04-04 17:57:12 -04:00
|
|
|
'is_saved' => (int) $r['starred'],
|
|
|
|
'is_read' => (int) !$r['unread'],
|
|
|
|
'created_on_time' => Date::transform($r['published_date'], "unix", "sql"),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2019-04-04 19:37:48 -04:00
|
|
|
|
2019-04-05 08:20:05 -04:00
|
|
|
protected function getItemIds(Context $c = null): string {
|
2019-04-04 19:37:48 -04:00
|
|
|
$out = [];
|
|
|
|
foreach (Arsse::$db->articleList(Arsse::$user->id, $c) as $r) {
|
|
|
|
$out[] = (int) $r['id'];
|
|
|
|
}
|
2019-04-05 08:20:05 -04:00
|
|
|
return implode(",", $out);
|
2019-04-04 19:37:48 -04:00
|
|
|
}
|
2019-03-09 22:44:59 -05:00
|
|
|
}
|