[pillowfort] extract 'b2_lg_url' media (#4570)

This commit is contained in:
Mike Fährmann
2023-09-23 00:05:26 +02:00
parent 50e2ebaff0
commit 1d2fd0b831
2 changed files with 82 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ class PillowfortExtractor(Extractor):
post["num"] = 0
for file in files:
url = file["url"]
url = file["url"] or file.get("b2_lg_url")
if not url:
continue

View File

@@ -63,8 +63,88 @@ __tests__ = (
"username" : "Staff",
},
{
"#url" : "https://www.pillowfort.social/posts/1124584",
"#comment" : "'b2_lg_url' media URL (#4570)",
"#category": ("", "pillowfort", "post"),
"#class" : pillowfort.PillowfortPostExtractor,
"#pattern" : r"https://img2\.pillowfort\.social/posts/c8e834bc09e6_Brandee\.png",
"#count" : 1,
"avatar_frame" : None,
"avatar_id" : None,
"avatar_url" : "https://img3.pillowfort.social/avatars/000/037/139/original/437.jpg?1545015697",
"b2_lg_url" : "https://img2.pillowfort.social/posts/c8e834bc09e6_Brandee.png",
"b2_sm_url" : "https://img2.pillowfort.social/posts/c8e834bc09e6_Brandee_small.png",
"cached_tag_list": "art, digital art, mermaid, mermaids, underwater, seaweed, illustration, speed paint",
"col" : 0,
"comm_screening_status": "not_applicable",
"commentable" : True,
"comments_count": 0,
"community_id" : None,
"concealed_comment_warning": None,
"content" : "<p>Sea Bed</p>",
"created_at" : r"re:2020-02-.+",
"currentuser_default_avatar_url": None,
"currentuser_multi_avi": None,
"date" : "dt:2020-02-29 17:09:03",
"deleted" : None,
"deleted_at" : None,
"deleted_by_mod": None,
"deleted_for_flag_id": None,
"embed_code" : None,
"extension" : "png",
"filename" : "Brandee",
"hash" : "c8e834bc09e6",
"id" : 720167,
"last_activity" : r"re:2020-02-.+",
"last_activity_elapsed": r"re:\d+ months",
"last_edited_at": None,
"likes_count" : 8,
"media_type" : "picture",
"nsfw" : False,
"num" : 1,
"original_post_id": None,
"original_post_user_id": None,
"pic_row_last" : 1,
"picture_content_type": None,
"picture_file_name": None,
"picture_file_size": None,
"picture_updated_at": None,
"post_id" : 1124584,
"post_type" : "picture",
"privacy" : "public",
"reblog_copy_info": [],
"rebloggable" : True,
"reblogged_from_post_id": None,
"reblogged_from_user_id": None,
"reblogs_count" : int,
"row" : 1,
"small_image_url": None,
"tag_list" : None,
"tags" : [
"art",
"digital art",
"mermaid",
"mermaids",
"underwater",
"seaweed",
"illustration",
"speed paint"
],
"time_elapsed" : r"re:\d+ months",
"timestamp" : str,
"title" : "",
"updated_at" : r"re:2020-02-.+",
"url" : "",
"user_concealed": None,
"user_id" : 37201,
"username" : "Maclanahan",
},
{
"#url" : "https://www.pillowfort.social/posts/1557500",
"#comment" : "'external' option",
"#category": ("", "pillowfort", "post"),
"#class" : pillowfort.PillowfortPostExtractor,
"#options" : {
@@ -76,6 +156,7 @@ __tests__ = (
{
"#url" : "https://www.pillowfort.social/posts/1672518",
"#comment" : "'inline' option",
"#category": ("", "pillowfort", "post"),
"#class" : pillowfort.PillowfortPostExtractor,
"#options" : {"inline": True},