2023-03-14 15:22:52 +00:00
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
2023-04-17 12:25:39 +00:00
|
|
|
"context"
|
|
|
|
"crypto/md5"
|
2023-05-26 07:15:37 +00:00
|
|
|
"encoding/json"
|
2023-04-03 23:16:22 +00:00
|
|
|
"errors"
|
2023-04-17 12:25:39 +00:00
|
|
|
"fmt"
|
2023-06-18 10:38:57 +00:00
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
"github.com/labstack/echo/v4"
|
2023-04-17 17:11:32 +00:00
|
|
|
"github.com/markbates/goth"
|
2023-04-17 12:25:39 +00:00
|
|
|
"github.com/markbates/goth/gothic"
|
2023-04-17 17:11:32 +00:00
|
|
|
"github.com/markbates/goth/providers/gitea"
|
|
|
|
"github.com/markbates/goth/providers/github"
|
2023-09-15 21:56:14 +00:00
|
|
|
"github.com/markbates/goth/providers/openidConnect"
|
2023-04-03 23:16:22 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2023-05-15 19:07:29 +00:00
|
|
|
"github.com/thomiceli/opengist/internal/config"
|
2023-09-02 22:30:57 +00:00
|
|
|
"github.com/thomiceli/opengist/internal/db"
|
2023-04-26 21:13:11 +00:00
|
|
|
"golang.org/x/text/cases"
|
|
|
|
"golang.org/x/text/language"
|
2023-04-03 23:16:22 +00:00
|
|
|
"gorm.io/gorm"
|
2023-03-14 15:22:52 +00:00
|
|
|
)
|
|
|
|
|
2023-04-26 21:13:11 +00:00
|
|
|
var title = cases.Title(language.English)
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
func register(ctx echo.Context) error {
|
2023-09-22 15:26:09 +00:00
|
|
|
setData(ctx, "title", tr(ctx, "auth.new-account"))
|
2023-03-14 15:22:52 +00:00
|
|
|
setData(ctx, "htmlTitle", "New account")
|
2023-05-06 16:53:59 +00:00
|
|
|
setData(ctx, "disableForm", getData(ctx, "DisableLoginForm"))
|
2023-03-14 15:22:52 +00:00
|
|
|
return html(ctx, "auth_form.html")
|
|
|
|
}
|
|
|
|
|
|
|
|
func processRegister(ctx echo.Context) error {
|
2023-04-28 18:31:10 +00:00
|
|
|
if getData(ctx, "DisableSignup") == true {
|
2023-03-14 15:22:52 +00:00
|
|
|
return errorRes(403, "Signing up is disabled", nil)
|
|
|
|
}
|
|
|
|
|
2023-05-06 16:53:59 +00:00
|
|
|
if getData(ctx, "DisableLoginForm") == true {
|
|
|
|
return errorRes(403, "Signing up via registration form is disabled", nil)
|
|
|
|
}
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
setData(ctx, "title", "New account")
|
|
|
|
setData(ctx, "htmlTitle", "New account")
|
|
|
|
|
|
|
|
sess := getSession(ctx)
|
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
dto := new(db.UserDTO)
|
2023-03-17 13:56:39 +00:00
|
|
|
if err := ctx.Bind(dto); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
return errorRes(400, "Cannot bind data", err)
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:56:39 +00:00
|
|
|
if err := ctx.Validate(dto); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
addFlash(ctx, validationMessages(&err), "error")
|
|
|
|
return html(ctx, "auth_form.html")
|
|
|
|
}
|
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
if exists, err := db.UserExists(dto.Username); err != nil || exists {
|
2023-03-17 13:56:39 +00:00
|
|
|
addFlash(ctx, "Username already exists", "error")
|
|
|
|
return html(ctx, "auth_form.html")
|
|
|
|
}
|
|
|
|
|
|
|
|
user := dto.ToUser()
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
password, err := argon2id.hash(user.Password)
|
|
|
|
if err != nil {
|
|
|
|
return errorRes(500, "Cannot hash password", err)
|
|
|
|
}
|
|
|
|
user.Password = password
|
|
|
|
|
2023-03-17 13:56:39 +00:00
|
|
|
if err = user.Create(); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
return errorRes(500, "Cannot create user", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.ID == 1 {
|
2023-03-17 13:56:39 +00:00
|
|
|
if err = user.SetAdmin(); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
return errorRes(500, "Cannot set user admin", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sess.Values["user"] = user.ID
|
|
|
|
saveSession(sess, ctx)
|
|
|
|
|
|
|
|
return redirect(ctx, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
func login(ctx echo.Context) error {
|
2023-09-22 15:26:09 +00:00
|
|
|
setData(ctx, "title", tr(ctx, "auth.login"))
|
2023-03-14 15:22:52 +00:00
|
|
|
setData(ctx, "htmlTitle", "Login")
|
2023-05-06 16:53:59 +00:00
|
|
|
setData(ctx, "disableForm", getData(ctx, "DisableLoginForm"))
|
2023-03-14 15:22:52 +00:00
|
|
|
return html(ctx, "auth_form.html")
|
|
|
|
}
|
|
|
|
|
|
|
|
func processLogin(ctx echo.Context) error {
|
2023-05-06 16:53:59 +00:00
|
|
|
if getData(ctx, "DisableLoginForm") == true {
|
|
|
|
return errorRes(403, "Logging in via login form is disabled", nil)
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:56:39 +00:00
|
|
|
var err error
|
2023-03-14 15:22:52 +00:00
|
|
|
sess := getSession(ctx)
|
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
dto := &db.UserDTO{}
|
2023-03-17 13:56:39 +00:00
|
|
|
if err = ctx.Bind(dto); err != nil {
|
2023-03-14 15:22:52 +00:00
|
|
|
return errorRes(400, "Cannot bind data", err)
|
|
|
|
}
|
2023-03-17 13:56:39 +00:00
|
|
|
password := dto.Password
|
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
var user *db.User
|
2023-03-14 15:22:52 +00:00
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
if user, err = db.GetUserByUsername(dto.Username); err != nil {
|
2023-04-03 23:16:22 +00:00
|
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
return errorRes(500, "Cannot get user", err)
|
|
|
|
}
|
|
|
|
log.Warn().Msg("Invalid HTTP authentication attempt from " + ctx.RealIP())
|
2023-03-14 15:22:52 +00:00
|
|
|
addFlash(ctx, "Invalid credentials", "error")
|
|
|
|
return redirect(ctx, "/login")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ok, err := argon2id.verify(password, user.Password); !ok {
|
|
|
|
if err != nil {
|
|
|
|
return errorRes(500, "Cannot check for password", err)
|
|
|
|
}
|
2023-04-03 23:16:22 +00:00
|
|
|
log.Warn().Msg("Invalid HTTP authentication attempt from " + ctx.RealIP())
|
2023-03-14 15:22:52 +00:00
|
|
|
addFlash(ctx, "Invalid credentials", "error")
|
|
|
|
return redirect(ctx, "/login")
|
|
|
|
}
|
|
|
|
|
|
|
|
sess.Values["user"] = user.ID
|
|
|
|
saveSession(sess, ctx)
|
|
|
|
deleteCsrfCookie(ctx)
|
|
|
|
|
|
|
|
return redirect(ctx, "/")
|
|
|
|
}
|
|
|
|
|
2023-04-17 12:25:39 +00:00
|
|
|
func oauthCallback(ctx echo.Context) error {
|
|
|
|
user, err := gothic.CompleteUserAuth(ctx.Response(), ctx.Request())
|
|
|
|
if err != nil {
|
|
|
|
return errorRes(400, "Cannot complete user auth", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
currUser := getUserLogged(ctx)
|
|
|
|
if currUser != nil {
|
2023-05-26 07:15:37 +00:00
|
|
|
// if user is logged in, link account to user and update its avatar URL
|
2023-04-17 12:25:39 +00:00
|
|
|
switch user.Provider {
|
|
|
|
case "github":
|
|
|
|
currUser.GithubID = user.UserID
|
2023-05-26 07:15:37 +00:00
|
|
|
currUser.AvatarURL = getAvatarUrlFromProvider("github", user.UserID)
|
2023-04-17 12:25:39 +00:00
|
|
|
case "gitea":
|
|
|
|
currUser.GiteaID = user.UserID
|
2023-05-26 07:15:37 +00:00
|
|
|
currUser.AvatarURL = getAvatarUrlFromProvider("gitea", user.NickName)
|
2023-09-15 21:56:14 +00:00
|
|
|
case "openid-connect":
|
|
|
|
currUser.OIDCID = user.UserID
|
|
|
|
currUser.AvatarURL = user.AvatarURL
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err = currUser.Update(); err != nil {
|
2023-04-26 21:13:11 +00:00
|
|
|
return errorRes(500, "Cannot update user "+title.String(user.Provider)+" id", err)
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
2023-04-26 21:13:11 +00:00
|
|
|
addFlash(ctx, "Account linked to "+title.String(user.Provider), "success")
|
2023-04-17 12:25:39 +00:00
|
|
|
return redirect(ctx, "/settings")
|
|
|
|
}
|
|
|
|
|
|
|
|
// if user is not in database, create it
|
2023-09-02 22:30:57 +00:00
|
|
|
userDB, err := db.GetUserByProvider(user.UserID, user.Provider)
|
2023-04-17 12:25:39 +00:00
|
|
|
if err != nil {
|
2023-04-28 18:31:10 +00:00
|
|
|
if getData(ctx, "DisableSignup") == true {
|
|
|
|
return errorRes(403, "Signing up is disabled", nil)
|
|
|
|
}
|
|
|
|
|
2023-04-17 12:25:39 +00:00
|
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
return errorRes(500, "Cannot get user", err)
|
|
|
|
}
|
|
|
|
|
2023-09-02 22:30:57 +00:00
|
|
|
userDB = &db.User{
|
2023-04-17 12:25:39 +00:00
|
|
|
Username: user.NickName,
|
|
|
|
Email: user.Email,
|
|
|
|
MD5Hash: fmt.Sprintf("%x", md5.Sum([]byte(strings.ToLower(strings.TrimSpace(user.Email))))),
|
|
|
|
}
|
|
|
|
|
2023-05-26 07:15:37 +00:00
|
|
|
// set provider id and avatar URL
|
2023-04-17 12:25:39 +00:00
|
|
|
switch user.Provider {
|
|
|
|
case "github":
|
|
|
|
userDB.GithubID = user.UserID
|
2023-05-26 07:15:37 +00:00
|
|
|
userDB.AvatarURL = getAvatarUrlFromProvider("github", user.UserID)
|
2023-04-17 12:25:39 +00:00
|
|
|
case "gitea":
|
|
|
|
userDB.GiteaID = user.UserID
|
2023-05-26 07:15:37 +00:00
|
|
|
userDB.AvatarURL = getAvatarUrlFromProvider("gitea", user.NickName)
|
2023-09-15 21:56:14 +00:00
|
|
|
case "openid-connect":
|
|
|
|
userDB.OIDCID = user.UserID
|
|
|
|
userDB.AvatarURL = user.AvatarURL
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err = userDB.Create(); err != nil {
|
2023-09-02 22:30:57 +00:00
|
|
|
if db.IsUniqueConstraintViolation(err) {
|
2023-04-17 18:25:35 +00:00
|
|
|
addFlash(ctx, "Username "+user.NickName+" already exists in Opengist", "error")
|
2023-04-17 12:25:39 +00:00
|
|
|
return redirect(ctx, "/login")
|
|
|
|
}
|
|
|
|
|
|
|
|
return errorRes(500, "Cannot create user", err)
|
|
|
|
}
|
|
|
|
|
2023-05-04 09:48:26 +00:00
|
|
|
if userDB.ID == 1 {
|
|
|
|
if err = userDB.SetAdmin(); err != nil {
|
|
|
|
return errorRes(500, "Cannot set user admin", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-17 12:25:39 +00:00
|
|
|
var resp *http.Response
|
|
|
|
switch user.Provider {
|
|
|
|
case "github":
|
|
|
|
resp, err = http.Get("https://github.com/" + user.NickName + ".keys")
|
|
|
|
case "gitea":
|
2023-06-18 10:38:57 +00:00
|
|
|
resp, err = http.Get(urlJoin(config.C.GiteaUrl, user.NickName+".keys"))
|
2023-09-15 21:56:14 +00:00
|
|
|
case "openid-connect":
|
2023-09-15 22:48:09 +00:00
|
|
|
err = errors.New("cannot get keys from OIDC provider")
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
addFlash(ctx, "Could not get user keys", "error")
|
|
|
|
log.Error().Err(err).Msg("Could not get user keys")
|
|
|
|
}
|
|
|
|
|
|
|
|
keys := strings.Split(string(body), "\n")
|
|
|
|
if len(keys[len(keys)-1]) == 0 {
|
|
|
|
keys = keys[:len(keys)-1]
|
|
|
|
}
|
|
|
|
for _, key := range keys {
|
2023-09-02 22:30:57 +00:00
|
|
|
sshKey := db.SSHKey{
|
2023-04-17 12:25:39 +00:00
|
|
|
Title: "Added from " + user.Provider,
|
|
|
|
Content: key,
|
|
|
|
User: *userDB,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = sshKey.Create(); err != nil {
|
|
|
|
addFlash(ctx, "Could not create ssh key", "error")
|
|
|
|
log.Error().Err(err).Msg("Could not create ssh key")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sess := getSession(ctx)
|
|
|
|
sess.Values["user"] = userDB.ID
|
|
|
|
saveSession(sess, ctx)
|
|
|
|
deleteCsrfCookie(ctx)
|
|
|
|
|
|
|
|
return redirect(ctx, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
func oauth(ctx echo.Context) error {
|
|
|
|
provider := ctx.Param("provider")
|
|
|
|
|
2023-04-17 17:11:32 +00:00
|
|
|
httpProtocol := "http"
|
|
|
|
if ctx.Request().TLS != nil || ctx.Request().Header.Get("X-Forwarded-Proto") == "https" {
|
|
|
|
httpProtocol = "https"
|
|
|
|
}
|
|
|
|
|
2023-04-30 10:09:42 +00:00
|
|
|
var opengistUrl string
|
|
|
|
if config.C.ExternalUrl != "" {
|
|
|
|
opengistUrl = config.C.ExternalUrl
|
|
|
|
} else {
|
|
|
|
opengistUrl = httpProtocol + "://" + ctx.Request().Host
|
|
|
|
}
|
2023-04-17 17:11:32 +00:00
|
|
|
|
|
|
|
switch provider {
|
|
|
|
case "github":
|
|
|
|
goth.UseProviders(
|
|
|
|
github.New(
|
|
|
|
config.C.GithubClientKey,
|
|
|
|
config.C.GithubSecret,
|
2023-05-29 20:39:30 +00:00
|
|
|
urlJoin(opengistUrl, "/oauth/github/callback"),
|
|
|
|
),
|
2023-04-17 17:11:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
case "gitea":
|
|
|
|
goth.UseProviders(
|
|
|
|
gitea.NewCustomisedURL(
|
|
|
|
config.C.GiteaClientKey,
|
|
|
|
config.C.GiteaSecret,
|
2023-05-29 20:39:30 +00:00
|
|
|
urlJoin(opengistUrl, "/oauth/gitea/callback"),
|
|
|
|
urlJoin(config.C.GiteaUrl, "/login/oauth/authorize"),
|
|
|
|
urlJoin(config.C.GiteaUrl, "/login/oauth/access_token"),
|
|
|
|
urlJoin(config.C.GiteaUrl, "/api/v1/user"),
|
|
|
|
),
|
2023-04-17 17:11:32 +00:00
|
|
|
)
|
2023-09-15 21:56:14 +00:00
|
|
|
case "openid-connect":
|
|
|
|
oidcProvider, err := openidConnect.New(
|
|
|
|
config.C.OIDCClientKey,
|
|
|
|
config.C.OIDCSecret,
|
|
|
|
urlJoin(opengistUrl, "/oauth/openid-connect/callback"),
|
|
|
|
config.C.OIDCDiscoveryUrl,
|
|
|
|
"openid",
|
|
|
|
"email",
|
|
|
|
"profile",
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return errorRes(500, "Cannot create OIDC provider", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
goth.UseProviders(oidcProvider)
|
2023-04-17 17:11:32 +00:00
|
|
|
}
|
|
|
|
|
2023-04-17 12:25:39 +00:00
|
|
|
currUser := getUserLogged(ctx)
|
|
|
|
if currUser != nil {
|
|
|
|
isDelete := false
|
|
|
|
var err error
|
|
|
|
switch provider {
|
|
|
|
case "github":
|
|
|
|
if currUser.GithubID != "" {
|
|
|
|
isDelete = true
|
2023-04-17 17:11:32 +00:00
|
|
|
err = currUser.DeleteProviderID(provider)
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
case "gitea":
|
|
|
|
if currUser.GiteaID != "" {
|
|
|
|
isDelete = true
|
2023-04-17 17:11:32 +00:00
|
|
|
err = currUser.DeleteProviderID(provider)
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
2023-09-15 21:56:14 +00:00
|
|
|
case "openid-connect":
|
|
|
|
if currUser.OIDCID != "" {
|
|
|
|
isDelete = true
|
|
|
|
err = currUser.DeleteProviderID(provider)
|
|
|
|
}
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2023-04-26 21:13:11 +00:00
|
|
|
return errorRes(500, "Cannot unlink account from "+title.String(provider), err)
|
2023-04-17 12:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if isDelete {
|
2023-04-26 21:13:11 +00:00
|
|
|
addFlash(ctx, "Account unlinked from "+title.String(provider), "success")
|
2023-04-17 12:25:39 +00:00
|
|
|
return redirect(ctx, "/settings")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-28 18:31:10 +00:00
|
|
|
ctxValue := context.WithValue(ctx.Request().Context(), gothic.ProviderParamKey, provider)
|
2023-04-17 12:25:39 +00:00
|
|
|
ctx.SetRequest(ctx.Request().WithContext(ctxValue))
|
2023-09-15 21:56:14 +00:00
|
|
|
if provider != "github" && provider != "gitea" && provider != "openid-connect" {
|
2023-04-17 12:25:39 +00:00
|
|
|
return errorRes(400, "Unsupported provider", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
gothic.BeginAuthHandler(ctx.Response(), ctx.Request())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-03-14 15:22:52 +00:00
|
|
|
func logout(ctx echo.Context) error {
|
|
|
|
deleteSession(ctx)
|
|
|
|
deleteCsrfCookie(ctx)
|
|
|
|
return redirect(ctx, "/all")
|
|
|
|
}
|
2023-04-17 19:31:40 +00:00
|
|
|
|
2023-05-29 20:39:30 +00:00
|
|
|
func urlJoin(base string, elem ...string) string {
|
|
|
|
joined, err := url.JoinPath(base, elem...)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Cannot join url")
|
|
|
|
}
|
|
|
|
|
|
|
|
return joined
|
|
|
|
}
|
|
|
|
|
2023-05-26 07:15:37 +00:00
|
|
|
func getAvatarUrlFromProvider(provider string, identifier string) string {
|
|
|
|
switch provider {
|
|
|
|
case "github":
|
|
|
|
return "https://avatars.githubusercontent.com/u/" + identifier + "?v=4"
|
|
|
|
case "gitea":
|
2023-06-18 10:38:57 +00:00
|
|
|
resp, err := http.Get(urlJoin(config.C.GiteaUrl, "/api/v1/users/", identifier))
|
2023-05-26 07:15:37 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Cannot get user from Gitea")
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Cannot read Gitea response body")
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var result map[string]interface{}
|
|
|
|
err = json.Unmarshal(body, &result)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Cannot unmarshal Gitea response body")
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
field, ok := result["avatar_url"]
|
|
|
|
if !ok {
|
|
|
|
log.Error().Msg("Field 'avatar_url' not found in Gitea JSON response")
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return field.(string)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|