mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
chore: add example for openapi/swagger authentication (#4004)
This commit is contained in:
parent
c0f2ef7348
commit
5fa33411fc
@ -45,5 +45,14 @@ func main() {
|
||||
new(Hello),
|
||||
)
|
||||
})
|
||||
// if api.json requires authentication, add openApiBasicAuth handler
|
||||
s.BindHookHandler(s.GetOpenApiPath(), ghttp.HookBeforeServe, openApiBasicAuth)
|
||||
s.Run()
|
||||
}
|
||||
|
||||
func openApiBasicAuth(r *ghttp.Request) {
|
||||
if !r.BasicAuth("OpenApiAuthUserName", "OpenApiAuthPass", "Restricted") {
|
||||
r.ExitAll()
|
||||
return
|
||||
}
|
||||
}
|
||||
|
@ -21,3 +21,8 @@ func (s *Server) SetSwaggerUITemplate(swaggerUITemplate string) {
|
||||
func (s *Server) SetOpenApiPath(path string) {
|
||||
s.config.OpenApiPath = path
|
||||
}
|
||||
|
||||
// GetOpenApiPath returns the configuration of `OpenApiPath` of server.
|
||||
func (s *Server) GetOpenApiPath() string {
|
||||
return s.config.OpenApiPath
|
||||
}
|
||||
|
@ -185,3 +185,28 @@ func Test_OpenApi_Method_All_Swagger(t *testing.T) {
|
||||
t.Assert(gstr.Contains(c.GetContent(ctx, "/api.json"), `/test/error`), true)
|
||||
})
|
||||
}
|
||||
|
||||
func Test_OpenApi_Auth(t *testing.T) {
|
||||
s := g.Server(guid.S())
|
||||
apiPath := "/api.json"
|
||||
s.SetOpenApiPath(apiPath)
|
||||
s.BindHookHandler(s.GetOpenApiPath(), ghttp.HookBeforeServe, openApiBasicAuth)
|
||||
s.Start()
|
||||
defer s.Shutdown()
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
t.Assert(s.GetOpenApiPath(), apiPath)
|
||||
c := g.Client()
|
||||
c.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
||||
t.Assert(c.GetContent(ctx, apiPath), "Unauthorized")
|
||||
c.SetBasicAuth("OpenApiAuthUserName", "OpenApiAuthPass")
|
||||
cc := c.GetContent(ctx, apiPath)
|
||||
t.AssertNE(cc, "Unauthorized")
|
||||
})
|
||||
}
|
||||
|
||||
func openApiBasicAuth(r *ghttp.Request) {
|
||||
if !r.BasicAuth("OpenApiAuthUserName", "OpenApiAuthPass", "Restricted") {
|
||||
r.ExitAll()
|
||||
return
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user