當前位置: 首頁>>代碼示例>>Python>>正文


Python Comment.findAll方法代碼示例

本文整理匯總了Python中models.Comment.findAll方法的典型用法代碼示例。如果您正苦於以下問題:Python Comment.findAll方法的具體用法?Python Comment.findAll怎麽用?Python Comment.findAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在models.Comment的用法示例。


在下文中一共展示了Comment.findAll方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: authenticate

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def authenticate(*,email,passwd):
	if not email:
		raise APIValueError('email','Invalid email')
	if not passwd:
		raise APIValueError('passwd','Invalid passwd')
	users = await User.findAll('email=?',[email])
	if len(users) == 0:
		raise APIValueError('email','Email not exist.')
	user = users[0]
	# check passwd
	sha1 = hashlib.sha1()
	sha1.update(user.id.encode('utf-8'))
	sha1.update(b':')
	sha1.update(passwd.encode('utf-8'))
	if user.passwd != sha1.hexdigest():
		raise APIValueError('passwd','passwd error')
	# authenticate ok set cookie
	r = web.Response()
	r.set_cookie(COOKIE_NAME,user2cookie(user,86400),max_age=86400,httponly=True)
	user.passwd = '******'
	r.content_type = 'application/json'
	r.body = json.dumps(user,ensure_ascii=False).encode('utf-8')
	return r

# ?? 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:27,代碼來源:handlers.py

示例2: index

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def index(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Blog.findNumber('count(id)')
    page = Page(num, page_index)
    if num == 0:
        blogs = []
    else:
        blogs = yield from Blog.findAll(orderBy='created_at desc', limit=(page.offset, page.limit))
    # ?????????????????????
    # app.py?response_factory???handler.py??????????
    return {
        '__template__': 'blogs.html',
        'page': page,
        'blogs': blogs
    }


# day11??
# ???????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:21,代碼來源:handlers.py

示例3: get_blog

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def get_blog(id, request):
    blog = yield from Blog.find(id)  # ??id???????????
    # ????????blog??????????????????????
    comments = yield from Comment.findAll('blog_id=?', [id], orderBy='created_at desc')
    # ?????????html??
    for c in comments:
        c.html_content = text2html(c.content)
    # blog??markdown????????html??
    blog.html_content = markdown2.markdown(blog.content)
    return {
        '__template__': 'blog.html',
        'blog': blog,
          '__user__':request.__user__,
        'comments': comments
    }


# day10???
# ??????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:21,代碼來源:handlers.py

示例4: api_get_users

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_get_users():
    users = await User.findAll(orderBy="created_at desc")
    for u in users:
        u.passwd = "*****"
    # ?dict????,?????__template__,??app.py?response factory???json
    return dict(users=users)

# API:????
# ?register.html?????/api/users??
# ???????????
# ???_RE_EMAIL??????
# ^??????
# [a-z0-9\.\_]+??????????????.?-?_
# \@[email protected]
# [a-z0-9\-\_]+??????????????-?_????.?
# (\.[a-z0-9\-\_]+){1,4}???????????????????????????.??????????-?_
# $?????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:19,代碼來源:handlers.py

示例5: authenticate

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def authenticate(*, email, passwd):
    if not email:
        raise APIValueError('email', 'Invalid email.')
    if not passwd:
        raise APIValueError('passwd', 'Invalid password.')
    users = yield from User.findAll('email=?', [email])
    if len(users) == 0:
        raise APIValueError('email', 'Email not exist.')
    user = users[0]
    # check passwd:
    sha1 = hashlib.sha1()
    sha1.update(user.id.encode('utf-8'))
    sha1.update(b':')
    sha1.update(passwd.encode('utf-8'))
    if user.passwd != sha1.hexdigest():
        raise APIValueError('passwd', 'Invalid password.')
    # authenticate ok, set cookie:
    r = web.Response()
    r.set_cookie(COOKIE_NAME, user2cookie(user, 86400), max_age=86400, httponly=True)
    user.passwd = '******'
    r.content_type = 'application/json'
    r.body = json.dumps(user, ensure_ascii=False).encode('utf-8')
    return r 
開發者ID:xsingHu,項目名稱:xs-python-architecture,代碼行數:25,代碼來源:handlers.py

示例6: index

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def index(request,*,page='1'):
	page_index = get_page_index(page)
	num = await Blog.findNumber('count(id)')
	page = Page(num,page_index)
	if page == 0:
		blogs = []
	else:
		blogs = await Blog.findAll(orderBy = 'created_at desc',limit=(page.offset,page.limit))
	return{
		'__template__' : 'blogs.html',
		'page' : page,
		'blogs' : blogs,
		'__user__' : request.__user__
	} 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:16,代碼來源:handlers.py

示例7: get_blog

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def get_blog(id,request):
	blog = await Blog.find(id)
	comments = await Comment.findAll('blog_id=?',[id],orderBy='created_at desc')
	for c in comments:
		c.html_content = text2html(c.content)
	blog.html_content = markdown2.markdown(blog.content)
	return	{
		'__template__' : 'blog.html',
		'blog' : blog,
		'comments' : comments,
		'__user__' : request.__user__
	}

# ???? 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:16,代碼來源:handlers.py

示例8: api_comments

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_comments(*,page='1'):
	page_index = get_page_index(page)
	num = await Comment.findNumber('count(id)')
	p = Page(num,page_index)
	if num == 0:
		return dict(page=p,comments=())
	comments = await Comment.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	return dict(page=p,comments=comments) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:10,代碼來源:handlers.py

示例9: api_get_users

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_get_users(*,page='1'):
	page_index = get_page_index(page)
	num = await User.findNumber('count(id)')
	p = Page(num,page_index)
	if num ==0 :
		return dict(page=p,users=())
	users = await User.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	for u in users:
		u.passwd = '******'
	return dict(page=p,users=users) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:12,代碼來源:handlers.py

示例10: api_blogs

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_blogs(*,page='1'):
	page_index = get_page_index(page)
	num = await Blog.findNumber('count(id)')
	p = Page(num,page_index)
	if num == 0:
		return dict(page=0,blogs={})
	blogs = await Blog.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	return dict(page=p,blogs=blogs) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:10,代碼來源:handlers.py

示例11: authenticate

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def authenticate(*, email, passwd):  # ???????????
    # ????????????
    if not email:
        raise APIValueError('email', 'Invalid email.')
    if not passwd:
        raise APIValueError('passwd', 'Invalid password.')
    # ???????email???list?????
    users = yield from User.findAll('email=?', [email])
    # ??list???0??????????????????????
    if len(users) == 0:
        raise APIValueError('email', 'Email not exist.')
    user = users[0] # ??????.???,?????????,???????list
    # ????:
    # ????????????????,????????
    # ????????????????????,???????????????,?????????
    # ???????????:sha1 = hashlib.sha1((user.id+":"+passwd).encode("utf-8"))
    # ???????????????(?api_register_user),??????
    sha1 = hashlib.sha1()
    sha1.update(user.id.encode('utf-8'))
    sha1.update(b':')
    sha1.update(passwd.encode('utf-8'))
    if user.passwd != sha1.hexdigest():
        raise APIValueError('passwd', 'Invalid password.')
    # ???????????cookie:
    # ?????????????
    r = web.Response()
    r.set_cookie(COOKIE_NAME, user2cookie(user, 86400), max_age=86400, httponly=True)
    user.passwd = '******'
    r.content_type = 'application/json'
    r.body = json.dumps(user, ensure_ascii=False).encode('utf-8')
    return r

# ?????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:35,代碼來源:handlers.py

示例12: api_comments

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_comments(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Comment.findNumber('count(id)')  # num?????
    p = Page(num, page_index)  # ??Page?????????
    if num == 0:
        return dict(page=p, comments=())  # ???????????????app.py?response??????
    # ??????0,??????????
    # limit??select??????????,?????????,?????????????
    comments = yield from Comment.findAll(orderBy='created_at desc', limit=(p.offset, p.limit))
    return dict(page=p, comments=comments)

# day14??
# API????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:15,代碼來源:handlers.py

示例13: index

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def index(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Blog.findNumber('count(id)')
    page = Page(num)
    if num == 0:
        blogs = []
    else:
        blogs = yield from Blog.findAll(orderBy='created_at desc', limit=(page.offset, page.limit))
    return {
        '__template__': 'blogs.html',
        'page': page,
        'blogs': blogs
    } 
開發者ID:xsingHu,項目名稱:xs-python-architecture,代碼行數:15,代碼來源:handlers.py

示例14: get_blog

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def get_blog(id):
    blog = yield from Blog.find(id)
    comments = yield from Comment.findAll('blog_id=?', [id], orderBy='created_at desc')
    for c in comments:
        c.html_content = text2html(c.content)
    blog.html_content = markdown2.markdown(blog.content)
    return {
        '__template__': 'blog.html',
        'blog': blog,
        'comments': comments
    } 
開發者ID:xsingHu,項目名稱:xs-python-architecture,代碼行數:13,代碼來源:handlers.py

示例15: api_comments

# 需要導入模塊: from models import Comment [as 別名]
# 或者: from models.Comment import findAll [as 別名]
def api_comments(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Comment.findNumber('count(id)')
    p = Page(num, page_index)
    if num == 0:
        return dict(page=p, comments=())
    comments = yield from Comment.findAll(orderBy='created_at desc', limit=(p.offset, p.limit))
    return dict(page=p, comments=comments) 
開發者ID:xsingHu,項目名稱:xs-python-architecture,代碼行數:10,代碼來源:handlers.py


注:本文中的models.Comment.findAll方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。