intake-praw: add SELF and IREDDIT filter options

This commit is contained in:
Tim Van Baak 2025-03-28 22:43:17 -07:00
parent fd202867f7
commit 777f8023e6
2 changed files with 14 additions and 2 deletions

View File

@ -24,7 +24,7 @@ def stderr(*args, **kwargs):
def yn(s): def yn(s):
return s if s == "yes" or s == "no" else "--" return s if s == "yes" or s == "no" else ""
def main(): def main():
@ -90,6 +90,8 @@ def main():
stderr("nsfw =", yn(env("NSFW"))) stderr("nsfw =", yn(env("NSFW")))
stderr("spoiler =", yn(env("SPOILER"))) stderr("spoiler =", yn(env("SPOILER")))
stderr("video =", yn(env("VIDEO"))) stderr("video =", yn(env("VIDEO")))
stderr("self =", yn(env("SELF")))
stderr("i.reddit =", yn(env("IREDDIT")))
stderr("min score =", min_score) stderr("min score =", min_score)
for post in posts: for post in posts:
@ -123,6 +125,16 @@ def main():
if is_spoiler: if is_spoiler:
item["title"] = "[S] " + item["title"] item["title"] = "[S] " + item["title"]
# Special handling for self posts
is_self = post.is_self
if (is_self and env("SELF") == "no") or (not is_self and env("SELF") == "yes"):
continue
# Special handling for first-party image posts
is_fpimg = "i.redd" in post.url or getattr(post, "is_gallery", False)
if (is_fpimg and env("IREDDIT") == "no") or (not is_fpimg and env("IREDDIT") == "yes"):
continue
# Post score # Post score
if min_score and post.score < min_score: if min_score and post.score < min_score:
continue continue

View File

@ -1,6 +1,6 @@
[project] [project]
name = "intake-praw" name = "intake-praw"
version = "1.2.0" version = "1.2.1"
[project.scripts] [project.scripts]
intake-praw = "intake_praw.core:main" intake-praw = "intake_praw.core:main"