登录
首页 >  Golang >  Go问答

在尝试从大猩猩 SecureCookie 读取数据时遇到空映射

来源:stackoverflow

时间:2024-02-24 20:00:23 493浏览 收藏

本篇文章向大家介绍《在尝试从大猩猩 SecureCookie 读取数据时遇到空映射》,主要包括,具有一定的参考价值,需要的朋友可以参考一下。

问题内容

我编写了函数来创建 securecookie,并按照 godoc 和 gorilla api 中的文档阅读此 securecookie。 securecookie 已成功创建并打印出来,但是当我尝试从此编码的 cookie 读取值时,它返回一个空映射。有人可以帮我找出代码有什么问题吗?

var hashKey []byte
var blockKey []byte
var s *securecookie.SecureCookie

func init() {
    hashKey = []byte{61, 55, 215, 133, 151, 242, 106, 54, 241, 162, 37, 3, 98, 73, 102, 33, 164, 246, 127, 157, 31, 190, 240, 40, 30, 104, 15, 161, 180, 214, 162, 107}
    blockKey = []byte{78, 193, 30, 249, 192, 210, 229, 31, 223, 133, 209, 112, 58, 226, 16, 172, 63, 86, 12, 107, 7, 76, 111, 48, 131, 65, 153, 126, 138, 250, 200, 46}

    s = securecookie.New(hashKey, blockKey)
}

func CreateSecureCookie(u *models.User, sessionID string, w http.ResponseWriter, r *http.Request) error {

    value := map[string]string{
        "username": u.Username,
        "sid":      sessionID,
    }

    if encoded, err := s.Encode("session", value); err == nil {
        cookie := &http.Cookie{
            Name:     "session",
            Value:    encoded,
            Path:     "/",
            Secure:   true,
            HttpOnly: true,
        }
        http.SetCookie(w, cookie)
    } else {
        log.Println("Error happened when encode secure cookie:", err)
        return err
    }
    return nil
}

func ReadSecureCookieValues(w http.ResponseWriter, r *http.Request) (map[string]string, error) {
    if cookie, err := r.Cookie("session"); err == nil {
        value := make(map[string]string)
        if err = s.Decode("session", cookie.Value, &value); err == nil {
            return value, nil
        }
        return nil, err
    }
    return nil, nil
}

解决方案


由于块作用域,错误可能会在读取函数中被默默地忽略。

相反,请尽快检查并返回错误。例如:

func ReadSecureCookieValues(w http.ResponseWriter, r *http.Request) (map[string]string, error) {

    cookie, err := r.Cookie("session")
    if err != nil {
        return nil, err
    }

    value := make(map[string]string)

    err = s.Decode("session", cookie.Value, &value)
    if err != nil {
        return nil, err
    }

    return value, nil
}

返回的错误可能可以解释问题。也许没有找到 cookie?

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>