2016-05-02 19:21:25 +00:00
|
|
|
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)
|
2016-05-03 00:47:58 +00:00
|
|
|
if secret == "" {
|
|
|
|
c.String(401, "invalid or empty token.")
|
|
|
|
return
|
|
|
|
}
|
2016-05-02 19:21:25 +00:00
|
|
|
|
|
|
|
parsed, err := token.ParseRequest(c.Request, func(t *token.Token) (string, error) {
|
|
|
|
return secret, nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2016-05-03 00:47:58 +00:00
|
|
|
c.String(500, "invalid or empty token. %s", err)
|
2016-05-04 06:36:23 +00:00
|
|
|
c.Abort()
|
2016-05-02 19:21:25 +00:00
|
|
|
} else if parsed.Kind != token.AgentToken {
|
2016-05-03 00:47:58 +00:00
|
|
|
c.String(403, "invalid token. please use an agent token")
|
2016-05-04 06:36:23 +00:00
|
|
|
c.Abort()
|
2016-05-02 19:21:25 +00:00
|
|
|
} else {
|
|
|
|
c.Next()
|
|
|
|
}
|
|
|
|
}
|