示例#1
0
    def delete(self, id):
        if not get_post_cache().exists(id):
            abort(404, 'Missing post')

        get_post_cache().delete(id)
        return jsonify({
            'success': True,
        })
示例#2
0
 def post(self):
     id = str(uuid4())
     author = request.get_json()['author']
     gif_id = request.get_json()['gif_id']
     created = int(datetime.now().timestamp())
     votes = 1
     get_post_cache().create(id, author, gif_id, created, votes)
     return jsonify({
         'success': True,
     })
示例#3
0
    def update_votes(self, id):
        amount = request.get_json()['amount']
        if amount not in [-1, 1]:
            abort(400, 'Invalid amount')

        if not get_post_cache().exists(id):
            abort(404, 'Missing post')

        get_post_cache().update_votes(id, amount)
        return jsonify({
            'success': True,
        })
示例#4
0
 def recent(self):
     limit = request.args.get('limit', 10)
     posts = get_post_cache().recent(limit)
     return jsonify(posts)
示例#5
0
    def get(self, id):
        if not get_post_cache().exists(id):
            abort(404, 'Missing post')

        post = get_post_cache().get(id)
        return jsonify(post)