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
89
90
|
/*
* OpenBills - Self hosted browser app to generate and keep track of simple invoices
* Version - 0
* Licensed under the MIT license - https://opensource.org/licenses/MIT
*
* Copyright (c) 2021 Vidhu Kant Sharma
*/
// backend for OpenBills
// currently HIGHLY under development
package main
import (
"github.com/gin-gonic/gin"
"github.com/gin-gonic/contrib/static"
"net/http"
"strconv"
db "github.com/MikunoNaka/openbills/database"
)
func main() {
db.StartDB()
myRouter := gin.New()
myRouter.Use(gin.Logger())
// serve static front end on /
myRouter.Use(static.Serve("/",
static.LocalFile("./app", true)))
// define routes
api := myRouter.Group("/api")
people := api.Group("/people")
items := api.Group("/items")
// items API routes
items.GET("/", getAllItems)
items.POST("/", registerItem)
// people API routes
people.GET("/", getAllPeople)
people.POST("/", registerPerson)
myRouter.Run(":8080")
}
// items API functions
func getAllItems(ctx *gin.Context) {
ctx.Header("Content-Type", "application/json")
ctx.JSON(http.StatusOK, db.GetAllItems())
}
func registerItem(ctx *gin.Context) {
// extract data not string
price, _ := strconv.ParseFloat(ctx.Query("price"), 64)
hsn, _ := strconv.Atoi(ctx.Query("hsn"))
gst, _ := strconv.ParseFloat(ctx.Query("gst"), 64)
cat := "cat coming soon"
brand := "brand coming soon"
item := db.Item {
Model: ctx.Query("model"),
Desc: ctx.Query("desc"),
Price: price,
HSN: hsn,
GST: gst,
Cat: cat,
Brand: brand,
}
db.RegisterItem(item)
}
// people API functions
func getAllPeople(ctx *gin.Context) {
ctx.Header("Content-Type", "application/json")
ctx.JSON(http.StatusOK, db.GetAllPeople())
}
func registerPerson(ctx *gin.Context) {
person := db.Person {
Name: ctx.Query("name"),
Phone: ctx.Query("phone"),
Email: ctx.Query("email"),
}
db.RegisterPerson(person)
}
|