本文整理匯總了Golang中get/2cloud/org/twocloud.RequestBundle.GetAccountByID方法的典型用法代碼示例。如果您正苦於以下問題:Golang RequestBundle.GetAccountByID方法的具體用法?Golang RequestBundle.GetAccountByID怎麽用?Golang RequestBundle.GetAccountByID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類get/2cloud/org/twocloud.RequestBundle
的用法示例。
在下文中一共展示了RequestBundle.GetAccountByID方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: createUser
func createUser(w http.ResponseWriter, r *twocloud.RequestBundle) {
var req accountAndUserRequest
body, err := ioutil.ReadAll(r.Request.Body)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error.", []interface{}{})
return
}
err = json.Unmarshal(body, &req)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusBadRequest, "Error decoding request.", []interface{}{})
return
}
if req.Account.ID == 0 {
Respond(w, r, http.StatusBadRequest, "Account ID must be specified.", []interface{}{})
return
}
account, err := r.GetAccountByID(req.Account.ID)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
if account.ID == 0 {
Respond(w, r, http.StatusBadRequest, "Invalid Account ID", []interface{}{})
return
}
if account.UserID != 0 {
Respond(w, r, http.StatusConflict, "Account already registered.", []interface{}{})
return
}
if req.User.Username == "" {
Respond(w, r, http.StatusBadRequest, "Username must be specified.", []interface{}{})
return
}
user, err := r.Register(req.User.Username, req.User.Email, req.User.Name.Given, req.User.Name.Family, true, false)
if err != nil {
if err == twocloud.MissingEmailError {
Respond(w, r, http.StatusBadRequest, "Email must be specified.", []interface{}{})
return
} else if err == twocloud.UsernameTakenError {
Respond(w, r, http.StatusConflict, "Username taken.", []interface{}{})
return
} else if err == twocloud.InvalidUsernameCharacterError || err == twocloud.InvalidUsernameLengthError {
Respond(w, r, http.StatusBadRequest, err.Error(), []interface{}{})
return
}
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error.", []interface{}{})
return
}
err = r.AssociateUserWithAccount(account, user.ID)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error.", []interface{}{})
return
}
setLastModified(w, user.LastActive)
Respond(w, r, http.StatusCreated, "Successfully created a user account", []interface{}{user})
return
}