2015-09-30 03:21:17 +02:00
|
|
|
package controller
|
2015-04-09 00:43:59 +02:00
|
|
|
|
|
|
|
import (
|
2015-09-30 03:21:17 +02:00
|
|
|
"net/http"
|
2015-09-09 23:34:28 +02:00
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
"github.com/gin-gonic/gin"
|
2015-04-09 00:43:59 +02:00
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
"github.com/drone/drone/model"
|
|
|
|
"github.com/drone/drone/router/middleware/context"
|
|
|
|
"github.com/drone/drone/router/middleware/session"
|
|
|
|
"github.com/drone/drone/shared/token"
|
2015-04-09 00:43:59 +02:00
|
|
|
)
|
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
func GetSelf(c *gin.Context) {
|
|
|
|
c.IndentedJSON(200, session.User(c))
|
|
|
|
}
|
2015-04-09 00:43:59 +02:00
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
func GetFeed(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
|
|
|
db := context.Database(c)
|
|
|
|
feed, err := model.GetUserFeed(db, user, 25, 0)
|
2015-04-09 00:43:59 +02:00
|
|
|
if err != nil {
|
2015-09-30 03:21:17 +02:00
|
|
|
c.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
return
|
2015-04-09 00:43:59 +02:00
|
|
|
}
|
2015-09-30 03:21:17 +02:00
|
|
|
c.IndentedJSON(http.StatusOK, feed)
|
2015-04-09 00:43:59 +02:00
|
|
|
}
|
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
func GetRepos(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
2015-10-16 00:40:27 +02:00
|
|
|
remote := context.Remote(c)
|
2015-09-30 03:21:17 +02:00
|
|
|
db := context.Database(c)
|
2015-10-16 00:40:27 +02:00
|
|
|
var repos []*model.RepoLite
|
|
|
|
|
|
|
|
// get the repository list from the cache
|
|
|
|
reposv, ok := c.Get("repos")
|
|
|
|
if ok {
|
|
|
|
repos = reposv.([]*model.RepoLite)
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
repos, err = remote.Repos(user)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// for each repository in the remote system we get
|
|
|
|
// the intersection of those repostiories in Drone
|
|
|
|
repos_, err := model.GetRepoListOf(db, repos)
|
2015-04-09 00:43:59 +02:00
|
|
|
if err != nil {
|
2015-09-30 03:21:17 +02:00
|
|
|
c.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
return
|
2015-04-09 00:43:59 +02:00
|
|
|
}
|
2015-10-16 00:40:27 +02:00
|
|
|
|
|
|
|
c.Set("repos", repos)
|
|
|
|
c.IndentedJSON(http.StatusOK, repos_)
|
2015-04-09 00:43:59 +02:00
|
|
|
}
|
2015-04-11 07:22:55 +02:00
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
func GetRemoteRepos(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
|
|
|
remote := context.Remote(c)
|
|
|
|
|
2015-10-13 11:08:08 +02:00
|
|
|
reposv, ok := c.Get("repos")
|
2015-09-30 03:21:17 +02:00
|
|
|
if ok {
|
2015-10-13 11:08:08 +02:00
|
|
|
c.IndentedJSON(http.StatusOK, reposv)
|
2015-09-30 03:21:17 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repos, err := remote.Repos(user)
|
2015-08-19 01:09:27 +02:00
|
|
|
if err != nil {
|
2015-09-30 03:21:17 +02:00
|
|
|
c.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
return
|
2015-08-19 01:09:27 +02:00
|
|
|
}
|
2015-10-13 11:08:08 +02:00
|
|
|
|
|
|
|
c.Set("repos", repos)
|
2015-09-30 03:21:17 +02:00
|
|
|
c.IndentedJSON(http.StatusOK, repos)
|
2015-08-19 01:09:27 +02:00
|
|
|
}
|
|
|
|
|
2015-09-30 03:21:17 +02:00
|
|
|
func PostToken(c *gin.Context) {
|
|
|
|
user := session.User(c)
|
2015-09-09 23:05:52 +02:00
|
|
|
|
2015-09-09 23:34:28 +02:00
|
|
|
token := token.New(token.UserToken, user.Login)
|
|
|
|
tokenstr, err := token.Sign(user.Hash)
|
2015-04-14 01:33:29 +02:00
|
|
|
if err != nil {
|
2015-09-30 03:21:17 +02:00
|
|
|
c.AbortWithError(http.StatusInternalServerError, err)
|
2015-04-14 01:33:29 +02:00
|
|
|
} else {
|
2015-09-30 03:21:17 +02:00
|
|
|
c.String(http.StatusOK, tokenstr)
|
2015-04-14 01:33:29 +02:00
|
|
|
}
|
2015-04-11 07:22:55 +02:00
|
|
|
}
|