forked from acmpesuecc/ArcList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
121 lines (102 loc) · 2.29 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
package main
import (
"database/sql"
"html/template"
"log"
"net/http"
_ "github.com/mattn/go-sqlite3"
)
type Todo struct {
ID int
Task string
}
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)
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
);
`
_, err := db.Exec(query)
if err != nil {
log.Fatal(err)
}
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
rows, err := db.Query("SELECT id, task FROM todos")
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)
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) VALUES (?)", 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 renderTaskList(w http.ResponseWriter) {
rows, err := db.Query("SELECT id, task FROM todos")
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)
todos = append(todos, todo)
}
tpl.ExecuteTemplate(w, "tasklist", todos)
}