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