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


Golang User.HasRole方法代碼示例

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


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

示例1: GetDepositsHandler

func GetDepositsHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    limit :=    GetParamInt32(r, "limit")
    deposits := bitcoin.LoadPayments(uint(limit))
    ReturnJSON(API_OK, deposits)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:7,代碼來源:handlers.go

示例2: ResumeWithdrawalHandler

func ResumeWithdrawalHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    wthId := GetParamInt64(r, "withdrawalId")
    account.ResumeWithdrawals([]interface{}{wthId})
    ReturnJSON(API_OK, nil)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:7,代碼來源:handlers.go

示例3: StorePrivateKeyHandler

func StorePrivateKeyHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    pubKey :=   GetParam(r, "pub_key")
    privKey :=  GetParam(r, "priv_key")
    StorePrivateKeyForMPKPubKey(pubKey, privKey)
    ReturnJSON(API_OK, nil)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:8,代碼來源:handlers.go

示例4: StaticHandler

func StaticHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

	var path string
    if strings.HasPrefix(r.URL.Path, "/treasury") { path = r.URL.Path[9:] }
	if strings.HasSuffix(path, "/") {
		path = path + "index.html"
	} else {
		path = path
	}
	http.ServeFile(w, r, "static/treasury/"+path)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:12,代碼來源:handlers.go

示例5: GetWithdrawalsHandler

func GetWithdrawalsHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    coin :=     GetParamRegexp(r, "coin", RE_COIN,  false)
    limit :=    GetParamInt32(r, "limit")
    if coin == "" {
        withdrawals := account.LoadWithdrawals(uint(limit))
        ReturnJSON(API_OK, withdrawals)
    } else {
        withdrawals := account.LoadWithdrawalsByCoin(coin, uint(limit))
        ReturnJSON(API_OK, withdrawals)
    }
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:13,代碼來源:handlers.go

示例6: GetSpendablePayments

func GetSpendablePayments(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    mpkId :=    GetParamInt64(r,  "mpk_id")
    coin :=     GetParamRegexp(r, "coin", RE_COIN,  false)
    min :=      GetParamUint64(r, "min")
    max :=      GetParamUint64(r, "max")
    limit :=    GetParamInt32(r,  "limit")

    reqHeight := bitcoin.ReqHeight(coin)

    payments := bitcoin.LoadSpendablePaymentsByAmount(mpkId, coin, min, max, reqHeight, uint(limit))

    ReturnJSON(API_OK, payments)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:15,代碼來源:handlers.go

示例7: CreditUserHandler

func CreditUserHandler(w http.ResponseWriter, r *http.Request, user *auth.User) {
    if !user.HasRole("treasury") { ReturnJSON(API_UNAUTHORIZED, UNAUTH_MSG) } // All handlers here should have this.

    coin :=     GetParamRegexp(r, "coin", RE_COIN,  true)
    email :=    GetParamRegexp(r, "email", RE_EMAIL, true)
    amountFloat :=  GetParamFloat64(r, "amountFloat")
    amount := F64ToUI64(amountFloat)

    target := auth.LoadUserByEmail(email)
    if target == nil { ReturnJSON(API_INVALID_PARAM, fmt.Sprintf("User with email %v doesn't exist", email)) }
    if amount == 0 { ReturnJSON(API_INVALID_PARAM, "Amount cannot be zero") }

    deposit := account.CreateDeposit(&account.Deposit{
        Type:       account.DEPOSIT_TYPE_FIAT,
        UserId:     target.Id,
        Wallet:     "main",
        Coin:       coin,
        Amount:     amount,
        Status:     account.DEPOSIT_STATUS_PENDING,
    })
    account.CreditDeposit(deposit)

    ReturnJSON(API_OK, nil)
}
開發者ID:jaekwon,項目名稱:ftnox-backend,代碼行數:24,代碼來源:handlers.go


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