本文整理汇总了Python中myapp.ApiObject.ApiObject.update_follower_list方法的典型用法代码示例。如果您正苦于以下问题:Python ApiObject.update_follower_list方法的具体用法?Python ApiObject.update_follower_list怎么用?Python ApiObject.update_follower_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类myapp.ApiObject.ApiObject
的用法示例。
在下文中一共展示了ApiObject.update_follower_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from myapp.ApiObject import ApiObject [as 别名]
# 或者: from myapp.ApiObject.ApiObject import update_follower_list [as 别名]
def post(self):
mode=self.request.get("mode")
user_id=self.request.get("user_id")
if(mode=="bbs_new_illust"):
bbs=db.get(self.request.get("bbs"))
thread=db.get(self.request.get("thread"))
StackFeed._feed_new_thread_core(user_id,bbs,thread)
if(mode=="new_bookmark_bbs"):
bbs=db.get(self.request.get("bbs"))
StackFeed._feed_new_bookmark_bbs_core(user_id,bbs)
if(mode=="new_bookmark_thread"):
thread=db.get(self.request.get("thread"))
comment=self.request.get("comment")
StackFeed._feed_new_bookmark_thread_core(user_id,thread,comment)
if(mode=="new_comment_thread"):
thread=db.get(self.request.get("thread"))
entry=None
if(self.request.get("entry")):
entry=db.get(self.request.get("entry"))
StackFeed._feed_new_comment_thread_and_entry_core(user_id,thread,entry,None)
if(mode=="new_applause_thread"):
thread=db.get(self.request.get("thread"))
comment=self.request.get("comment")
StackFeed._feed_new_applause_thread_core(user_id,thread,comment)
if(mode=="new_response_entry"):
thread=db.get(self.request.get("thread"))
entry=db.get(self.request.get("entry"))
res=None
if(self.request.get("res")):
res=db.get(self.request.get("res"))
StackFeed._feed_new_comment_thread_and_entry_core(user_id,thread,entry,res)
if(mode=="new_follow"):
add_user_key=self.request.get("follow_user_id")
StackFeed._feed_new_follow_core(user_id,add_user_key)
ApiObject.update_follower_list(add_user_key)
if(mode=="unfollow"):
add_user_key=self.request.get("follow_user_id")
ApiObject.update_follower_list(add_user_key)
if(mode=="new_message"):
data=db.get(self.request.get("data"))
if(not data):
return
StackFeed._feed_new_message_core(user_id,data)