[nudostarforum] add support (#8664)

Add support for nudostar.com forum (XenForo-based forum site).
This is separate from the existing nudostar.py which handles nudostar.tv.

Supports:
- Thread extraction with pagination
- Individual post extraction
- Authentication via xf_user cookie or username/password
- Internal attachments (both linked and embedded images)
- External image host URLs (queued for recursive processing)
This commit is contained in:
SpiffyChatterbox
2025-12-11 11:03:17 -05:00
committed by GitHub
parent 484a15ff83
commit 1eaaffffbb
3 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
from gallery_dl.extractor import nudostarforum
__tests__ = (
{
"#url" : "https://nudostar.com/forum/threads/aspen-rae.106714/",
"#category": ("", "nudostarforum", "thread"),
"#class" : nudostarforum.NudostarforumThreadExtractor,
},
{
"#url" : "https://nudostar.com/forum/threads/aspen-rae.106714/page-2",
"#category": ("", "nudostarforum", "thread"),
"#class" : nudostarforum.NudostarforumThreadExtractor,
},
{
"#url" : "https://nudostar.com/forum/threads/name.12345/post-67890",
"#category": ("", "nudostarforum", "post"),
"#class" : nudostarforum.NudostarforumPostExtractor,
},
)