155 lines
4.1 KiB
Go
155 lines
4.1 KiB
Go
package handler
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/drone/drone/server/resource/config"
|
|
"github.com/drone/drone/server/resource/perm"
|
|
"github.com/drone/drone/server/resource/repo"
|
|
"github.com/drone/drone/server/resource/user"
|
|
"github.com/drone/drone/server/session"
|
|
"github.com/gorilla/pat"
|
|
)
|
|
|
|
type LoginHandler struct {
|
|
users user.UserManager
|
|
repos repo.RepoManager
|
|
perms perm.PermManager
|
|
sess session.Session
|
|
conf *config.Config
|
|
}
|
|
|
|
func NewLoginHandler(users user.UserManager, repos repo.RepoManager, perms perm.PermManager, sess session.Session, conf *config.Config) *LoginHandler {
|
|
return &LoginHandler{users, repos, perms, sess, conf}
|
|
}
|
|
|
|
// GetLogin gets the login to the 3rd party remote system.
|
|
// GET /login/:host
|
|
func (h *LoginHandler) GetLogin(w http.ResponseWriter, r *http.Request) error {
|
|
host := r.FormValue(":host")
|
|
|
|
// get the remote system's client.
|
|
remote := h.conf.GetRemote(host)
|
|
if remote == nil {
|
|
return notFound{}
|
|
}
|
|
|
|
// authenticate the user
|
|
login, err := remote.GetLogin(w, r)
|
|
if err != nil {
|
|
return badRequest{err}
|
|
} else if login == nil {
|
|
// in this case we probably just redirected
|
|
// the user, so we can exit with no error
|
|
return nil
|
|
}
|
|
|
|
// get the user from the database
|
|
u, err := h.users.FindLogin(host, login.Login)
|
|
if err != nil {
|
|
// if self-registration is disabled we should
|
|
// return a notAuthorized error
|
|
if !h.conf.Registration {
|
|
return notAuthorized{}
|
|
}
|
|
|
|
// create the user account
|
|
u = user.New(remote.GetName(), login.Login, login.Email)
|
|
u.Name = login.Name
|
|
u.SetEmail(login.Email)
|
|
|
|
// insert the user into the database
|
|
if err := h.users.Insert(u); err != nil {
|
|
return badRequest{err}
|
|
}
|
|
|
|
// if this is the first user, they
|
|
// should be an admin.
|
|
if u.ID == 1 {
|
|
u.Admin = true
|
|
}
|
|
}
|
|
|
|
// update the user access token
|
|
// in case it changed in GitHub
|
|
u.Access = login.Access
|
|
u.Secret = login.Secret
|
|
if err := h.users.Update(u); err != nil {
|
|
return badRequest{err}
|
|
}
|
|
|
|
// look at the last synchronized date to determine if
|
|
// we need to re-sync the account.
|
|
//
|
|
// TODO this should move to a server/sync package and
|
|
// should be injected into this struct, just like
|
|
// the database code.
|
|
if u.Stale() {
|
|
log.Println("sync user account.", u.Login)
|
|
|
|
// sync inside a goroutine. This should eventually be moved to
|
|
// its own package / sync utility.
|
|
go func() {
|
|
// mark as synced
|
|
u.Synced = time.Now().Unix()
|
|
if err := h.users.Update(u); err != nil {
|
|
log.Println("Error syncing user account, updating sync date", u.Login, err)
|
|
return
|
|
}
|
|
|
|
// list all repositories
|
|
client := remote.GetClient(u.Access, u.Secret)
|
|
repos, err := client.GetRepos("")
|
|
if err != nil {
|
|
log.Println("Error syncing user account, listing repositories", u.Login, err)
|
|
return
|
|
}
|
|
|
|
// insert all repositories
|
|
for _, remoteRepo := range repos {
|
|
repo, _ := repo.New(remote.GetName(), remoteRepo.Owner, remoteRepo.Name)
|
|
repo.Private = remoteRepo.Private
|
|
repo.Host = remoteRepo.Host
|
|
repo.CloneURL = remoteRepo.Clone
|
|
repo.GitURL = remoteRepo.Git
|
|
repo.SSHURL = remoteRepo.SSH
|
|
repo.URL = remoteRepo.URL
|
|
|
|
if err := h.repos.Insert(repo); err != nil {
|
|
log.Println("Error adding repo.", u.Login, remoteRepo.Name, err)
|
|
continue
|
|
}
|
|
|
|
// add user permissions
|
|
if err := h.perms.Grant(u, repo, remoteRepo.Pull, remoteRepo.Push, remoteRepo.Admin); err != nil {
|
|
log.Println("Error adding permissions.", u.Login, remoteRepo.Name, err)
|
|
continue
|
|
}
|
|
|
|
log.Println("Successfully syced repo.", u.Login+"/"+remoteRepo.Name)
|
|
}
|
|
}()
|
|
}
|
|
|
|
// (re)-create the user session
|
|
h.sess.SetUser(w, r, u)
|
|
|
|
// redirect the user to their dashboard
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
return nil
|
|
}
|
|
|
|
// GetLogout terminates the current user session
|
|
// GET /logout
|
|
func (h *LoginHandler) GetLogout(w http.ResponseWriter, r *http.Request) error {
|
|
h.sess.Clear(w, r)
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
return nil
|
|
}
|
|
|
|
func (h *LoginHandler) Register(r *pat.Router) {
|
|
r.Get("/login/{host}", errorHandler(h.GetLogin))
|
|
r.Get("/logout", errorHandler(h.GetLogout))
|
|
}
|