-
Notifications
You must be signed in to change notification settings - Fork 32
/
server.go
43 lines (37 loc) · 876 Bytes
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package ginserver
import (
"net/http"
"sync"
"github.com/gin-gonic/gin"
"github.com/go-oauth2/oauth2/v4"
"github.com/go-oauth2/oauth2/v4/server"
)
var (
gServer *server.Server
once sync.Once
)
// InitServer Initialize the service
func InitServer(manager oauth2.Manager) *server.Server {
once.Do(func() {
gServer = server.NewDefaultServer(manager)
})
return gServer
}
// HandleAuthorizeRequest the authorization request handling
func HandleAuthorizeRequest(c *gin.Context) {
err := gServer.HandleAuthorizeRequest(c.Writer, c.Request)
if err != nil {
c.AbortWithError(http.StatusBadRequest, err)
return
}
c.Abort()
}
// HandleTokenRequest token request handling
func HandleTokenRequest(c *gin.Context) {
err := gServer.HandleTokenRequest(c.Writer, c.Request)
if err != nil {
c.AbortWithError(http.StatusBadRequest, err)
return
}
c.Abort()
}