DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 0ef60cda78aa255496bee7d1b212f31016a78dd9 felu/handlers/login.go -rw-r--r-- 958 bytes
0ef60cdaJonni Liljamo feat: components in multiple files, and i think all endpoints initialized 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * This file is licensed under AGPL-3.0-or-later, see NOTICE and LICENSE for
 * more information.
 */
package handlers

import (
	"log"
	"net/http"

	"git.src.quest/~skye/felu-ddns/db"
	"github.com/alexedwards/scs/v2"
	"github.com/gin-gonic/gin"
)

type postLoginDetails struct {
	Email    string `form:"email"`
	Password string `form:"password"`
}

func AuthLogin(sm *scs.SessionManager, c *gin.Context) {
	data := &postLoginDetails{}
	if err := c.Bind(data); err != nil {
		log.Printf("[felu] ERROR: Could not bind login details: %v", err)
		c.String(http.StatusBadRequest, "Could not bind login details")
		return
	}

	user, err := db.FetchUserWithCreds(data.Email, data.Password)
	if err != nil {
		c.String(http.StatusUnauthorized, err.Error())
		return
	}

	sm.Put(c.Request.Context(), "user_id", user.Ulid)

	c.Header("HX-Redirect", "/manage")
	//c.Redirect(http.StatusFound, "/manage")
}