本文整理汇总了Python中apis.APIResourceNotFoundError方法的典型用法代码示例。如果您正苦于以下问题:Python apis.APIResourceNotFoundError方法的具体用法?Python apis.APIResourceNotFoundError怎么用?Python apis.APIResourceNotFoundError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类apis
的用法示例。
在下文中一共展示了apis.APIResourceNotFoundError方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: api_update_blog
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_update_blog(blog_id):
check_admin()
i = ctx.request.input(name='', summary='', content='')
name = i.name.strip()
summary = i.summary.strip()
content = i.content.strip()
if not name:
raise APIValueError('name', 'name cannot be empty.')
if not summary:
raise APIValueError('summary', 'summary cannot be empty.')
if not content:
raise APIValueError('content', 'content cannot be empty.')
blog = Blog.get(blog_id)
if blog is None:
raise APIResourceNotFoundError('Blog')
blog.name = name
blog.summary = summary
blog.content = content
blog.update()
return blog
示例2: api_create_comment
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_comment(id, request, *, content):
user = request.__user__
# ????
if user is None:
raise APIPermissionError('Please signin first.')
# ??????????
if not content or not content.strip():
raise APIValueError('content')
# ????????
blog = yield from Blog.find(id)
if blog is None:
raise APIResourceNotFoundError('Blog')
# ??????
comment = Comment(blog_id=blog.id, user_id=user.id, user_name=user.name, user_image=user.image, content=content.strip())
yield from comment.save() # ?????????
return comment # ????
# day14??
# API?????
示例3: api_create_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_comments(id,request,*,content):
user = request.__user__
if user is None:
raise APIPermissionError('Please signin first')
if not content or not content.strip():
raise APIValueError('content')
blog = await Blog.find(id)
if blog is None:
raise APIResourceNotFoundError('Blog')
comment = Comment(blog_id=blog.id,user_id=user.id,user_name=user.name,user_image=user.image,content=content.strip())
await comment.save()
return comment
示例4: api_delete_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comments(id,request):
check_admin(request)
c = await Comment.find(id)
if c is None:
raise APIResourceNotFoundError('Comment')
await c.remove()
return dict(id=id)
示例5: api_create_blog_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_blog_comments(request, *, id, content):
'''create blog comments'''
if not request.__user__:
raise APIPermissionError('please login first.')
if not content or not content.strip():
raise APIValueError('content', 'content can not be empty.')
blog = yield from Blog.find(id)
if blog is None:
raise APIResourceNotFoundError('blog', 'can not find blog, id :{}'.format(id))
comment = Comment(blog_id = id, user_id= request.__user__.id, user_name = request.__user__.name, user_image = request.__user__.image, content = content.strip() )
yield from comment.save()
return comment
示例6: api_delete_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comments(request, *, comment_id):
'''delete comment.'''
check_admin(request)
comment = yield from Comment.find(comment_id)
if comment is None:
raise APIResourceNotFoundError('Comment', 'can not find comment, comment id: {}'.format(comment_id))
yield from comment.remove()
return comment
示例7: api_get_blog
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_get_blog(blog_id):
blog = Blog.get(blog_id)
if blog:
return blog
raise APIResourceNotFoundError('Blog')
示例8: api_delete_blog
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_blog(blog_id):
check_admin()
blog = Blog.get(blog_id)
if blog is None:
raise APIResourceNotFoundError('Blog')
blog.delete()
return dict(id=blog_id)
示例9: api_create_blog_comment
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_blog_comment(blog_id):
user = ctx.request.user
if user is None:
raise APIPermissionError('Need signin.')
blog = Blog.get(blog_id)
if blog is None:
raise APIResourceNotFoundError('Blog')
content = ctx.request.input(content='').content.strip()
if not content:
raise APIValueError('content')
c = Comment(blog_id=blog_id, user_id=user.id,
user_name=user.name, user_image=user.image, content=content)
c.insert()
return dict(comment=c)
示例10: api_delete_comment
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comment(comment_id):
check_admin()
comment = Comment.get(comment_id)
if comment is None:
raise APIResourceNotFoundError('Comment')
comment.delete()
return dict(id=comment_id)
示例11: api_delete_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comments(id, request):
check_admin(request) #???????????
c = yield from Comment.find(id) # ?????????
if c is None:
raise APIResourceNotFoundError('Comment')
yield from c.remove() # ????
return dict(id=id) # ????????id
# day14??
# API:????
示例12: api_create_comment
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_comment(id, request, *, content):
user = request.__user__
if user is None:
raise APIPermissionError('Please signin first.')
if not content or not content.strip():
raise APIValueError('content')
blog = yield from Blog.find(id)
if blog is None:
raise APIResourceNotFoundError('Blog')
comment = Comment(blog_id=blog.id, user_id=user.id, user_name=user.name, user_image=user.image, content=content.strip())
yield from comment.save()
return comment
示例13: api_delete_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comments(id, request):
check_admin(request)
c = yield from Comment.find(id)
if c is None:
raise APIResourceNotFoundError('Comment')
yield from c.remove()
return dict(id=id)
示例14: api_create_comment
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_create_comment(id, request, *, content):
user = request.__user__
if user is None:
raise APIPermissionError('Please signin first.')
if not content or not content.strip():
raise APIValueError('content', 'empty!')
blog = await Blog.find(id)
if blog is None:
raise APIResourceNotFoundError('Blog')
comment = Comment(blog_id=blog.id, user_id=user.id, user_name=user.name, user_image=user.image, content=content.strip())
await comment.save()
return comment
示例15: api_delete_comments
# 需要导入模块: import apis [as 别名]
# 或者: from apis import APIResourceNotFoundError [as 别名]
def api_delete_comments(id, request):
check_admin(request)
c = await Comment.find(id)
if c is None:
raise APIResourceNotFoundError('Comment', 'Not Found!')
await c.remove()
return dict(id=id)