mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
fix(Twitter): properly find time line entries when ordering is inconsistent (#3461)
This commit is contained in:
parent
bd6f56383c
commit
8eabdbe5f8
@ -48,17 +48,29 @@ class TwitterClient
|
|||||||
if ($result->__typename === 'UserUnavailable') {
|
if ($result->__typename === 'UserUnavailable') {
|
||||||
throw new \Exception('UserUnavailable');
|
throw new \Exception('UserUnavailable');
|
||||||
}
|
}
|
||||||
$instructionTypes = ['TimelineAddEntries', 'TimelineClearCache'];
|
$instructionTypes = [
|
||||||
|
'TimelineAddEntries',
|
||||||
|
'TimelineClearCache',
|
||||||
|
'TimelinePinEntry', // unclear purpose, maybe pinned tweet?
|
||||||
|
];
|
||||||
$instructions = $result->timeline_v2->timeline->instructions;
|
$instructions = $result->timeline_v2->timeline->instructions;
|
||||||
if (!isset($instructions[1])) {
|
if (!isset($instructions[1])) {
|
||||||
throw new \Exception('The account exists but has not tweeted yet?');
|
throw new \Exception('The account exists but has not tweeted yet?');
|
||||||
}
|
}
|
||||||
$instruction = $instructions[1];
|
|
||||||
if ($instruction->type !== 'TimelineAddEntries') {
|
$entries = null;
|
||||||
throw new \Exception(sprintf('Unexpected instruction type: %s', $instruction->type));
|
foreach ($instructions as $instruction) {
|
||||||
|
if ($instruction->type === 'TimelineAddEntries') {
|
||||||
|
$entries = $instruction->entries;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if (!$entries) {
|
||||||
|
throw new \Exception(sprintf('Unable to find time line tweets in: %s', implode(',', array_column($instructions, 'type'))));
|
||||||
|
}
|
||||||
|
|
||||||
$tweets = [];
|
$tweets = [];
|
||||||
foreach ($instruction->entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
if ($entry->content->entryType !== 'TimelineTimelineItem') {
|
if ($entry->content->entryType !== 'TimelineTimelineItem') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user