mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-18 08:26:45 +02:00
23 lines
502 B
Go
23 lines
502 B
Go
|
package session
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone/shared/token"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// AuthorizeAgent authorizes requsts from build agents to access the queue.
|
||
|
func AuthorizeAgent(c *gin.Context) {
|
||
|
secret := c.MustGet("agent").(string)
|
||
|
|
||
|
parsed, err := token.ParseRequest(c.Request, func(t *token.Token) (string, error) {
|
||
|
return secret, nil
|
||
|
})
|
||
|
if err != nil {
|
||
|
c.AbortWithError(403, err)
|
||
|
} else if parsed.Kind != token.AgentToken {
|
||
|
c.AbortWithStatus(403)
|
||
|
} else {
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|