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"
|
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-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
|
|
|
)
|
|
|
|
|
2023-06-03 19:38:36 +00:00
|
|
|
// GetSelf
|
|
|
|
//
|
|
|
|
// @Summary Returns the currently authenticated user.
|
|
|
|
// @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
|
|
|
|
//
|
|
|
|
// @Summary A feed entry for a build.
|
|
|
|
// @Description Feed entries can be used to display information on the latest builds.
|
|
|
|
// @Router /user/feed [get]
|
|
|
|
// @Produce json
|
|
|
|
// @Success 200 {object} Feed
|
|
|
|
// @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
|
|
|
|
//
|
|
|
|
// @Summary Get user's repos
|
|
|
|
// @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-07-12 11:49:18 +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)
|
2022-11-06 11:44:04 +00:00
|
|
|
_forge := server.Config.Services.Forge
|
2021-10-28 09:12:58 +00:00
|
|
|
|
|
|
|
user := session.User(c)
|
|
|
|
all, _ := strconv.ParseBool(c.Query("all"))
|
2017-09-29 18:21:06 +00:00
|
|
|
|
2023-04-30 01:40:13 +00:00
|
|
|
activeRepos, err := _store.RepoList(user, true, true)
|
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 repository list. %s", err)
|
2016-03-30 20:15:28 +00:00
|
|
|
return
|
|
|
|
}
|
2016-06-14 22:20:17 +00:00
|
|
|
|
2017-07-14 19:58:38 +00:00
|
|
|
if all {
|
2023-06-12 23:07:52 +00:00
|
|
|
active := map[model.ForgeRemoteID]*model.Repo{}
|
2023-04-30 01:40:13 +00:00
|
|
|
for _, r := range activeRepos {
|
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 {
|
|
|
|
if r.Perm.Push {
|
2023-06-12 23:07:52 +00:00
|
|
|
if active[r.ForgeRemoteID] != nil && active[r.ForgeRemoteID].IsActive {
|
|
|
|
existingRepo := active[r.ForgeRemoteID]
|
|
|
|
existingRepo.Update(r)
|
|
|
|
existingRepo.IsActive = true
|
|
|
|
repos = append(repos, existingRepo)
|
|
|
|
} else {
|
|
|
|
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-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
|
|
|
|
//
|
|
|
|
// @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)
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|