aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-05-19 10:21:07 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 15:34:16 +0200
commit5fba105078286cebb299eaa59eec4f801b5bc84e (patch)
treea5f11e56d9d8f1bdc861c2913d6d230490f2691c /pyaggr3g470r
parentadding filters mechanism + splitting tests + adding tests for filters (diff)
downloadnewspipe-5fba105078286cebb299eaa59eec4f801b5bc84e.tar.gz
newspipe-5fba105078286cebb299eaa59eec4f801b5bc84e.tar.bz2
newspipe-5fba105078286cebb299eaa59eec4f801b5bc84e.zip
adding comments and tests
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/controllers/article.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/pyaggr3g470r/controllers/article.py b/pyaggr3g470r/controllers/article.py
index 9051a910..b3a79838 100644
--- a/pyaggr3g470r/controllers/article.py
+++ b/pyaggr3g470r/controllers/article.py
@@ -33,15 +33,16 @@ class ArticleController(AbstractController):
.group_by(Article.feed_id).all())
def create(self, **attrs):
+ # handling special denorm for article rights
assert 'feed_id' in attrs
feed = FeedController(
attrs.get('user_id', self.user_id)).get(id=attrs['feed_id'])
if 'user_id' in attrs:
assert feed.user_id == attrs['user_id'] or self.user_id is None
attrs['user_id'] = feed.user_id
- if not feed.filters:
- return super().create(**attrs)
- for filter_ in feed.filters:
+
+ # handling feed's filters
+ for filter_ in feed.filters or []:
match = False
if filter_.get('type') == 'regex':
match = re.match(filter_['pattern'], attrs.get('title', ''))
@@ -63,5 +64,3 @@ class ArticleController(AbstractController):
attrs['link'])
return super().create(**attrs)
-
-
bgstack15