learn-go/snippetbox/cmd/web/handlers.go

57 lines
1.0 KiB
Go
Raw Normal View History

2024-01-22 21:25:34 +00:00
package main
import (
"fmt"
2024-01-23 19:19:53 +00:00
"html/template"
2024-01-22 21:25:34 +00:00
"net/http"
"strconv"
2024-01-22 21:25:34 +00:00
)
// home ...
func (app *application) home(w http.ResponseWriter, r *http.Request) {
2024-01-22 21:25:34 +00:00
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
2024-01-23 19:19:53 +00:00
files := []string{
"./ui/html/base.tmpl",
"./ui/html/partials/nav.tmpl",
"./ui/html/pages/home.tmpl",
}
ts, err := template.ParseFiles(files...)
if err != nil {
app.serverError(w, r, err)
2024-01-23 19:19:53 +00:00
return
}
err = ts.ExecuteTemplate(w, "base", nil)
if err != nil {
app.serverError(w, r, err)
2024-01-23 19:19:53 +00:00
}
2024-01-22 21:25:34 +00:00
}
// snippetView ...
func (app *application) snippetView(w http.ResponseWriter, r *http.Request) {
id, err := strconv.Atoi(r.URL.Query().Get("id"))
if err != nil || id < 1 {
app.notFound(w)
return
}
fmt.Fprintf(w, "It's snippet id: %d", id)
2024-01-22 21:25:34 +00:00
}
// snippetCreate ...
func (app *application) snippetCreate(w http.ResponseWriter, r *http.Request) {
2024-01-22 21:25:34 +00:00
w.Header().Set("Allow", "POST")
if r.Method != http.MethodPost {
app.clientError(w, http.StatusMethodNotAllowed)
2024-01-22 21:25:34 +00:00
return
}
w.Write([]byte("Creating a snippet!"))
}