mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
113 lines
3.2 KiB
Go
113 lines
3.2 KiB
Go
package user
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/bouncepaw/mycorrhiza/cfg"
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/bouncepaw/mycorrhiza/util"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
// CanProceed returns `true` if the user in `rq` has enough rights to access `route`.
|
|
func CanProceed(rq *http.Request, route string) bool {
|
|
return FromRequest(rq).CanProceed(route)
|
|
}
|
|
|
|
// FromRequest returns user from `rq`. If there is no user, an anon user is returned instead.
|
|
func FromRequest(rq *http.Request) *User {
|
|
cookie, err := rq.Cookie("mycorrhiza_token")
|
|
if err != nil {
|
|
return EmptyUser()
|
|
}
|
|
return userByToken(cookie.Value)
|
|
}
|
|
|
|
// LogoutFromRequest logs the user in `rq` out and rewrites the cookie in `w`.
|
|
func LogoutFromRequest(w http.ResponseWriter, rq *http.Request) {
|
|
cookieFromUser, err := rq.Cookie("mycorrhiza_token")
|
|
if err == nil {
|
|
http.SetCookie(w, cookie("token", "", time.Unix(0, 0)))
|
|
terminateSession(cookieFromUser.Value)
|
|
}
|
|
}
|
|
|
|
// Register registers the given user. If it fails, a non-nil error is returned.
|
|
func Register(username, password string) error {
|
|
username = util.CanonicalName(username)
|
|
log.Println("Attempt to register user", username)
|
|
switch {
|
|
case CountRegistered() >= cfg.LimitRegistration && cfg.LimitRegistration > 0:
|
|
i := strconv.Itoa(cfg.LimitRegistration)
|
|
log.Println("Limit reached: " + i)
|
|
return errors.New("Reached the limit of registered users: " + i)
|
|
case HasUsername(username):
|
|
log.Println("Username taken")
|
|
return errors.New("Username " + username + " is taken already.")
|
|
case !util.IsPossibleUsername(username):
|
|
log.Println("Illegal username:", username)
|
|
}
|
|
hash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
u := User{
|
|
Name: username,
|
|
Group: "editor",
|
|
HashedPassword: string(hash),
|
|
Source: SourceRegistration,
|
|
}
|
|
users.Store(username, &u)
|
|
err = dumpRegistrationCredentials()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// LoginDataHTTP logs such user in and returns string representation of an error if there is any.
|
|
func LoginDataHTTP(w http.ResponseWriter, rq *http.Request, username, password string) string {
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
|
if !HasUsername(username) {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
log.Println("Unknown username", username, "was entered")
|
|
return "unknown username"
|
|
}
|
|
if !CredentialsOK(username, password) {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
log.Println("A wrong password was entered for username", username)
|
|
return "wrong password"
|
|
}
|
|
token, err := AddSession(username)
|
|
if err != nil {
|
|
log.Println(err)
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return err.Error()
|
|
}
|
|
http.SetCookie(w, cookie("token", token, time.Now().Add(365*24*time.Hour)))
|
|
return ""
|
|
}
|
|
|
|
// AddSession saves a session for `username` and returns a token to use.
|
|
func AddSession(username string) (string, error) {
|
|
token, err := util.RandomString(16)
|
|
if err == nil {
|
|
commenceSession(username, token)
|
|
log.Println("New token for", username, "is", token)
|
|
}
|
|
return token, err
|
|
}
|
|
|
|
// A handy cookie constructor
|
|
func cookie(name_suffix, val string, t time.Time) *http.Cookie {
|
|
return &http.Cookie{
|
|
Name: "mycorrhiza_" + name_suffix,
|
|
Value: val,
|
|
Expires: t,
|
|
Path: "/",
|
|
}
|
|
}
|