diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-19 22:10:52 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-19 22:10:52 +0200 |
commit | 8f4418c2b0b1027032594bf8d02e68bcc0ad6316 (patch) | |
tree | de8b1a3127a105997023a818939d26b75e783bc9 /src/web/views/api/v3/feed.py | |
parent | Added Flask-Restless dependency. (diff) | |
download | newspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.tar.gz newspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.tar.bz2 newspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.zip |
Added a blueprint for the Flask-Restless feed api.
Diffstat (limited to 'src/web/views/api/v3/feed.py')
-rw-r--r-- | src/web/views/api/v3/feed.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/web/views/api/v3/feed.py b/src/web/views/api/v3/feed.py new file mode 100644 index 00000000..ef1b415f --- /dev/null +++ b/src/web/views/api/v3/feed.py @@ -0,0 +1,30 @@ +from flask.ext.login import current_user +from web import models +from bootstrap import application, manager +from web.controllers import FeedController +from web.views.api.v3.common import AbstractProcessor +from web.views.api.v3.common import url_prefix, auth_func + +class FeedProcessor(AbstractProcessor): + def get_single_preprocessor(self, instance_id=None, **kw): + # Check if the user is authorized to modify the specified + # instance of the model. + contr = FeedController(current_user.id) + feed = contr.get(id=instance_id) + if not self.is_authorized_to_modify(current_user, feed): + raise ProcessingException(description='Not Authorized', code=401) + + +feed_processor = FeedProcessor() + +blueprint_feed = manager.create_api_blueprint(models.Feed, + url_prefix=url_prefix, + methods=['GET', 'POST', 'PUT', 'DELETE'], + preprocessors=dict(GET_SINGLE=[auth_func, + feed_processor.get_single_preprocessor], + GET_MANY=[auth_func, + feed_processor.get_many_preprocessor], + PUT_SINGLE=[auth_func], + POST=[auth_func], + DELETE=[auth_func])) +application.register_blueprint(blueprint_feed) |