使用 Gin 1.3 實作「To-Do List」應用程式

環境

  • macOS

做法

安裝 gin-gonic/gin 包。

1
go get -u github.com/gin-gonic/gin

新增 main.go 檔。

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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package main

import (
"net/http"

"./helpers"
"github.com/gin-gonic/gin"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite"
)

var db *gorm.DB
var err error

type (
Todo struct {
gorm.Model
Title string `json:"title"`
Completed int `json:"completed"`
}
)

func main() {
// 資料庫連線
db, err = gorm.Open("sqlite3", "./gorm.db")
if err != nil {
panic(err)
}
defer db.Close()

// 自動遷移
db.AutoMigrate(&Todo{})

// 創建應用
app := gin.Default()

// 定義路由
app.GET("/", fetchTodos)
app.POST("/", storeTodo)
app.GET("/:id", fetchTodo)
app.PATCH("/:id", updateTodo)
app.DELETE("/:id", destroyTodo)

// 啟動服務
app.Run(":3000")
}

func fetchTodos(c *gin.Context) {
var todos []Todo

db.Find(&todos)

if len(todos) == 0 {
c.JSON(http.StatusNotFound, gin.H{
"status": http.StatusNotFound,
"message": "No todo found.",
})
return
}

c.JSON(http.StatusOK, gin.H{
"status": http.StatusOK,
"data": todos,
})
}

func storeTodo(c *gin.Context) {
todo := Todo{
Title: c.PostForm("title"),
Completed: helpers.StringToBinary(c.PostForm("completed")),
}

db.Save(&todo)

c.JSON(http.StatusCreated, gin.H{
"status": http.StatusCreated,
"data": todo,
})
}

func fetchTodo(c *gin.Context) {
var todo Todo

db.First(&todo, c.Param("id"))

if todo.ID == 0 {
c.JSON(http.StatusNotFound, gin.H{
"status": http.StatusNotFound,
"message": "No todo found.",
})
return
}

c.JSON(http.StatusOK, gin.H{
"status": http.StatusOK,
"data": todo,
})
}

func updateTodo(c *gin.Context) {
var todo Todo

db.First(&todo, c.Param("id"))

if todo.ID == 0 {
c.JSON(http.StatusNotFound, gin.H{
"status": http.StatusNotFound,
"message": "No todo found.",
})
return
}

db.Model(&todo).Updates(map[string]interface{}{
"title": c.PostForm("title"),
"completed": helpers.StringToBinary(c.PostForm("completed")),
})

c.JSON(http.StatusOK, gin.H{
"status": http.StatusOK,
"data": todo,
})
}

func destroyTodo(c *gin.Context) {
var todo Todo

db.First(&todo, c.Param("id"))

if todo.ID == 0 {
c.JSON(http.StatusNotFound, gin.H{
"status": http.StatusNotFound,
"message": "No todo found.",
})
return
}

db.Delete(&todo)

c.JSON(http.StatusNoContent, gin.H{
"status": http.StatusOK,
"data": todo,
})
}

helpers 資料夾新增 cast.go 檔。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package helpers

import (
"strconv"
)

// 將字串轉型為 0 或 1 數字
func StringToBinary(str string) int {
bin, _ := strconv.Atoi(str)
if bin > 0 {
bin = 1
}
return bin
}

執行應用。

1
go run main.go