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"
|
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"
|
2024-04-16 06:04:55 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2023-08-28 16:57:44 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/router/middleware/session"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/shared/token"
|
2016-03-30 20:15:28 +00:00
|
|
|
)
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// GetSelf
|
|
|
|
//
|
2024-05-01 09:50:41 +00:00
|
|
|
// @Summary Get the currently authenticated user
|
2023-06-03 19:38:36 +00:00
|
|
|
// @Router /user [get]
|
|
|
|
// @Produce json
|
|
|
|
// @Success 200 {object} User
|
|
|
|
// @Tags User
|
|
|
|
// @Param Authorization header string true "Insert your personal access token" default(Bearer <personal access token>)
|
2016-03-30 20:15:28 +00:00
|
|
|
func GetSelf(c *gin.Context) {
|
2023-03-19 12:52:58 +00:00
|
|
|
c.JSON(http.StatusOK, session.User(c))
|
2016-03-30 20:15:28 +00:00
|
|
|
}
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// GetFeed
|
|
|
|
//
|
2024-05-31 13:57:57 +00:00
|
|
|
// @Summary Get the currently authenticated users pipeline feed
|
2024-05-01 09:50:41 +00:00
|
|
|
// @Description The feed lists the most recent pipeline for the currently authenticated user.
|
2023-06-03 19:38:36 +00:00
|
|
|
// @Router /user/feed [get]
|
|
|
|
// @Produce json
|
2024-05-01 09:50:41 +00:00
|
|
|
// @Success 200 {array} Feed
|
2023-06-03 19:38:36 +00:00
|
|
|
// @Tags User
|
|
|
|
// @Param Authorization header string true "Insert your personal access token" default(Bearer <personal access token>)
|
2016-03-30 20:15:28 +00:00
|
|
|
func GetFeed(c *gin.Context) {
|
2021-12-01 13:22:06 +00:00
|
|
|
_store := store.FromContext(c)
|
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 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 {
|
2023-03-19 12:52:58 +00:00
|
|
|
c.String(http.StatusInternalServerError, "Error fetching feed. %s", err)
|
2017-07-14 19:58:38 +00:00
|
|
|
} else {
|
2023-03-19 12:52:58 +00:00
|
|
|
c.JSON(http.StatusOK, feed)
|
2017-07-14 19:58:38 +00:00
|
|
|
}
|
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 {
|
2023-03-19 12:52:58 +00:00
|
|
|
c.String(http.StatusInternalServerError, "Error fetching user feed. %s", err)
|
2016-03-30 20:15:28 +00:00
|
|
|
return
|
|
|
|
}
|
2023-03-19 12:52:58 +00:00
|
|
|
c.JSON(http.StatusOK, feed)
|
2016-03-30 20:15:28 +00:00
|
|
|
}
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// GetRepos
|
|
|
|
//
|
2024-05-01 09:50:41 +00:00
|
|
|
// @Summary Get user's repositories
|
2023-06-03 19:38:36 +00:00
|
|
|
// @Description Retrieve the currently authenticated User's Repository list
|
|
|
|
// @Router /user/repos [get]
|
|
|
|
// @Produce json
|
|
|
|
// @Success 200 {array} Repo
|
|
|
|
// @Tags User
|
|
|
|
// @Param Authorization header string true "Insert your personal access token" default(Bearer <personal access token>)
|
2023-12-24 14:50:01 +00:00
|
|
|
// @Param all query bool false "query all repos, including inactive ones"
|
2016-03-30 20:15:28 +00:00
|
|
|
func GetRepos(c *gin.Context) {
|
2021-12-01 13:22:06 +00:00
|
|
|
_store := store.FromContext(c)
|
2021-10-28 09:12:58 +00:00
|
|
|
user := session.User(c)
|
2024-04-16 06:04:55 +00:00
|
|
|
_forge, err := server.Config.Services.Manager.ForgeFromUser(user)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Cannot get forge from user")
|
|
|
|
c.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-28 09:12:58 +00:00
|
|
|
all, _ := strconv.ParseBool(c.Query("all"))
|
2017-09-29 18:21:06 +00:00
|
|
|
|
2017-07-14 19:58:38 +00:00
|
|
|
if all {
|
2023-08-28 16:57:44 +00:00
|
|
|
dbRepos, err := _store.RepoList(user, true, false)
|
|
|
|
if err != nil {
|
|
|
|
c.String(http.StatusInternalServerError, "Error fetching repository list. %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-06-12 23:07:52 +00:00
|
|
|
active := map[model.ForgeRemoteID]*model.Repo{}
|
2023-08-28 16:57:44 +00:00
|
|
|
for _, r := range dbRepos {
|
2023-06-12 23:07:52 +00:00
|
|
|
active[r.ForgeRemoteID] = r
|
2023-03-21 22:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_repos, err := _forge.Repos(c, user)
|
|
|
|
if err != nil {
|
|
|
|
c.String(http.StatusInternalServerError, "Error fetching repository list. %s", err)
|
|
|
|
return
|
|
|
|
}
|
2023-06-12 23:07:52 +00:00
|
|
|
|
2023-03-21 22:01:59 +00:00
|
|
|
var repos []*model.Repo
|
|
|
|
for _, r := range _repos {
|
2023-11-12 13:39:41 +00:00
|
|
|
if r.Perm.Push && server.Config.Permissions.OwnersAllowlist.IsAllowed(r) {
|
2023-08-28 16:57:44 +00:00
|
|
|
if active[r.ForgeRemoteID] != nil {
|
2023-06-12 23:07:52 +00:00
|
|
|
existingRepo := active[r.ForgeRemoteID]
|
|
|
|
existingRepo.Update(r)
|
2023-08-28 16:57:44 +00:00
|
|
|
existingRepo.IsActive = active[r.ForgeRemoteID].IsActive
|
2023-06-12 23:07:52 +00:00
|
|
|
repos = append(repos, existingRepo)
|
2024-01-10 14:34:44 +00:00
|
|
|
} else if r.Perm.Admin {
|
|
|
|
// you must be admin to enable the repo
|
|
|
|
repos = append(repos, r)
|
2023-03-21 22:01:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 22:20:17 +00:00
|
|
|
c.JSON(http.StatusOK, repos)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-08-28 16:57:44 +00:00
|
|
|
activeRepos, err := _store.RepoList(user, true, true)
|
|
|
|
if err != nil {
|
|
|
|
c.String(http.StatusInternalServerError, "Error fetching repository list. %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-30 01:40:13 +00:00
|
|
|
c.JSON(http.StatusOK, activeRepos)
|
2016-03-30 20:15:28 +00:00
|
|
|
}
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// PostToken
|
|
|
|
//
|
2023-12-24 14:50:01 +00:00
|
|
|
// @Summary Return the token of the current user as string
|
|
|
|
// @Router /user/token [post]
|
|
|
|
// @Produce plain
|
|
|
|
// @Success 200
|
|
|
|
// @Tags User
|
|
|
|
// @Param Authorization header string true "Insert your personal access token" default(Bearer <personal access token>)
|
2016-03-30 20:15:28 +00:00
|
|
|
func PostToken(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
2024-05-27 09:52:43 +00:00
|
|
|
t := token.New(token.UserToken)
|
|
|
|
t.Set("user-id", strconv.FormatInt(user.ID, 10))
|
|
|
|
tokenString, err := t.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
|
|
|
}
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// DeleteToken
|
|
|
|
//
|
|
|
|
// @Summary Reset a token
|
|
|
|
// @Description Reset's the current personal access token of the user and returns a new one.
|
|
|
|
// @Router /user/token [delete]
|
|
|
|
// @Produce plain
|
|
|
|
// @Success 200
|
|
|
|
// @Tags User
|
|
|
|
// @Param Authorization header string true "Insert your personal access token" default(Bearer <personal access token>)
|
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 {
|
2023-03-19 12:52:58 +00:00
|
|
|
c.String(http.StatusInternalServerError, "Error revoking tokens. %s", err)
|
2016-04-09 00:16:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-05-27 09:52:43 +00:00
|
|
|
t := token.New(token.UserToken)
|
|
|
|
t.Set("user-id", strconv.FormatInt(user.ID, 10))
|
|
|
|
tokenString, err := t.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
|
|
|
}
|