2015-10-13 09:08:08 +00:00
|
|
|
package token
|
2015-10-05 00:40:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/drone/drone/remote"
|
|
|
|
"github.com/drone/drone/router/middleware/session"
|
2015-10-21 23:14:02 +00:00
|
|
|
"github.com/drone/drone/store"
|
2015-10-05 00:40:27 +00:00
|
|
|
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Refresh(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
2015-10-05 02:39:44 +00:00
|
|
|
if user == nil {
|
2015-10-05 00:40:27 +00:00
|
|
|
c.Next()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if the remote includes the ability to
|
|
|
|
// refresh the user token.
|
2015-10-21 23:14:02 +00:00
|
|
|
remote_ := remote.FromContext(c)
|
2015-10-05 00:40:27 +00:00
|
|
|
refresher, ok := remote_.(remote.Refresher)
|
|
|
|
if !ok {
|
|
|
|
c.Next()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check to see if the user token is expired or
|
|
|
|
// will expire within the next 30 minutes (1800 seconds).
|
|
|
|
// If not, there is nothing we really need to do here.
|
2015-10-05 02:39:44 +00:00
|
|
|
if time.Now().UTC().Unix() < (user.Expiry - 1800) {
|
2015-10-05 00:40:27 +00:00
|
|
|
c.Next()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// attempts to refresh the access token. If the
|
|
|
|
// token is refreshed, we must also persist to the
|
|
|
|
// database.
|
|
|
|
ok, _ = refresher.Refresh(user)
|
|
|
|
if ok {
|
2015-10-21 23:14:02 +00:00
|
|
|
err := store.UpdateUser(c, user)
|
2015-10-05 00:40:27 +00:00
|
|
|
if err != nil {
|
|
|
|
// we only log the error at this time. not sure
|
|
|
|
// if we really want to fail the request, do we?
|
|
|
|
log.Errorf("cannot refresh access token for %s. %s", user.Login, err)
|
2015-10-05 02:39:44 +00:00
|
|
|
} else {
|
|
|
|
log.Infof("refreshed access token for %s", user.Login)
|
2015-10-05 00:40:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Next()
|
|
|
|
}
|