gpt4 book ai didi

go - 传入请求:具有自定义类型字段的上下文

转载 作者:行者123 更新时间:2023-12-01 22:38:29 25 4
gpt4 key购买 nike

我正在使用go编写一个或多或少的简单Web应用程序,以提供rest api。当请求进入时,我想将用户ID(属于api token 的一部分)临时存储在请求上下文中。在readingsomearticles之后,我仍然困惑如何确保使用context.WithValue()附加到上下文的值可以在没有类型断言的情况下使用,而是使用某种结构。

到目前为止,这是我想出的:

// RequestContext contains the application-specific information that are carried around in a request.
type RequestContext interface {
context.Context
// UserID returns the ID of the user for the current request
UserID() uuid.UUID
// SetUserID sets the ID of the currently authenticated user
SetUserID(id uuid.UUID)
}

type requestContext struct {
context.Context // the golang context
now time.Time // the time when the request is being processed
userID uuid.UUID // an ID identifying the current user
}

func (ctx *requestContext) UserID() uuid.UUID {
return ctx.userID
}

func (ctx *requestContext) SetUserID(id uuid.UUID) {
ctx.userID = id
}

func (ctx *requestContext) Now() time.Time {
return ctx.now
}

// NewRequestContext creates a new RequestContext with the current request information.
func NewRequestContext(now time.Time, r *http.Request) RequestContext {
return &requestContext{
Context: r.Context(),
now: now,
}
}

// RequestContextHandler is a middleware that sets up a new RequestContext and attaches it to the current request.
func RequestContextHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
now := time.Now()
next.ServeHTTP(w, r.WithContext(NewRequestContext(now, r)))
})
}

我想知道如何在处理程序中访问请求上下文的 SetUserID()UserID()函数,或者是否有替代的类似方法。

最佳答案

要使用自己构建的内容,必须使用类型断言:

rctx:=request.Context().(RequestContext)

如果您有一个中间件以与您相同的方式包装上下文,则这将中断。

一种替代方法是使用基本上下文,并添加具有私钥的帮助程序以访问值:
type reqKey int

const key reqKey=iota

type RequestData struct {
UserID uuid.UUID
Now time.Time
}

func ContextWithRequest(ctx context.Context,req requestData) context.Context {
return context.WithValue(ctx,key,req)
}

func GetRequest(ctx context) RequestData {
x:=ctx.Value(key)
if x!=nil {
return x.(RequestData)
}
return RequestData{}
}

当然,如果要更改 RequestData,则需要添加指向上下文的指针。

关于go - 传入请求:具有自定义类型字段的上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59185929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com