aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-04 07:52:29 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-04 07:52:29 +0200
commit5c62c522a94822d992a56c1c1b8da1fe2aa6ac25 (patch)
tree9f663dff4e15e5472d6cd590537323777e6be39f /pyaggr3g470r
parentUpdated README. (diff)
downloadnewspipe-5c62c522a94822d992a56c1c1b8da1fe2aa6ac25.tar.gz
newspipe-5c62c522a94822d992a56c1c1b8da1fe2aa6ac25.tar.bz2
newspipe-5c62c522a94822d992a56c1c1b8da1fe2aa6ac25.zip
Add an article with the JSON REST API with default arguments.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/rest.py25
1 files changed, 19 insertions, 6 deletions
diff --git a/pyaggr3g470r/rest.py b/pyaggr3g470r/rest.py
index e2cb92e5..5058d916 100644
--- a/pyaggr3g470r/rest.py
+++ b/pyaggr3g470r/rest.py
@@ -235,12 +235,12 @@ class FeedListAPI(Resource):
def __init__(self):
self.reqparse = reqparse.RequestParser()
- self.reqparse.add_argument('title', type = unicode, location = 'json')
- self.reqparse.add_argument('description', type = unicode, location = 'json')
+ self.reqparse.add_argument('title', type = unicode, default = "", location = 'json')
+ self.reqparse.add_argument('description', type = unicode, default = "", location = 'json')
self.reqparse.add_argument('link', type = unicode, location = 'json')
- self.reqparse.add_argument('site_link', type = unicode, location = 'json')
- self.reqparse.add_argument('email_notification', type = bool, location = 'json')
- self.reqparse.add_argument('enabled', type = bool, location = 'json')
+ self.reqparse.add_argument('site_link', type = unicode, default = "", location = 'json')
+ self.reqparse.add_argument('email_notification', type = bool, default = False, location = 'json')
+ self.reqparse.add_argument('enabled', type = bool, default = True ,location = 'json')
super(FeedListAPI, self).__init__()
def get(self):
@@ -265,7 +265,20 @@ class FeedListAPI(Resource):
"""
POST method - Create a new feed.
"""
- pass
+ args = self.reqparse.parse_args()
+ feed_dict = {}
+ for k, v in args.iteritems():
+ if v != None:
+ feed_dict[k] = v
+ else:
+ return {"message":"missing argument: %s" % (k,)}
+ new_feed = Feed(title=feed_dict["title"], description=feed_dict["description"],
+ link=feed_dict["link"], site_link=feed_dict["site_link"],
+ email_notification=feed_dict["email_notification"],
+ enabled=feed_dict["enabled"])
+ g.user.feeds.append(new_feed)
+ db.session.commit()
+ return {"message":"ok"}
class FeedAPI(Resource):
"""
bgstack15