mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-05 23:17:00 -05:00
API more BazQux compatibility (#3320)
Implement compatibility fix, to allow the streamID / inclusion criteria to be given as `&s=` parameter instead of in the URL path. https://github.com/bazqux/bazqux-api#fetching-streams This form of request is apparently sometimes used by FeedMe: ``` /api/greader.php/reader/api/0/stream/contents?output=json&n=100&xt=user%2F-%2Fstate%2Fcom.google%2Fread&ot=0&s=user%2F-%2Flabel%2FBlogs ```
This commit is contained in:
committed by
GitHub
parent
75440c6765
commit
0567e38947
@@ -979,8 +979,15 @@ if ($pathInfos[1] === 'accounts') {
|
||||
if (!ctype_digit($continuation)) {
|
||||
$continuation = '';
|
||||
}
|
||||
if (isset($pathInfos[5]) && $pathInfos[5] === 'contents' && isset($pathInfos[6])) {
|
||||
if (isset($pathInfos[7])) {
|
||||
if (isset($pathInfos[5]) && $pathInfos[5] === 'contents') {
|
||||
if (!isset($pathInfos[6]) && isset($_GET['s'])) {
|
||||
// Compatibility BazQux API https://github.com/bazqux/bazqux-api#fetching-streams
|
||||
$streamIdInfos = explode('/', $_GET['s']);
|
||||
foreach ($streamIdInfos as $streamIdInfo) {
|
||||
$pathInfos[] = $streamIdInfo;
|
||||
}
|
||||
}
|
||||
if (isset($pathInfos[6]) && isset($pathInfos[7])) {
|
||||
if ($pathInfos[6] === 'feed') {
|
||||
$include_target = $pathInfos[7];
|
||||
if ($include_target != '' && !ctype_digit($include_target)) {
|
||||
@@ -1005,7 +1012,7 @@ if ($pathInfos[1] === 'accounts') {
|
||||
streamContents($pathInfos[8], $include_target, $start_time, $stop_time, $count, $order, $filter_target, $exclude_target, $continuation);
|
||||
}
|
||||
}
|
||||
} else { //EasyRSS
|
||||
} else { //EasyRSS, FeedMe
|
||||
$include_target = '';
|
||||
streamContents('reading-list', $include_target, $start_time, $stop_time, $count, $order, $filter_target, $exclude_target, $continuation);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user