本文整理匯總了Golang中github.com/containerops/wharf/models.Team.GetByName方法的典型用法代碼示例。如果您正苦於以下問題:Golang Team.GetByName方法的具體用法?Golang Team.GetByName怎麽用?Golang Team.GetByName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/containerops/wharf/models.Team
的用法示例。
在下文中一共展示了Team.GetByName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: GetTeams
func (this *TeamWebV1Controller) GetTeams() {
if _, exist := this.Ctx.Input.CruSession.Get("user").(models.User); exist == false {
this.JSONOut(http.StatusBadRequest, "", map[string]string{"message": "Session load failure", "url": "/auth"})
return
}
teams := make([]models.Team, 0)
org := new(models.Organization)
if err := org.GetByName(this.Ctx.Input.Param(":org")); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
for _, name := range org.Teams {
team := new(models.Team)
if err := team.GetByName(org.Name, name); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
teams = append(teams, *team)
}
this.JSONOut(http.StatusOK, "", teams)
return
}
示例2: GetTeam
func (this *TeamWebV1Controller) GetTeam() {
team := new(models.Team)
if err := team.GetByName(this.Ctx.Input.Param(":org"), this.Ctx.Input.Param(":team")); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
this.Data["json"] = &team
this.Ctx.Output.Context.Output.SetStatus(http.StatusOK)
this.ServeJson()
return
}
示例3: PutTeamAddMember
func (this *TeamWebV1Controller) PutTeamAddMember() {
if _, exist := this.Ctx.Input.CruSession.Get("user").(models.User); exist == false {
this.JSONOut(http.StatusBadRequest, "", map[string]string{"message": "Session load failure", "url": "/auth"})
return
}
org := new(models.Organization)
if err := org.GetByName(this.Ctx.Input.Param(":org")); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
team := new(models.Team)
if err := team.GetByName(this.Ctx.Input.Param(":org"), this.Ctx.Input.Param(":team")); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
user := new(models.User)
if exist, _, err := user.Has(this.Ctx.Input.Param(":username")); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
} else if exist == false {
this.JSONOut(http.StatusBadRequest, "User not found", nil)
return
}
exist := false
for _, u := range team.Users {
if u == this.Ctx.Input.Param(":username") {
exist = true
}
}
if exist == true {
this.JSONOut(http.StatusBadRequest, "User already in team", nil)
return
} else {
team.Users = append(team.Users, this.Ctx.Input.Param(":username"))
if err := team.Save(); err != nil {
this.JSONOut(http.StatusBadRequest, err.Error(), nil)
return
}
this.JSONOut(http.StatusOK, "", user)
return
}
}