-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
64 lines (46 loc) · 1.21 KB
/
main.go
File metadata and controls
64 lines (46 loc) · 1.21 KB
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
package main
import (
"fmt"
"log"
"net/http"
)
// /home route handler
func homeHandler(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/home" {
http.Error(w, "404 not found", http.StatusNotFound)
return
}
if r.Method != "GET" {
http.Error(w, "method is not supported", http.StatusNotFound)
return
}
http.ServeFile(w, r, "./static/form.html")
}
// /form route handler
func formHandler(w http.ResponseWriter, r *http.Request) {
if err := r.ParseForm(); err != nil {
fmt.Fprintf(w, "ParseForm() err: %v", err)
return
}
fmt.Fprintf(w, "POST request successful")
name := r.FormValue("name")
waifu := r.FormValue("waifu")
fmt.Fprintf(w, "Name = %s\n", name)
fmt.Fprintf(w, "Waifu = %s\n", waifu)
}
// /asscii route handler
func assciiHandler(w http.ResponseWriter, r *http.Request){
http.ServeFile(w, r, "./static/asscii.html")
}
// main function
func main(){
fileServer := http.FileServer(http.Dir("./static"))
http.Handle("/", fileServer)
http.HandleFunc("/form", formHandler)
http.HandleFunc("/home", homeHandler)
http.HandleFunc("/asscii", assciiHandler)
fmt.Println("server started at port 6969")
if err := http.ListenAndServe(":6969", nil); err != nil {
log.Fatal(err)
}
}