From 2bbc83aeb0452175d2a758ac2b75111f70fa1a18 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Wed, 29 Nov 2017 12:15:37 -0500 Subject: [PATCH] Tweak --- lib/REST/TinyTinyRSS/API.php | 4 ++-- tests/REST/TinyTinyRSS/TestTinyTinyAPI.php | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/REST/TinyTinyRSS/API.php b/lib/REST/TinyTinyRSS/API.php index d331121..4dd60da 100644 --- a/lib/REST/TinyTinyRSS/API.php +++ b/lib/REST/TinyTinyRSS/API.php @@ -38,12 +38,11 @@ Protocol difference so far: - Top-level categories in getFeedTree have a 'parent_id' property (set to null); in TT-RSS the property is absent - Article hashes are SHA-256 rather than SHA-1. - Articles have at most one attachment (enclosure), whereas TTRSS allows for several; there is also significantly less detail. These are limitations of picoFeed which should be addressed - - IDs for enclosures are ommitted as we don't give them IDs + - IDs for enclosures are always 0 as we don't give them IDs - Searching in getHeadlines is not yet implemented - Category -3 (all non-special feeds) is handled correctly in getHeadlines; TT-RSS returns results for feed -3 (Fresh) - Sorting of headlines does not match TT-RSS: special feeds are not sorted specially like they should be - The 'sanitize', 'force_update', and 'has_sandbox' parameters of getHeadlines are ignored - - The 'always_display_attachments' key of articles in getHeadlines is omitted, as the user cannot express a preference */ @@ -1278,6 +1277,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler { 'tags' => Arsse::$db->articleCategoriesGet(Arsse::$user->id, $article['id']), 'comments_count' => 0, 'comments_link' => "", + 'always_display_attachments' => false, ]; if ($data['show_content']) { $row['content'] = $article['content']; diff --git a/tests/REST/TinyTinyRSS/TestTinyTinyAPI.php b/tests/REST/TinyTinyRSS/TestTinyTinyAPI.php index 39542ff..4d04546 100644 --- a/tests/REST/TinyTinyRSS/TestTinyTinyAPI.php +++ b/tests/REST/TinyTinyRSS/TestTinyTinyAPI.php @@ -1752,6 +1752,7 @@ LONG_STRING; 'tags' => [], 'comments_count' => 0, 'comments_link' => "", + 'always_display_attachments' => false, ], [ 'id' => 2112, @@ -1776,6 +1777,7 @@ LONG_STRING; 'tags' => ["Boring", "Illogical"], 'comments_count' => 0, 'comments_link' => "", + 'always_display_attachments' => false, ], ]); }