2015-04-08 22:43:59 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2015-05-22 18:37:40 +00:00
|
|
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
|
|
|
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin/binding"
|
|
|
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/ungerik/go-gravatar"
|
2015-04-08 22:43:59 +00:00
|
|
|
|
2015-05-17 20:51:42 +00:00
|
|
|
common "github.com/drone/drone/pkg/types"
|
2015-04-08 22:43:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetUserCurr accepts a request to retrieve the
|
|
|
|
// currently authenticated user from the datastore
|
|
|
|
// and return in JSON format.
|
|
|
|
//
|
|
|
|
// GET /api/user
|
|
|
|
//
|
|
|
|
func GetUserCurr(c *gin.Context) {
|
|
|
|
c.JSON(200, ToUser(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutUserCurr accepts a request to update the currently
|
|
|
|
// authenticated User profile.
|
|
|
|
//
|
|
|
|
// PUT /api/user
|
|
|
|
//
|
|
|
|
func PutUserCurr(c *gin.Context) {
|
2015-04-15 05:04:38 +00:00
|
|
|
store := ToDatastore(c)
|
|
|
|
user := ToUser(c)
|
2015-04-08 22:43:59 +00:00
|
|
|
|
|
|
|
in := &common.User{}
|
|
|
|
if !c.BindWith(in, binding.JSON) {
|
|
|
|
return
|
|
|
|
}
|
2015-04-15 05:04:38 +00:00
|
|
|
user.Email = in.Email
|
2015-06-18 23:37:40 +00:00
|
|
|
user.Avatar = gravatar.Hash(in.Email)
|
2015-04-15 05:04:38 +00:00
|
|
|
err := store.SetUser(user)
|
2015-04-08 22:43:59 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Fail(400, err)
|
|
|
|
} else {
|
2015-04-15 05:04:38 +00:00
|
|
|
c.JSON(200, user)
|
2015-04-08 22:43:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserRepos accepts a request to get the currently
|
|
|
|
// authenticated user's repository list from the datastore,
|
|
|
|
// encoded and returned in JSON format.
|
|
|
|
//
|
|
|
|
// GET /api/user/repos
|
|
|
|
//
|
|
|
|
func GetUserRepos(c *gin.Context) {
|
2015-04-15 05:04:38 +00:00
|
|
|
store := ToDatastore(c)
|
|
|
|
user := ToUser(c)
|
2015-05-11 07:45:31 +00:00
|
|
|
repos, err := store.RepoList(user)
|
2015-04-08 22:43:59 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Fail(400, err)
|
|
|
|
} else {
|
|
|
|
c.JSON(200, &repos)
|
|
|
|
}
|
|
|
|
}
|
2015-04-11 05:22:55 +00:00
|
|
|
|
|
|
|
// GetUserTokens accepts a request to get the currently
|
|
|
|
// authenticated user's token list from the datastore,
|
|
|
|
// encoded and returned in JSON format.
|
|
|
|
//
|
|
|
|
// GET /api/user/tokens
|
|
|
|
//
|
|
|
|
func GetUserTokens(c *gin.Context) {
|
2015-04-15 05:04:38 +00:00
|
|
|
store := ToDatastore(c)
|
|
|
|
user := ToUser(c)
|
2015-05-11 07:45:31 +00:00
|
|
|
tokens, err := store.TokenList(user)
|
2015-04-13 23:33:29 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Fail(400, err)
|
|
|
|
} else {
|
|
|
|
c.JSON(200, &tokens)
|
|
|
|
}
|
2015-04-11 05:22:55 +00:00
|
|
|
}
|