2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-10-13 09:08:08 +00:00
|
|
|
package token
|
2015-10-05 00:40:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2021-10-12 07:25:13 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
2021-11-26 12:01:54 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server"
|
2021-09-23 16:25:51 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/remote"
|
2021-09-22 20:41:32 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
|
2021-09-23 11:33:59 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/store"
|
2015-10-05 00:40:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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.
|
2021-12-01 13:22:06 +00:00
|
|
|
_remote := server.Config.Services.Remote
|
|
|
|
refresher, ok := _remote.(remote.Refresher)
|
2015-10-05 00:40:27 +00:00
|
|
|
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.
|
2021-11-23 14:36:52 +00:00
|
|
|
ok, err := refresher.Refresh(c, user)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msgf("refresh oauth token of user '%s' failed", user.Login)
|
|
|
|
} else if ok {
|
2021-10-28 09:12:58 +00:00
|
|
|
err := store.FromContext(c).UpdateUser(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?
|
2021-10-12 07:25:13 +00:00
|
|
|
log.Error().Msgf("cannot refresh access token for %s. %s", user.Login, err)
|
2015-10-05 02:39:44 +00:00
|
|
|
} else {
|
2022-09-03 18:41:23 +00:00
|
|
|
log.Debug().Msgf("refreshed access token for %s", user.Login)
|
2015-10-05 00:40:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Next()
|
|
|
|
}
|