package app import ( "errors" "net/http" "strings" "time" "golang.org/x/crypto/bcrypt" ) func (a *App) handleLogin(w http.ResponseWriter, r *http.Request) { var req struct { Email string `json:"email"` Password string `json:"password"` TurnstileToken string `json:"turnstileToken"` ChallengeToken string `json:"challengeToken"` TwoFactorCode string `json:"twoFactorCode"` } if err := decodeJSON(r, &req); err != nil { badRequest(w, err) return } if strings.TrimSpace(req.ChallengeToken) != "" { challenge, err := a.loginChallengeByToken(r.Context(), req.ChallengeToken) if err != nil { respondError(w, http.StatusUnauthorized, "invalid verification challenge") return } user, secret, err := a.loadUserAuthByID(r.Context(), challenge.UserID) if err != nil || user.Disabled || !user.TwoFactorEnabled || strings.TrimSpace(secret) == "" { a.deleteLoginChallenge(r.Context(), challenge.ID) respondError(w, http.StatusUnauthorized, "invalid verification challenge") return } if !verifyTOTP(secret, req.TwoFactorCode, a.now().UTC()) { respondError(w, http.StatusUnauthorized, "invalid verification code") return } a.deleteLoginChallenge(r.Context(), challenge.ID) if err := a.issueSession(w, r, user.ID); err != nil { respondError(w, http.StatusInternalServerError, "failed to create session") return } respondJSON(w, http.StatusOK, map[string]any{"user": user}) return } if err := a.verifyTurnstile(r.Context(), req.TurnstileToken, r.RemoteAddr); err != nil { respondError(w, http.StatusUnauthorized, "human verification failed") return } email := normalizeEmail(req.Email) user, passwordHash, err := a.userByEmail(r.Context(), email) if err != nil || user.Disabled { respondError(w, http.StatusUnauthorized, "invalid email or password") return } if err := bcrypt.CompareHashAndPassword([]byte(passwordHash), []byte(req.Password)); err != nil { respondError(w, http.StatusUnauthorized, "invalid email or password") return } if a.cfg.TwoFactorEnabled && user.TwoFactorEnabled { challengeToken, err := a.createLoginChallenge(r.Context(), user.ID) if err != nil { respondError(w, http.StatusInternalServerError, "failed to create verification challenge") return } respondJSON(w, http.StatusOK, map[string]any{"twoFactorRequired": true, "challengeToken": challengeToken}) return } if err := a.issueSession(w, r, user.ID); err != nil { respondError(w, http.StatusInternalServerError, "failed to create session") return } respondJSON(w, http.StatusOK, map[string]any{"user": user}) } func (a *App) handleRegister(w http.ResponseWriter, r *http.Request) { if !a.cfg.OpenRegistration { respondError(w, http.StatusForbidden, "registration is closed") return } var req struct { Email string `json:"email"` DisplayName string `json:"displayName"` Password string `json:"password"` TurnstileToken string `json:"turnstileToken"` } if err := decodeJSON(r, &req); err != nil { badRequest(w, err) return } if err := a.verifyTurnstile(r.Context(), req.TurnstileToken, r.RemoteAddr); err != nil { respondError(w, http.StatusUnauthorized, "human verification failed") return } email := normalizeEmail(req.Email) if email == "" || !strings.Contains(email, "@") { badRequest(w, errors.New("invalid email")) return } if len(req.Password) < 8 { badRequest(w, errors.New("password must be at least 8 characters")) return } displayName := strings.TrimSpace(req.DisplayName) if displayName == "" { displayName = strings.Split(email, "@")[0] } if len([]rune(displayName)) > 80 { badRequest(w, errors.New("displayName must be at most 80 characters")) return } if _, _, err := a.userByEmail(r.Context(), email); err == nil { respondError(w, http.StatusConflict, "email already registered") return } else if !errors.Is(err, errNotFound) { respondError(w, http.StatusInternalServerError, "failed to check user") return } passwordHash, err := bcrypt.GenerateFromPassword([]byte(req.Password), bcrypt.DefaultCost) if err != nil { respondError(w, http.StatusInternalServerError, "failed to hash password") return } now := a.now().UTC().Format(time.RFC3339Nano) userID := newID("usr") if _, err := a.db.ExecContext(r.Context(), `INSERT INTO users(id,email,display_name,role,password_hash,disabled,created_at,updated_at) VALUES(?,?,?,?,?,?,?,?)`, userID, email, displayName, "user", string(passwordHash), 0, now, now); err != nil { if strings.Contains(strings.ToLower(err.Error()), "unique") { respondError(w, http.StatusConflict, "email already registered") return } respondError(w, http.StatusInternalServerError, "failed to create user") return } user, err := a.userByID(r.Context(), userID) if err != nil { respondError(w, http.StatusInternalServerError, "failed to load user") return } if err := a.issueSession(w, r, user.ID); err != nil { respondError(w, http.StatusInternalServerError, "failed to create session") return } respondJSON(w, http.StatusCreated, map[string]any{"user": user}) } func (a *App) handleLogout(w http.ResponseWriter, r *http.Request) { if cookie, err := r.Cookie(a.cfg.CookieName); err == nil { _, _ = a.db.ExecContext(r.Context(), `DELETE FROM sessions WHERE token_hash=?`, hashToken(cookie.Value)) } http.SetCookie(w, &http.Cookie{Name: a.cfg.CookieName, Value: "", Path: "/", MaxAge: -1, HttpOnly: true, SameSite: http.SameSiteLaxMode}) respondJSON(w, http.StatusOK, map[string]any{"ok": true}) } func (a *App) handleMe(w http.ResponseWriter, r *http.Request) { respondJSON(w, http.StatusOK, map[string]any{"user": currentUser(r)}) } func (a *App) handleUpdateProfile(w http.ResponseWriter, r *http.Request) { user := currentUser(r) var req struct { DisplayName string `json:"displayName"` } if err := decodeJSON(r, &req); err != nil { badRequest(w, err) return } displayName := strings.TrimSpace(req.DisplayName) if displayName == "" { badRequest(w, errors.New("displayName is required")) return } if len([]rune(displayName)) > 80 { badRequest(w, errors.New("displayName must be at most 80 characters")) return } _, err := a.db.ExecContext(r.Context(), `UPDATE users SET display_name=?, updated_at=? WHERE id=?`, displayName, a.now().UTC().Format(time.RFC3339Nano), user.ID) if err != nil { respondError(w, http.StatusInternalServerError, "failed to update profile") return } updated, err := a.userByID(r.Context(), user.ID) if err != nil { respondError(w, http.StatusInternalServerError, "failed to load profile") return } respondJSON(w, http.StatusOK, map[string]any{"user": updated}) } func (a *App) handleChangePassword(w http.ResponseWriter, r *http.Request) { user := currentUser(r) var req struct { CurrentPassword string `json:"currentPassword"` NewPassword string `json:"newPassword"` } if err := decodeJSON(r, &req); err != nil { badRequest(w, err) return } if len(req.NewPassword) < 8 { badRequest(w, errors.New("newPassword must be at least 8 characters")) return } row := a.db.QueryRowContext(r.Context(), `SELECT password_hash FROM users WHERE id=?`, user.ID) var currentHash string if err := row.Scan(¤tHash); err != nil { respondError(w, http.StatusInternalServerError, "failed to load user") return } if err := bcrypt.CompareHashAndPassword([]byte(currentHash), []byte(req.CurrentPassword)); err != nil { respondError(w, http.StatusUnauthorized, "current password is incorrect") return } newHash, err := bcrypt.GenerateFromPassword([]byte(req.NewPassword), bcrypt.DefaultCost) if err != nil { respondError(w, http.StatusInternalServerError, "failed to hash password") return } now := a.now().UTC().Format(time.RFC3339Nano) tx, err := a.db.BeginTx(r.Context(), nil) if err != nil { respondError(w, http.StatusInternalServerError, "failed to start transaction") return } defer tx.Rollback() if _, err := tx.ExecContext(r.Context(), `UPDATE users SET password_hash=?, updated_at=? WHERE id=?`, string(newHash), now, user.ID); err != nil { respondError(w, http.StatusInternalServerError, "failed to update password") return } if _, err := tx.ExecContext(r.Context(), `UPDATE mailboxes SET password_hash=?, updated_at=? WHERE user_id=?`, string(newHash), now, user.ID); err != nil { respondError(w, http.StatusInternalServerError, "failed to update mailbox password") return } if err := tx.Commit(); err != nil { respondError(w, http.StatusInternalServerError, "failed to save password") return } respondJSON(w, http.StatusOK, map[string]any{"ok": true}) }