-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki.go
127 lines (105 loc) · 2.85 KB
/
wiki.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
package main
import (
"errors"
"html/template"
"log"
"net/http"
"os"
"regexp"
)
var templates = template.Must(template.ParseFiles("edit.html", "view.html"))
var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
type Page struct {
Title string
Body []byte //For dynamic increasing in byte
}
// func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {
// return func(w http.ResponseWriter, r *http.Request) {
// m := validPath.FindStringSubmatch(r.URL.Path)
// if m == nil {
// http.NotFound(w, r)
// return
// }
// fn(w, r, m[2])
// }
// }
// here we refer page as P and taking it as a pointer
func (p *Page) save() error {
filename := p.Title + ".txt"
return os.WriteFile(filename, p.Body, 0600)
}
func loadPage(title string) (*Page, error) {
filename := title + ".txt"
body, error := os.ReadFile(filename)
if error != nil {
return nil, error
}
return &Page{Title: title, Body: body}, nil
}
func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
err := templates.ExecuteTemplate(w, tmpl+".html", p)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
func viewHandler(w http.ResponseWriter, r *http.Request) {
log.Println("URL Path:", r.URL.Path)
m := validPath.FindStringSubmatch(r.URL.Path)
log.Println("Matched Substrings:", m)
title, err := getTitle(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
p, err := loadPage(title)
if err != nil {
http.Redirect(w, r, "/edit/"+title, http.StatusFound)
return
}
renderTemplate(w, "view", p)
}
func editHandler(w http.ResponseWriter, r *http.Request) {
title, err := getTitle(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
p, err := loadPage(title)
if err != nil {
p = &Page{Title: title}
}
renderTemplate(w, "edit", p)
}
func saveHandler(w http.ResponseWriter, r *http.Request) {
title, err := getTitle(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
body := r.FormValue("body")
p := &Page{Title: title, Body: []byte(body)}
errr := p.save()
if errr != nil {
http.Error(w, errr.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, "/view/"+title, http.StatusFound)
}
func getTitle( r *http.Request) (string, error) {
m := validPath.FindStringSubmatch(r.URL.Path)
if m == nil {
return "", errors.New("invaild")
}
return m[2], nil
}
func main() {
// p1 := &Page{Title: "TestPage" , Body: []byte("This is a test")}
// p1.save()
// p2 , _ :=loadPage("TestPage")
// fmt.Println(string(p2.Body) )
http.HandleFunc("/view/", viewHandler)
http.HandleFunc("/edit/", editHandler)
http.HandleFunc("/save/", saveHandler)
log.Println("Starting server on port :8090")
log.Fatal(http.ListenAndServe(":8090", nil))
}