2018-02-20 00:24:10 +02:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02: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 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 15:02:17 +02:00
|
|
|
//
|
2018-02-20 00:24:10 +02: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.
|
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
package api
|
2016-03-30 22:15:28 +02:00
|
|
|
|
|
|
|
import (
|
2016-05-03 02:52:34 +02:00
|
|
|
"encoding/base32"
|
2016-03-30 22:15:28 +02:00
|
|
|
"net/http"
|
2016-06-14 22:07:05 +02:00
|
|
|
"strconv"
|
2017-07-14 21:58:38 +02:00
|
|
|
"time"
|
2016-03-30 22:15:28 +02:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2016-05-03 02:52:34 +02:00
|
|
|
"github.com/gorilla/securecookie"
|
2021-10-12 09:25:13 +02:00
|
|
|
"github.com/rs/zerolog/log"
|
2016-03-30 22:15:28 +02:00
|
|
|
|
2021-09-27 19:51:55 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2021-09-23 18:25:51 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/remote"
|
2021-09-22 22:41:32 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
|
2021-09-22 20:48:01 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/shared"
|
2021-09-23 13:33:59 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/store"
|
2021-05-25 14:08:27 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/shared/token"
|
2016-03-30 22:15:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func GetSelf(c *gin.Context) {
|
|
|
|
c.JSON(200, session.User(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetFeed(c *gin.Context) {
|
2021-10-28 11:12:58 +02:00
|
|
|
store_ := store.FromContext(c)
|
|
|
|
remote_ := remote.FromContext(c)
|
|
|
|
|
2017-07-14 21:58:38 +02:00
|
|
|
user := session.User(c)
|
2016-06-15 02:34:47 +02:00
|
|
|
latest, _ := strconv.ParseBool(c.Query("latest"))
|
|
|
|
|
2017-07-14 21:58:38 +02:00
|
|
|
if time.Unix(user.Synced, 0).Add(time.Hour * 72).Before(time.Now()) {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync begin: %s", user.Login)
|
2017-09-29 20:21:06 +02:00
|
|
|
|
|
|
|
user.Synced = time.Now().Unix()
|
2021-11-23 16:36:52 +02:00
|
|
|
if err := store_.UpdateUser(user); err != nil {
|
|
|
|
log.Error().Err(err).Msg("UpdateUser")
|
|
|
|
return
|
|
|
|
}
|
2017-09-29 20:21:06 +02:00
|
|
|
|
2020-05-18 17:58:04 +02:00
|
|
|
config := ToConfig(c)
|
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
sync := shared.Syncer{
|
2021-10-28 11:12:58 +02:00
|
|
|
Remote: remote_,
|
|
|
|
Store: store_,
|
|
|
|
Perms: store_,
|
2021-09-22 20:48:01 +02:00
|
|
|
Match: shared.NamespaceFilter(config.OwnersWhitelist),
|
2017-07-14 21:58:38 +02:00
|
|
|
}
|
2021-09-28 12:56:59 +02:00
|
|
|
if err := sync.Sync(c, user); err != nil {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync error: %s: %s", user.Login, err)
|
2017-07-14 21:58:38 +02:00
|
|
|
} else {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync complete: %s", user.Login)
|
2017-07-14 21:58:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if latest {
|
2021-10-28 11:12:58 +02:00
|
|
|
feed, err := store_.RepoListLatest(user)
|
2017-07-14 21:58:38 +02:00
|
|
|
if err != nil {
|
|
|
|
c.String(500, "Error fetching feed. %s", err)
|
|
|
|
} else {
|
|
|
|
c.JSON(200, feed)
|
|
|
|
}
|
2016-03-30 22:15:28 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-28 11:12:58 +02:00
|
|
|
feed, err := store_.UserFeed(user)
|
2016-03-30 22:15:28 +02:00
|
|
|
if err != nil {
|
2017-07-14 21:58:38 +02:00
|
|
|
c.String(500, "Error fetching user feed. %s", err)
|
2016-03-30 22:15:28 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(200, feed)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetRepos(c *gin.Context) {
|
2021-10-28 11:12:58 +02:00
|
|
|
store_ := store.FromContext(c)
|
|
|
|
remote_ := remote.FromContext(c)
|
|
|
|
|
|
|
|
user := session.User(c)
|
|
|
|
all, _ := strconv.ParseBool(c.Query("all"))
|
|
|
|
flush, _ := strconv.ParseBool(c.Query("flush"))
|
2016-06-14 22:07:05 +02:00
|
|
|
|
2017-07-14 21:58:38 +02:00
|
|
|
if flush || time.Unix(user.Synced, 0).Add(time.Hour*72).Before(time.Now()) {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync begin: %s", user.Login)
|
2017-09-29 20:21:06 +02:00
|
|
|
user.Synced = time.Now().Unix()
|
2021-11-14 23:13:59 +02:00
|
|
|
if err := store_.UpdateUser(user); err != nil {
|
|
|
|
log.Err(err).Msgf("update user '%s'", user.Login)
|
|
|
|
return
|
|
|
|
}
|
2017-09-29 20:21:06 +02:00
|
|
|
|
2020-05-18 17:58:04 +02:00
|
|
|
config := ToConfig(c)
|
|
|
|
|
2021-09-22 20:48:01 +02:00
|
|
|
sync := shared.Syncer{
|
2021-10-28 11:12:58 +02:00
|
|
|
Remote: remote_,
|
|
|
|
Store: store_,
|
|
|
|
Perms: store_,
|
2021-09-22 20:48:01 +02:00
|
|
|
Match: shared.NamespaceFilter(config.OwnersWhitelist),
|
2017-07-14 21:58:38 +02:00
|
|
|
}
|
2020-05-18 17:58:04 +02:00
|
|
|
|
2021-09-28 12:56:59 +02:00
|
|
|
if err := sync.Sync(c, user); err != nil {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync error: %s: %s", user.Login, err)
|
2017-07-14 21:58:38 +02:00
|
|
|
} else {
|
2021-10-12 09:25:13 +02:00
|
|
|
log.Debug().Msgf("sync complete: %s", user.Login)
|
2017-07-14 21:58:38 +02:00
|
|
|
}
|
2016-03-30 22:15:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-28 11:12:58 +02:00
|
|
|
repos, err := store_.RepoList(user, true)
|
2016-03-30 22:15:28 +02:00
|
|
|
if err != nil {
|
|
|
|
c.String(500, "Error fetching repository list. %s", err)
|
|
|
|
return
|
|
|
|
}
|
2016-06-15 00:20:17 +02:00
|
|
|
|
2017-07-14 21:58:38 +02:00
|
|
|
if all {
|
2016-06-15 00:20:17 +02:00
|
|
|
c.JSON(http.StatusOK, repos)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-24 16:29:26 +02:00
|
|
|
var active []*model.Repo
|
2016-06-15 00:20:17 +02:00
|
|
|
for _, repo := range repos {
|
2017-07-14 21:58:38 +02:00
|
|
|
if repo.IsActive {
|
|
|
|
active = append(active, repo)
|
2016-06-15 00:20:17 +02:00
|
|
|
}
|
2016-03-30 22:15:28 +02:00
|
|
|
}
|
2017-07-14 21:58:38 +02:00
|
|
|
c.JSON(http.StatusOK, active)
|
2016-03-30 22:15:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func PostToken(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
2021-09-24 16:29:26 +02:00
|
|
|
tokenString, err := token.New(token.UserToken, user.Login).Sign(user.Hash)
|
2016-03-30 22:15:28 +02:00
|
|
|
if err != nil {
|
2021-11-23 16:36:52 +02:00
|
|
|
_ = c.AbortWithError(http.StatusInternalServerError, err)
|
2016-03-30 22:15:28 +02:00
|
|
|
return
|
|
|
|
}
|
2021-09-24 16:29:26 +02:00
|
|
|
c.String(http.StatusOK, tokenString)
|
2016-03-30 22:15:28 +02:00
|
|
|
}
|
|
|
|
|
2016-04-09 02:16:45 +02:00
|
|
|
func DeleteToken(c *gin.Context) {
|
2021-10-28 11:12:58 +02:00
|
|
|
store_ := store.FromContext(c)
|
|
|
|
|
2016-04-09 02:16:45 +02:00
|
|
|
user := session.User(c)
|
2016-05-03 02:52:34 +02:00
|
|
|
user.Hash = base32.StdEncoding.EncodeToString(
|
|
|
|
securecookie.GenerateRandomKey(32),
|
|
|
|
)
|
2021-10-28 11:12:58 +02:00
|
|
|
if err := store_.UpdateUser(user); err != nil {
|
2016-04-09 02:16:45 +02:00
|
|
|
c.String(500, "Error revoking tokens. %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-24 16:29:26 +02:00
|
|
|
tokenString, err := token.New(token.UserToken, user.Login).Sign(user.Hash)
|
2016-04-09 02:16:45 +02:00
|
|
|
if err != nil {
|
2021-11-23 16:36:52 +02:00
|
|
|
_ = c.AbortWithError(http.StatusInternalServerError, err)
|
2016-04-09 02:16:45 +02:00
|
|
|
return
|
|
|
|
}
|
2021-09-24 16:29:26 +02:00
|
|
|
c.String(http.StatusOK, tokenString)
|
2016-04-09 02:16:45 +02:00
|
|
|
}
|