DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 0.1.1 felu/internal/handlers/domains.go -rw-r--r-- 2.0 KiB
129b1c96Jonni Liljamo feat: some logging improvements 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * 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 (
	"net"
	"net/http"
	"regexp"
	"strings"

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

type postDomainData struct {
	Domain  string `form:"domain"`
	ARecord string `form:"a_record"`
}

func PostDomain() gin.HandlerFunc {
	return func(c *gin.Context) {
		data := &postDomainData{}
		if err := c.Bind(data); err != nil {
			c.String(http.StatusBadRequest, "Could not bind domain data")
			c.Abort()
			return
		}

		if data.Domain == "" {
			c.String(http.StatusBadRequest, "Domain can't be empty")
			c.Abort()
			return
		}
		if strings.Contains(data.Domain, ".") {
			c.String(http.StatusBadRequest, "Domain can't contain full stops")
			c.Abort()
			return
		}
		// NOTE: I doubt doing a little regex here will matter, just the easiest for now.
		if !regexp.MustCompile(`^[A-Za-z0-9]*$`).MatchString(data.Domain) {
			c.String(http.StatusBadRequest, "Domain contains invalid chars")
			c.Abort()
			return
		}
		if net.ParseIP(data.ARecord).To4() == nil {
			c.String(http.StatusBadRequest, "The A record is invalid")
			c.Abort()
			return
		}

		userId, exists := c.Get("user_id")
		if !exists {
			c.String(http.StatusInternalServerError, "This should not be possible, but don't quote me on that")
			c.Abort()
			return
		}

		err := db.CreateDomain(data.Domain, data.ARecord, userId.(string))
		if err != nil {
			// FIXME: Handle better
			c.String(http.StatusInternalServerError, "Something went wrong while creating a new domain")
			c.Abort()
			return
		}

		c.Header("HX-Trigger", "update-domain-list")
	}
}

func DeleteDomain() gin.HandlerFunc {
	return func(c *gin.Context) {
		id := c.Param("id")

		err := db.DeleteDomain(id)
		if err != nil {
			// FIXME: Handle better
			c.String(http.StatusInternalServerError, "Something went wrong while deleting the domain")
			c.Abort()
			return
		}

		c.Header("HX-Trigger", "update-domain-list")
	}
}