happyDomain/api/users.go
2021-05-20 10:22:10 +02:00

429 lines
12 KiB
Go

// Copyright or © or Copr. happyDNS (2020)
//
// contact@happydns.org
//
// This software is a computer program whose purpose is to provide a modern
// interface to interact with DNS systems.
//
// This software is governed by the CeCILL license under French law and abiding
// by the rules of distribution of free software. You can use, modify and/or
// redistribute the software under the terms of the CeCILL license as
// circulated by CEA, CNRS and INRIA at the following URL
// "http://www.cecill.info".
//
// As a counterpart to the access to the source code and rights to copy, modify
// and redistribute granted by the license, users are provided only with a
// limited warranty and the software's author, the holder of the economic
// rights, and the successive licensors have only limited liability.
//
// In this respect, the user's attention is drawn to the risks associated with
// loading, using, modifying and/or developing or reproducing the software by
// the user in light of its specific status of free software, that may mean
// that it is complicated to manipulate, and that also therefore means that it
// is reserved for developers and experienced professionals having in-depth
// computer knowledge. Users are therefore encouraged to load and test the
// software's suitability as regards their requirements in conditions enabling
// the security of their systems and/or data to be ensured and, more generally,
// to use and operate it in the same conditions as regards security.
//
// The fact that you are presently reading this means that you have had
// knowledge of the CeCILL license and that you accept its terms.
package api
import (
"encoding/json"
"errors"
"fmt"
"io"
"log"
"net/http"
"strconv"
"strings"
"time"
"github.com/julienschmidt/httprouter"
"git.happydns.org/happydns/actions"
"git.happydns.org/happydns/config"
"git.happydns.org/happydns/model"
"git.happydns.org/happydns/storage"
)
func init() {
router.GET("/api/session", apiAuthHandler(getSession))
router.DELETE("/api/session", apiAuthHandler(clearSession))
router.POST("/api/users", ApiHandler(registerUser))
router.PATCH("/api/users", ApiHandler(specialUserOperations))
router.GET("/api/users/:uid", apiAuthHandler(sameUserHandler(getUser)))
router.GET("/api/users/:uid/settings", apiAuthHandler(sameUserHandler(getUserSettings)))
router.POST("/api/users/:uid/settings", apiAuthHandler(sameUserHandler(changeUserSettings)))
router.POST("/api/users/:uid/delete", apiAuthHandler(sameUserHandler(deleteUser)))
router.POST("/api/users/:uid/email", ApiHandler(userHandler(validateUserAddress)))
router.POST("/api/users/:uid/new_password", apiAuthHandler(sameUserHandler(changePassword)))
router.POST("/api/users/:uid/recovery", ApiHandler(userHandler(recoverUserAccount)))
}
type UploadedUser struct {
Kind string
Email string
Password string
Language string `json:"lang,omitempty"`
Newsletter bool `json:"wantReceiveUpdate,omitempty"`
}
func registerUser(opts *config.Options, p httprouter.Params, body io.Reader) Response {
var uu UploadedUser
err := json.NewDecoder(body).Decode(&uu)
if err != nil {
return APIErrorResponse{
err: fmt.Errorf("Something is wrong in received data: %w", err),
}
}
if len(uu.Email) <= 3 || strings.Index(uu.Email, "@") == -1 {
return APIErrorResponse{
err: errors.New("The given email is invalid."),
}
}
if len(uu.Password) <= 7 {
return APIErrorResponse{
err: errors.New("The given password is invalid."),
}
}
if storage.MainStore.UserExists(uu.Email) {
return APIErrorResponse{
err: errors.New("An account already exists with the given address. Try login now."),
}
}
if user, err := happydns.NewUser(uu.Email, uu.Password); err != nil {
return APIErrorResponse{
err: err,
}
} else {
user.Settings = *happydns.DefaultUserSettings()
user.Settings.Language = uu.Language
user.Settings.Newsletter = uu.Newsletter
if err := storage.MainStore.CreateUser(user); err != nil {
return APIErrorResponse{
err: err,
}
} else if actions.SendValidationLink(opts, user); err != nil {
return APIErrorResponse{
err: err,
}
} else {
log.Printf("New user registerd: %s", user.Email)
return APIResponse{
response: user,
}
}
}
}
func specialUserOperations(opts *config.Options, p httprouter.Params, body io.Reader) Response {
var uu UploadedUser
err := json.NewDecoder(body).Decode(&uu)
if err != nil {
return APIErrorResponse{
err: fmt.Errorf("Something is wrong in received data: %w", err),
}
}
res := APIErrorResponse{
err: errors.New("If this address exists in our database, you'll receive a new e-mail."),
status: http.StatusOK,
}
if user, err := storage.MainStore.GetUserByEmail(uu.Email); err != nil {
res.cause = err
return res
} else {
if uu.Kind == "recovery" {
if user.EmailValidated == nil {
if err = actions.SendValidationLink(opts, user); err != nil {
return APIErrorResponse{
err: err,
}
}
log.Printf("Sent validation link to: %s", user.Email)
} else {
if err = actions.SendRecoveryLink(opts, user); err != nil {
return APIErrorResponse{
err: err,
}
} else if err := storage.MainStore.UpdateUser(user); err != nil {
return APIErrorResponse{
err: fmt.Errorf("An error occurs when trying to recover your account: %w", err),
}
}
log.Printf("Sent recovery link to: %s", user.Email)
}
} else if uu.Kind == "validation" {
if user.EmailValidated != nil {
return res
} else if err = actions.SendValidationLink(opts, user); err != nil {
return APIErrorResponse{
err: err,
}
}
log.Printf("Sent validation link to: %s", user.Email)
}
}
return res
}
func sameUserHandler(f func(*config.Options, *RequestResources, io.Reader) Response) func(*config.Options, *RequestResources, io.Reader) Response {
return func(opts *config.Options, req *RequestResources, body io.Reader) Response {
if uid, err := strconv.ParseInt(req.Ps.ByName("uid"), 16, 64); err != nil {
return APIErrorResponse{
status: http.StatusNotFound,
err: fmt.Errorf("Invalid user identifier given: %w", err),
}
} else if uid != req.User.Id {
return APIErrorResponse{
status: http.StatusNotFound,
err: errors.New("User not found"),
}
} else {
return f(opts, req, body)
}
}
}
func getUser(opts *config.Options, req *RequestResources, _ io.Reader) Response {
return APIResponse{
response: req.User,
}
}
func getUserSettings(opts *config.Options, req *RequestResources, _ io.Reader) Response {
return APIResponse{
response: req.User.Settings,
}
}
func changeUserSettings(opts *config.Options, req *RequestResources, body io.Reader) Response {
var us happydns.UserSettings
if err := json.NewDecoder(body).Decode(&us); err != nil {
return APIErrorResponse{
err: err,
}
}
req.User.Settings = us
if err := storage.MainStore.UpdateUser(req.User); err != nil {
return APIErrorResponse{
err: err,
}
}
return APIResponse{
response: req.User.Settings,
}
}
type passwordForm struct {
Current string
Password string
PasswordConfirm string
}
func changePassword(opts *config.Options, req *RequestResources, body io.Reader) Response {
var lf passwordForm
if err := json.NewDecoder(body).Decode(&lf); err != nil {
return APIErrorResponse{
err: err,
}
}
if !req.User.CheckAuth(lf.Current) {
return APIErrorResponse{
err: errors.New(`Invalid password.`),
status: http.StatusForbidden,
}
}
if lf.Password != lf.PasswordConfirm {
return APIErrorResponse{
err: errors.New(`The new password and its confirmation are different.`),
}
}
if err := req.User.DefinePassword(lf.Password); err != nil {
return APIErrorResponse{
err: err,
}
}
var sessions []*happydns.Session
var err error
if sessions, err = storage.MainStore.GetUserSessions(req.User); err != nil {
return APIErrorResponse{
err: err,
}
}
if err = storage.MainStore.UpdateUser(req.User); err != nil {
return APIErrorResponse{
err: err,
}
}
log.Printf("Change password for user %s", req.User.Email)
for _, session := range sessions {
storage.MainStore.DeleteSession(session)
}
return logout(opts, req.Ps, body)
}
func deleteUser(opts *config.Options, req *RequestResources, body io.Reader) Response {
var lf passwordForm
if err := json.NewDecoder(body).Decode(&lf); err != nil {
return APIErrorResponse{
err: err,
}
}
if !req.User.CheckAuth(lf.Password) {
return APIErrorResponse{
err: errors.New(`Invalid password.`),
status: http.StatusForbidden,
}
}
var sessions []*happydns.Session
var err error
if sessions, err = storage.MainStore.GetUserSessions(req.User); err != nil {
return APIErrorResponse{
err: err,
}
}
if err = storage.MainStore.DeleteUser(req.User); err != nil {
return APIErrorResponse{
err: err,
}
}
log.Printf("User deleted: %s", req.User.Email)
for _, session := range sessions {
storage.MainStore.DeleteSession(session)
}
return logout(opts, req.Ps, body)
}
func userHandler(f func(*config.Options, *happydns.User, io.Reader) Response) func(*config.Options, httprouter.Params, io.Reader) Response {
return func(opts *config.Options, ps httprouter.Params, body io.Reader) Response {
if uid, err := strconv.ParseInt(ps.ByName("uid"), 16, 64); err != nil {
return APIErrorResponse{
status: http.StatusNotFound,
err: fmt.Errorf("Invalid user identifier given: %w", err),
}
} else if user, err := storage.MainStore.GetUser(uid); err != nil {
return APIErrorResponse{
status: http.StatusNotFound,
err: errors.New("User not found"),
}
} else {
return f(opts, user, body)
}
}
}
type UploadedAddressValidation struct {
Key string
}
func validateUserAddress(opts *config.Options, user *happydns.User, body io.Reader) Response {
var uav UploadedAddressValidation
err := json.NewDecoder(body).Decode(&uav)
if err != nil {
return APIErrorResponse{
err: fmt.Errorf("Something is wrong in received data: %w", err),
}
}
if err := user.ValidateEmail(uav.Key); err != nil {
return APIErrorResponse{
err: err,
}
} else if err := storage.MainStore.UpdateUser(user); err != nil {
return APIErrorResponse{
status: http.StatusNotFound,
err: errors.New("User not found"),
}
} else {
return APIResponse{
response: true,
}
}
}
type UploadedAccountRecovery struct {
Key string
Password string
}
func recoverUserAccount(opts *config.Options, user *happydns.User, body io.Reader) Response {
var uar UploadedAccountRecovery
err := json.NewDecoder(body).Decode(&uar)
if err != nil {
return APIErrorResponse{
err: fmt.Errorf("Something is wrong in received data: %w", err),
}
}
if user.RegistrationTime == nil {
now := time.Now()
user.RegistrationTime = &now
}
if err := user.CanRecoverAccount(uar.Key); err != nil {
return APIErrorResponse{
err: err,
}
} else if len(uar.Password) == 0 {
return APIResponse{
response: false,
}
} else if err := user.DefinePassword(uar.Password); err != nil {
return APIErrorResponse{
err: err,
}
} else if err := storage.MainStore.UpdateUser(user); err != nil {
return APIErrorResponse{
status: http.StatusNotFound,
err: errors.New("User not found"),
}
} else {
log.Printf("User recovered: %s", user.Email)
return APIResponse{
response: true,
}
}
}
func getSession(opts *config.Options, req *RequestResources, body io.Reader) Response {
return APIResponse{
response: req.Session,
}
}
func clearSession(opts *config.Options, req *RequestResources, body io.Reader) Response {
req.Session.ClearSession()
return APIResponse{
response: true,
}
}