-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_addPerson.go
61 lines (52 loc) · 1.42 KB
/
mod_addPerson.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
package main
import (
"database/sql"
_ "github.com/mattn/go-sqlite3"
"html/template"
"net/http"
)
func addPerson(w http.ResponseWriter, r *http.Request) {
//this must add at begin of every session code
c, err := r.Cookie("session")
if err != nil || c.Value == "" {
http.Error(w, "Session expired", 401)
return
}
//handle GET/POST methods
var b string
if r.Method == "POST" {
db, _ := sql.Open("sqlite3", "./foo.db")
defer db.Close()
//use HTML5 browser to have automatic form fields validation :)
q := `insert into person (name,age,address) values ("`
q += r.FormValue("name") + `",`
q += r.FormValue("age") + `,"`
q += r.FormValue("address") + `");`
//debug: show sql command
//println(q)
db.Exec(q)
defer db.Close()
http.Redirect(w, r, "/showPersons", http.StatusFound)
} else {
//build page content
b = `<pre>
This is also a module that works with forms.
Add a person
<form method="post" action="">
Name <input type="text" size=16 name="name" value="" autofocus>
Age <input type="number" size=3 name="age" min="1" max="100">
Address <input type="text" size=20 name="address" value="">
<input type="submit" name="submit" value="Submit">
</form>`
}
//finally show the page
p := Page{
Title: "Add person page",
Status: c.Value,
Body: template.HTML(b),
}
t.ExecuteTemplate(w, "index.html", p)
}
func init() {
http.HandleFunc("/addPerson", addPerson)
}