DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 536e2fa1e10e5eae8f9cd864071903a51525529c felu/internal/api/update.go -rw-r--r-- 1.1 KiB
536e2fa1Jonni Liljamo fix: api key query param in update docs 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
/*
 * 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 api

import (
	"net/http"

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

func UpdateA() gin.HandlerFunc {
	return func(c *gin.Context) {
		domain := c.Query("domain")
		if domain == "" {
			c.JSON(http.StatusBadRequest, gin.H{
				"status": "error",
				"error": "no domain was provided",
			})
			c.Abort()
			return
		}

		apiKey := c.Query("api_key")
		if apiKey == "" {
			c.JSON(http.StatusBadRequest, gin.H{
				"status": "error",
				"error": "no api key was provided",
			})
			c.Abort()
			return
		}

		aRecord := c.Query("record")
		if aRecord == "" {
			aRecord = c.ClientIP()
		}

		err := db.UpdateDomainARecord(domain, apiKey, aRecord)
		if err != nil {
			// FIXME: Handle better, "bad api key" is just the most likely scenario
			c.JSON(http.StatusBadRequest, gin.H{
				"status": "error",
				"error": "bad api key",
			})
			c.Abort()
			return
		}

		c.JSON(http.StatusOK, gin.H{
			"status": "success",
			"a_record": aRecord,
		})
	}
}