rssVideos: Add --seen flag

prenix
Geoffrey Frogeye 2021-12-18 22:23:48 +01:00
parent 1948fc0af2
commit f4c81e346a
Signed by: geoffrey
GPG Key ID: C72403E7F82E6AD8
1 changed files with 3 additions and 2 deletions

View File

@ -194,8 +194,8 @@ class RVElement:
}
def matches_filter(self, args: configargparse.Namespace) -> bool:
if self.watched:
log.debug(f"Already watched: {self}")
if args.seen != "any" and (args.seen == "seen") != self.watched:
log.debug(f"Not {args.seen}: {self}")
return False
if args.title and not re.search(args.title, self.title):
log.debug(f"Title not matching {args.title}: {self}")
@ -447,6 +447,7 @@ def get_args() -> configargparse.Namespace:
parser.add("--title", help="Regex to filter by title")
parser.add("--link", help="Regex to filter by link")
parser.add("--duration", help="Comparative to filter by duration")
parser.add("--seen", choices=("seen","unseen","any"), default="unseen", help="Only include seen/unseen/any videos")
# TODO Envrionment variables
parser.add(
"--max-duration",