intake-praw: add SELF and IREDDIT filter options
This commit is contained in:
parent
fd202867f7
commit
777f8023e6
@ -24,7 +24,7 @@ def stderr(*args, **kwargs):
|
||||
|
||||
|
||||
def yn(s):
|
||||
return s if s == "yes" or s == "no" else "--"
|
||||
return s if s == "yes" or s == "no" else ""
|
||||
|
||||
|
||||
def main():
|
||||
@ -90,6 +90,8 @@ def main():
|
||||
stderr("nsfw =", yn(env("NSFW")))
|
||||
stderr("spoiler =", yn(env("SPOILER")))
|
||||
stderr("video =", yn(env("VIDEO")))
|
||||
stderr("self =", yn(env("SELF")))
|
||||
stderr("i.reddit =", yn(env("IREDDIT")))
|
||||
stderr("min score =", min_score)
|
||||
|
||||
for post in posts:
|
||||
@ -123,6 +125,16 @@ def main():
|
||||
if is_spoiler:
|
||||
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
|
||||
if min_score and post.score < min_score:
|
||||
continue
|
||||
|
@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "intake-praw"
|
||||
version = "1.2.0"
|
||||
version = "1.2.1"
|
||||
|
||||
[project.scripts]
|
||||
intake-praw = "intake_praw.core:main"
|
||||
|
Loading…
Reference in New Issue
Block a user