2022-08-06 11:35:17 +00:00
|
|
|
|
package auth
|
2020-11-14 13:03:06 +00:00
|
|
|
|
|
|
|
|
|
import (
|
2021-07-14 19:51:55 +00:00
|
|
|
|
"errors"
|
2021-07-01 08:45:03 +00:00
|
|
|
|
"fmt"
|
2021-04-12 17:40:43 +00:00
|
|
|
|
"io"
|
2020-11-14 13:03:06 +00:00
|
|
|
|
"log"
|
2021-07-01 08:45:03 +00:00
|
|
|
|
"mime"
|
2020-11-14 13:03:06 +00:00
|
|
|
|
"net/http"
|
2021-07-14 19:51:55 +00:00
|
|
|
|
"strings"
|
2020-11-14 13:03:06 +00:00
|
|
|
|
|
2022-08-21 13:25:47 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/viewutil"
|
|
|
|
|
|
2021-07-15 17:46:35 +00:00
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
|
2021-07-01 08:45:03 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/cfg"
|
2021-09-06 17:46:34 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/l18n"
|
2020-11-14 13:03:06 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/user"
|
2021-02-17 18:41:35 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/util"
|
2020-11-14 13:03:06 +00:00
|
|
|
|
)
|
|
|
|
|
|
2022-08-06 11:35:17 +00:00
|
|
|
|
func InitAuth(r *mux.Router) {
|
2022-04-02 07:22:26 +00:00
|
|
|
|
r.HandleFunc("/user-list", handlerUserList)
|
2021-07-15 17:46:35 +00:00
|
|
|
|
r.HandleFunc("/lock", handlerLock)
|
2021-12-30 21:07:39 +00:00
|
|
|
|
// The check below saves a lot of extra checks and lines of codes in other places in this file.
|
2021-07-02 08:20:03 +00:00
|
|
|
|
if !cfg.UseAuth {
|
2021-05-09 11:09:27 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
2021-07-02 08:20:03 +00:00
|
|
|
|
if cfg.AllowRegistration {
|
2022-05-17 13:31:12 +00:00
|
|
|
|
r.HandleFunc("/register", handlerRegister).Methods(http.MethodPost, http.MethodGet)
|
2021-05-09 11:09:27 +00:00
|
|
|
|
}
|
2021-07-14 19:51:55 +00:00
|
|
|
|
if cfg.TelegramEnabled {
|
2021-07-15 17:46:35 +00:00
|
|
|
|
r.HandleFunc("/telegram-login", handlerTelegramLogin)
|
2021-07-14 19:51:55 +00:00
|
|
|
|
}
|
2021-07-15 17:46:35 +00:00
|
|
|
|
r.HandleFunc("/login", handlerLogin)
|
|
|
|
|
r.HandleFunc("/logout", handlerLogout)
|
2020-11-14 13:03:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-02 07:22:26 +00:00
|
|
|
|
func handlerUserList(w http.ResponseWriter, rq *http.Request) {
|
|
|
|
|
lc := l18n.FromRequest(rq)
|
|
|
|
|
w.Header().Set("Content-Type", mime.TypeByExtension(".html"))
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2022-08-14 22:36:55 +00:00
|
|
|
|
w.Write([]byte(viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("ui.users_title"), UserList(lc), map[string]string{})))
|
2022-04-02 07:22:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-09 11:47:50 +00:00
|
|
|
|
func handlerLock(w http.ResponseWriter, rq *http.Request) {
|
2022-08-06 11:35:17 +00:00
|
|
|
|
_, _ = io.WriteString(w, Lock(l18n.FromRequest(rq)))
|
2021-07-09 11:47:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 21:07:39 +00:00
|
|
|
|
// handlerRegister displays the register form (GET) or registers the user (POST).
|
2021-04-12 17:40:43 +00:00
|
|
|
|
func handlerRegister(w http.ResponseWriter, rq *http.Request) {
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc := l18n.FromRequest(rq)
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
2021-04-12 17:40:43 +00:00
|
|
|
|
if rq.Method == http.MethodGet {
|
2021-12-30 21:07:39 +00:00
|
|
|
|
_, _ = io.WriteString(
|
2021-04-12 17:40:43 +00:00
|
|
|
|
w,
|
2022-08-06 11:35:17 +00:00
|
|
|
|
viewutil.Base(
|
2022-04-01 19:51:15 +00:00
|
|
|
|
viewutil.MetaFrom(w, rq),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("auth.register_title"),
|
2022-08-06 11:35:17 +00:00
|
|
|
|
Register(rq),
|
2022-08-14 22:36:55 +00:00
|
|
|
|
map[string]string{},
|
2021-04-12 17:40:43 +00:00
|
|
|
|
),
|
|
|
|
|
)
|
2022-05-17 13:31:12 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
username = rq.PostFormValue("username")
|
|
|
|
|
password = rq.PostFormValue("password")
|
|
|
|
|
err = user.Register(username, password, "editor", "local", false)
|
|
|
|
|
)
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Printf("Failed to register ‘%s’: %s", username, err.Error())
|
|
|
|
|
w.Header().Set("Content-Type", mime.TypeByExtension(".html"))
|
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
|
_, _ = io.WriteString(
|
|
|
|
|
w,
|
2022-08-06 11:35:17 +00:00
|
|
|
|
viewutil.Base(
|
2022-05-17 13:31:12 +00:00
|
|
|
|
viewutil.MetaFrom(w, rq),
|
|
|
|
|
lc.Get("auth.register_title"),
|
|
|
|
|
fmt.Sprintf(
|
|
|
|
|
`<main class="main-width"><p>%s</p><p><a href="/register">%s<a></p></main>`,
|
|
|
|
|
err.Error(),
|
|
|
|
|
lc.Get("auth.try_again"),
|
2021-07-01 08:45:03 +00:00
|
|
|
|
),
|
2022-08-14 22:36:55 +00:00
|
|
|
|
map[string]string{},
|
2022-05-17 13:31:12 +00:00
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
return
|
2021-04-12 17:40:43 +00:00
|
|
|
|
}
|
2022-05-17 13:31:12 +00:00
|
|
|
|
|
|
|
|
|
log.Printf("Successfully registered ‘%s’", username)
|
|
|
|
|
if err := user.LoginDataHTTP(w, username, password); err != nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
http.Redirect(w, rq, "/"+rq.URL.RawQuery, http.StatusSeeOther)
|
2021-04-12 17:40:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 21:07:39 +00:00
|
|
|
|
// handlerLogout shows the logout form (GET) or logs the user out (POST).
|
2020-11-14 13:03:06 +00:00
|
|
|
|
func handlerLogout(w http.ResponseWriter, rq *http.Request) {
|
2021-12-30 21:07:39 +00:00
|
|
|
|
if rq.Method == http.MethodGet {
|
|
|
|
|
var (
|
|
|
|
|
u = user.FromRequest(rq)
|
|
|
|
|
can = u != nil
|
|
|
|
|
lc = l18n.FromRequest(rq)
|
|
|
|
|
)
|
|
|
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
|
|
|
|
if can {
|
|
|
|
|
log.Println("User", u.Name, "tries to log out")
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
|
} else {
|
|
|
|
|
log.Println("Unknown user tries to log out")
|
|
|
|
|
w.WriteHeader(http.StatusForbidden)
|
|
|
|
|
}
|
|
|
|
|
_, _ = io.WriteString(
|
|
|
|
|
w,
|
2022-08-14 22:36:55 +00:00
|
|
|
|
viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("auth.logout_title"), Logout(can, lc), map[string]string{}),
|
2021-12-30 21:07:39 +00:00
|
|
|
|
)
|
|
|
|
|
} else if rq.Method == http.MethodPost {
|
|
|
|
|
user.LogoutFromRequest(w, rq)
|
|
|
|
|
http.Redirect(w, rq, "/", http.StatusSeeOther)
|
2020-11-14 13:03:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 21:07:39 +00:00
|
|
|
|
// handlerLogin shows the login form (GET) or logs the user in (POST).
|
2021-05-09 11:09:27 +00:00
|
|
|
|
func handlerLogin(w http.ResponseWriter, rq *http.Request) {
|
2021-12-30 21:07:39 +00:00
|
|
|
|
lc := l18n.FromRequest(rq)
|
|
|
|
|
if rq.Method == http.MethodGet {
|
|
|
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
2021-05-09 11:09:27 +00:00
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2021-12-30 21:07:39 +00:00
|
|
|
|
_, _ = io.WriteString(
|
|
|
|
|
w,
|
2022-08-06 11:35:17 +00:00
|
|
|
|
viewutil.Base(
|
2022-04-01 19:51:15 +00:00
|
|
|
|
viewutil.MetaFrom(w, rq),
|
2021-12-30 21:07:39 +00:00
|
|
|
|
lc.Get("auth.login_title"),
|
2022-08-06 11:35:17 +00:00
|
|
|
|
Login(lc),
|
2022-08-14 22:36:55 +00:00
|
|
|
|
map[string]string{},
|
2021-12-30 21:07:39 +00:00
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
} else if rq.Method == http.MethodPost {
|
|
|
|
|
var (
|
|
|
|
|
username = util.CanonicalName(rq.PostFormValue("username"))
|
|
|
|
|
password = rq.PostFormValue("password")
|
2022-05-17 13:31:12 +00:00
|
|
|
|
err = user.LoginDataHTTP(w, username, password)
|
2021-12-30 21:07:39 +00:00
|
|
|
|
)
|
2022-05-17 13:31:12 +00:00
|
|
|
|
if err != nil {
|
2021-12-30 21:07:39 +00:00
|
|
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
2022-08-14 22:36:55 +00:00
|
|
|
|
_, _ = io.WriteString(w, viewutil.Base(viewutil.MetaFrom(w, rq), err.Error(), LoginError(err.Error(), lc), map[string]string{}))
|
2021-12-30 21:07:39 +00:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
http.Redirect(w, rq, "/", http.StatusSeeOther)
|
2021-05-09 11:09:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-14 19:51:55 +00:00
|
|
|
|
func handlerTelegramLogin(w http.ResponseWriter, rq *http.Request) {
|
|
|
|
|
// Note there is no lock here.
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc := l18n.FromRequest(rq)
|
2021-07-14 20:04:52 +00:00
|
|
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
2021-07-14 19:51:55 +00:00
|
|
|
|
rq.ParseForm()
|
|
|
|
|
var (
|
2021-07-15 17:46:35 +00:00
|
|
|
|
values = rq.URL.Query()
|
|
|
|
|
username = strings.ToLower(values.Get("username"))
|
2021-07-14 19:51:55 +00:00
|
|
|
|
seemsValid = user.TelegramAuthParamsAreValid(values)
|
2021-07-15 17:46:35 +00:00
|
|
|
|
err = user.Register(
|
2021-07-14 19:51:55 +00:00
|
|
|
|
username,
|
|
|
|
|
"", // Password matters not
|
2021-07-14 21:00:35 +00:00
|
|
|
|
"editor",
|
2021-07-14 19:51:55 +00:00
|
|
|
|
"telegram",
|
|
|
|
|
false,
|
|
|
|
|
)
|
|
|
|
|
)
|
2023-02-25 20:38:38 +00:00
|
|
|
|
// If registering a user via Telegram failed, because a Telegram user with this name
|
|
|
|
|
// has already registered, then everything is actually ok!
|
2021-10-01 17:12:16 +00:00
|
|
|
|
if user.HasUsername(username) && user.ByName(username).Source == "telegram" {
|
2021-07-14 19:51:55 +00:00
|
|
|
|
err = nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !seemsValid {
|
|
|
|
|
err = errors.New("Wrong parameters")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Printf("Failed to register ‘%s’ using Telegram: %s", username, err.Error())
|
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
2021-12-30 21:07:39 +00:00
|
|
|
|
_, _ = io.WriteString(
|
2021-07-14 19:51:55 +00:00
|
|
|
|
w,
|
2022-08-06 11:35:17 +00:00
|
|
|
|
viewutil.Base(
|
2022-04-01 19:51:15 +00:00
|
|
|
|
viewutil.MetaFrom(w, rq),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("ui.error"),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
fmt.Sprintf(
|
2021-09-06 17:46:34 +00:00
|
|
|
|
`<main class="main-width"><p>%s</p><p>%s</p><p><a href="/login">%s<a></p></main>`,
|
|
|
|
|
lc.Get("auth.error_telegram"),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
err.Error(),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("auth.go_login"),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
),
|
2022-08-14 22:36:55 +00:00
|
|
|
|
map[string]string{},
|
2021-07-14 19:51:55 +00:00
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-17 13:31:12 +00:00
|
|
|
|
errmsg := user.LoginDataHTTP(w, username, "")
|
|
|
|
|
if errmsg != nil {
|
2021-07-14 19:51:55 +00:00
|
|
|
|
log.Printf("Failed to login ‘%s’ using Telegram: %s", username, err.Error())
|
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
2021-12-30 21:07:39 +00:00
|
|
|
|
_, _ = io.WriteString(
|
2021-07-14 19:51:55 +00:00
|
|
|
|
w,
|
2022-08-06 11:35:17 +00:00
|
|
|
|
viewutil.Base(
|
2022-04-01 19:51:15 +00:00
|
|
|
|
viewutil.MetaFrom(w, rq),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
"Error",
|
|
|
|
|
fmt.Sprintf(
|
2021-09-06 17:46:34 +00:00
|
|
|
|
`<main class="main-width"><p>%s</p><p>%s</p><p><a href="/login">%s<a></p></main>`,
|
|
|
|
|
lc.Get("auth.error_telegram"),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
err.Error(),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("auth.go_login"),
|
2021-07-14 19:51:55 +00:00
|
|
|
|
),
|
2022-08-14 22:36:55 +00:00
|
|
|
|
map[string]string{},
|
2021-07-14 19:51:55 +00:00
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
log.Printf("Authorize ‘%s’ from Telegram", username)
|
|
|
|
|
http.Redirect(w, rq, "/", http.StatusSeeOther)
|
|
|
|
|
}
|