1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 03:02:50 +01:00

[twitter] "fix" search pagination (#3536, #3534)

- properly process instructions
- do not expect a predetermined instruction order
This commit is contained in:
Mike Fährmann 2023-01-16 14:58:30 +01:00
parent 4e86aaa4db
commit 9683d79bb7
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -1245,17 +1245,28 @@ class TwitterAPI():
while True:
data = self._call(endpoint, params)
instr = data["timeline"]["instructions"]
if not instr:
instructions = data["timeline"]["instructions"]
if not instructions:
return
tweets = data["globalObjects"]["tweets"]
users = data["globalObjects"]["users"]
tweet_id = cursor = None
tweet_ids = []
entries = ()
# process instructions
for instr in instructions:
if "addEntries" in instr:
entries = instr["addEntries"]["entries"]
elif "replaceEntry" in instr:
entry = instr["replaceEntry"]["entry"]
if entry["entryId"].startswith("cursor-bottom-"):
cursor = (entry["content"]["operation"]
["cursor"]["value"])
# collect tweet IDs and cursor value
for entry in instr[0]["addEntries"]["entries"]:
for entry in entries:
entry_startswith = entry["entryId"].startswith
if entry_startswith(("tweet-", "sq-I-t-")):
@ -1315,11 +1326,7 @@ class TwitterAPI():
quoted["quoted_by_id_str"] = tweet["id_str"]
yield quoted
# update cursor value
if "replaceEntry" in instr[-1] :
cursor = (instr[-1]["replaceEntry"]["entry"]
["content"]["operation"]["cursor"]["value"])
# stop on empty response
if not cursor or (not tweets and not tweet_id):
return
params["cursor"] = cursor