api: getArticle: allow comma-separated list of ids
This commit is contained in:
parent
cd9c29de80
commit
f95ac2755a
|
@ -194,29 +194,29 @@
|
||||||
|
|
||||||
case "getArticle":
|
case "getArticle":
|
||||||
|
|
||||||
$article_id = (int)db_escape_string($_REQUEST["article_id"]);
|
$article_id = db_escape_string($_REQUEST["article_id"]);
|
||||||
|
|
||||||
$query = "SELECT title,link,content,feed_id,comments,int_id,
|
$query = "SELECT id,title,link,content,feed_id,comments,int_id,
|
||||||
marked,unread,published,
|
marked,unread,published,
|
||||||
".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
|
".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
|
||||||
author
|
author
|
||||||
FROM ttrss_entries,ttrss_user_entries
|
FROM ttrss_entries,ttrss_user_entries
|
||||||
WHERE id = '$article_id' AND ref_id = id AND owner_uid = " .
|
WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
|
||||||
$_SESSION["uid"] ;
|
$_SESSION["uid"] ;
|
||||||
|
|
||||||
$attachments = get_article_enclosures($link, $article_id);
|
|
||||||
|
|
||||||
$result = db_query($link, $query);
|
$result = db_query($link, $query);
|
||||||
|
|
||||||
$article = array();
|
|
||||||
|
|
||||||
if (db_num_rows($result) != 0) {
|
if (db_num_rows($result) != 0) {
|
||||||
$line = db_fetch_assoc($result);
|
|
||||||
|
while ($line = db_fetch_assoc($result)) {
|
||||||
|
|
||||||
|
$attachments = get_article_enclosures($link, $line['id']);
|
||||||
|
|
||||||
$article = array(
|
$article = array(
|
||||||
|
"id" => $line["id"],
|
||||||
"title" => $line["title"],
|
"title" => $line["title"],
|
||||||
"link" => $line["link"],
|
"link" => $line["link"],
|
||||||
"labels" => get_article_labels($link, $article_id),
|
"labels" => get_article_labels($link, $line['id']),
|
||||||
"unread" => sql_bool_to_bool($line["unread"]),
|
"unread" => sql_bool_to_bool($line["unread"]),
|
||||||
"marked" => sql_bool_to_bool($line["marked"]),
|
"marked" => sql_bool_to_bool($line["marked"]),
|
||||||
"published" => sql_bool_to_bool($line["published"]),
|
"published" => sql_bool_to_bool($line["published"]),
|
||||||
|
@ -227,9 +227,10 @@
|
||||||
"feed_id" => $line["feed_id"],
|
"feed_id" => $line["feed_id"],
|
||||||
"attachments" => $attachments
|
"attachments" => $attachments
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
print json_encode($article);
|
print json_encode($article);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case "getConfig":
|
case "getConfig":
|
||||||
|
|
Loading…
Reference in New Issue