summaryrefslogtreecommitdiff
path: root/brand/brand_router.go
blob: 74432dd7478cbaf0b502e4baa731a1c95e9d0778 (plain)
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
package brand

import (
	"github.com/gin-gonic/gin"
	"github.com/MikunoNaka/OpenBills-lib/brand"
	"log"
	"net/http"
)


func Routes(route *gin.Engine) {
	b := route.Group("/brand")
	{
		b.POST("/", func(ctx *gin.Context) {
			var x brand.Brand
			ctx.Bind(&x)
			err := x.Save()
			if err != nil {
				ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
				log.Printf("ERROR: Failed to add new brand \"%s\": %v", x.Name, err.Error())
			}

			log.Println("Added new brand to database: ", x.Name)
			ctx.JSON(http.StatusOK, nil)
		})

		b.DELETE("/", func(ctx *gin.Context) {
			var x brand.Brand
			ctx.Bind(&x)
			err := x.Delete()
			if err != nil {
				ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
				log.Printf("ERROR: Failed to delete brand \"%s\": %v", x.Name, err.Error())
			}

			log.Println("Delete brand: ", x.Name)
			ctx.JSON(http.StatusOK, nil)
		})
	}
}