forked from AMS003010/ArcList
-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.go
233 lines (198 loc) · 5.25 KB
/
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package main
import (
"database/sql"
"encoding/json"
"html/template"
"log"
"net/http"
_ "github.com/mattn/go-sqlite3"
)
type Todo struct {
ID int
Task string
Position int
}
var db *sql.DB
var tpl *template.Template
func init() {
tpl = template.Must(template.ParseGlob("templates/*.html"))
}
func main() {
// Open SQLite database
var err error
db, err = sql.Open("sqlite3", "./sqlite.db")
if err != nil {
log.Fatal(err)
}
defer db.Close()
// Initialize the database
createTable()
// Route handlers
http.HandleFunc("/", indexHandler)
http.HandleFunc("/add", addHandler)
http.HandleFunc("/delete", deleteHandler)
http.HandleFunc("/edit/", editHandler)
http.HandleFunc("/update", updateHandler)
http.HandleFunc("/updateOrder", updateOrderHandler)
http.HandleFunc("/search", searchHandler)
log.Println("Server started at http://localhost:8080")
http.ListenAndServe(":8080", nil)
}
func createTable() {
query := `
CREATE TABLE IF NOT EXISTS todos (
id INTEGER PRIMARY KEY AUTOINCREMENT,
task TEXT,
position INTEGER
);
`
_, err := db.Exec(query)
if err != nil {
log.Fatal(err)
}
// Ensure the position column is populated
migrateAddPositionColumn()
}
// Migrate to add 'position' column if it doesn't exist
func migrateAddPositionColumn() {
_, err := db.Query("SELECT position FROM todos LIMIT 1")
if err != nil {
_, err = db.Exec("ALTER TABLE todos ADD COLUMN position INTEGER")
if err != nil {
log.Fatal(err)
}
_, err = db.Exec("UPDATE todos SET position = id WHERE position IS NULL")
if err != nil {
log.Fatal(err)
}
}
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
rows, err := db.Query("SELECT id, task, position FROM todos ORDER BY position")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer rows.Close()
var todos []Todo
for rows.Next() {
var todo Todo
rows.Scan(&todo.ID, &todo.Task, &todo.Position)
todos = append(todos, todo)
}
tpl.ExecuteTemplate(w, "index.html", todos)
}
func addHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodPost {
task := r.FormValue("task")
if task != "" {
_, err := db.Exec("INSERT INTO todos (task, position) VALUES (?, (SELECT COALESCE(MAX(position), 0) + 1 FROM todos))", task)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
renderTaskList(w)
}
}
func deleteHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodPost {
id := r.FormValue("id")
if id != "" {
_, err := db.Exec("DELETE FROM todos WHERE id = ?", id)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
renderTaskList(w)
}
}
func editHandler(w http.ResponseWriter, r *http.Request) {
id := r.URL.Path[len("/edit/"):]
var todo Todo
err := db.QueryRow("SELECT id, task, position FROM todos WHERE id = ?", id).Scan(&todo.ID, &todo.Task, &todo.Position)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
tpl.ExecuteTemplate(w, "edit.html", todo)
}
func updateHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodPost {
id := r.FormValue("id")
task := r.FormValue("task")
if id != "" && task != "" {
_, err := db.Exec("UPDATE todos SET task = ? WHERE id = ?", task, id)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
renderTaskList(w)
}
}
}
func searchHandler(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query().Get("query")
rows, err := db.Query("SELECT id, task, position FROM todos WHERE task LIKE ? ORDER BY position", "%"+query+"%")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer rows.Close()
var todos []Todo
for rows.Next() {
var todo Todo
rows.Scan(&todo.ID, &todo.Task, &todo.Position)
todos = append(todos, todo)
}
tpl.ExecuteTemplate(w, "tasklist", todos)
}
// Update task order based on drag-and-drop
func updateOrderHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodPost {
var request struct {
Order []int `json:"order"`
}
err := json.NewDecoder(r.Body).Decode(&request)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
tx, err := db.Begin()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
for i, id := range request.Order {
_, err := tx.Exec("UPDATE todos SET position = ? WHERE id = ?", i+1, id)
if err != nil {
tx.Rollback()
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
err = tx.Commit()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
json.NewEncoder(w).Encode(map[string]string{"status": "success"})
}
}
func renderTaskList(w http.ResponseWriter) {
rows, err := db.Query("SELECT id, task, position FROM todos ORDER BY position")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer rows.Close()
var todos []Todo
for rows.Next() {
var todo Todo
rows.Scan(&todo.ID, &todo.Task, &todo.Position)
todos = append(todos, todo)
}
tpl.ExecuteTemplate(w, "tasklist", todos)
}