本文整理汇总了Python中gitshell.gsuser.models.GsuserManager.get_userprofile_by_name方法的典型用法代码示例。如果您正苦于以下问题:Python GsuserManager.get_userprofile_by_name方法的具体用法?Python GsuserManager.get_userprofile_by_name怎么用?Python GsuserManager.get_userprofile_by_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gitshell.gsuser.models.GsuserManager
的用法示例。
在下文中一共展示了GsuserManager.get_userprofile_by_name方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: fillwith
# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def fillwith(self):
self.short_refname = self.refname
if self.refname and '/' in self.refname:
self.short_refname = self.refname[self.refname.rfind('/')+1:]
self.repo = RepoManager.get_repo_by_id(self.repo_id)
self.committer_userprofile = GsuserManager.get_userprofile_by_name(self.committer)
self.author_userprofile = GsuserManager.get_userprofile_by_name(self.author)
示例2: watch
# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def watch(request, user_name):
gsuserprofile = GsuserManager.get_userprofile_by_name(user_name)
if gsuserprofile is None:
message = u'用户不存在'
return json_failed(404, message)
if not RepoManager.watch_user(request.userprofile, gsuserprofile):
message = u'关注失败,关注数量超过限制或者用户不允许关注'
return json_failed(500, message)
return json_success(u'成功关注用户 %s' % user_name)
示例3: unwatch
# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def unwatch(request, user_name):
gsuserprofile = GsuserManager.get_userprofile_by_name(user_name)
if gsuserprofile is None:
message = u'用户不存在'
return json_failed(404, message)
if not RepoManager.unwatch_user(request.userprofile, gsuserprofile):
message = u'取消关注失败,可能用户未被关注'
return json_failed(500, message)
return json_success(u'成功取消关注用户 %s' % user_name)
示例4: add_teamMember_by_username
# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def add_teamMember_by_username(self, teamUser, username):
member_userprofile = GsuserManager.get_userprofile_by_name(username)
return self.add_teamMember_by_userprofile(teamUser, member_userprofile)