summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-07-12 12:26:09 +0300
committerAndrew Dolgov <[email protected]>2015-07-12 12:26:09 +0300
commit5c784e701c5a2715e94479ee202a5c179398a0e0 (patch)
tree1bb7140e22fe6c414da75fb6667a7f62643a643c /classes/api.php
parent34440201006344012ed01e37f883f2f0c11fcba7 (diff)
api: add top id stuff, optionally return header w/ status information in getHeadlines (currently only top_id_changed)
Diffstat (limited to 'classes/api.php')
-rw-r--r--classes/api.php21
1 files changed, 16 insertions, 5 deletions
diff --git a/classes/api.php b/classes/api.php
index 30bde1ffe..af16d0658 100644
--- a/classes/api.php
+++ b/classes/api.php
@@ -203,6 +203,8 @@ class API extends Handler {
$force_update = sql_bool_to_bool($_REQUEST["force_update"]);
$has_sandbox = sql_bool_to_bool($_REQUEST["has_sandbox"]);
$excerpt_length = (int)$this->dbh->escape_string($_REQUEST["excerpt_length"]);
+ $check_top_id = (int)$this->dbh->escape_string($_REQUEST["check_top_id"]);
+ $include_header = sql_bool_to_bool($_REQUEST["include_header"]);
$_SESSION['hasSandbox'] = $has_sandbox;
@@ -223,12 +225,16 @@ class API extends Handler {
$search = $this->dbh->escape_string($_REQUEST["search"]);
- $headlines = $this->api_get_headlines($feed_id, $limit, $offset,
+ list($headlines, $headlines_header) = $this->api_get_headlines($feed_id, $limit, $offset,
$filter, $is_cat, $show_excerpt, $show_content, $view_mode, $override_order,
$include_attachments, $since_id, $search,
- $include_nested, $sanitize_content, $force_update, $excerpt_length);
+ $include_nested, $sanitize_content, $force_update, $excerpt_length, $check_top_id);
- $this->wrap(self::STATUS_OK, $headlines);
+ if ($include_header) {
+ $this->wrap(self::STATUS_OK, array($headlines_header, $headlines));
+ } else {
+ $this->wrap(self::STATUS_OK, $headlines);
+ }
} else {
$this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
}
@@ -635,7 +641,8 @@ class API extends Handler {
static function api_get_headlines($feed_id, $limit, $offset,
$filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
$include_attachments, $since_id,
- $search = "", $include_nested = false, $sanitize_content = true, $force_update = false, $excerpt_length = 100) {
+ $search = "", $include_nested = false, $sanitize_content = true,
+ $force_update = false, $excerpt_length = 100, $check_top_id = false) {
if ($force_update && $feed_id > 0 && is_numeric($feed_id)) {
// Update the feed if required with some basic flood control
@@ -677,6 +684,7 @@ class API extends Handler {
"offset" => $offset,
"since_id" => $since_id,
"include_children" => $include_nested,
+ "check_top_id" => $check_top_id
);
$qfh_ret = queryFeedHeadlines($params);
@@ -685,6 +693,7 @@ class API extends Handler {
$feed_title = $qfh_ret[1];
$headlines = array();
+ $headlines_header = array();
if (is_resource($result)) {
while ($line = db_fetch_assoc($result)) {
@@ -774,9 +783,11 @@ class API extends Handler {
array_push($headlines, $headline_row);
}
+ } else if (is_numeric($result) && $result == -1) {
+ $headlines_header['top_id_changed'] = true;
}
- return $headlines;
+ return array($headlines, $headlines_header);
}
function unsubscribeFeed() {