You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1006 B
Go
47 lines
1006 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
func (app *application) home(w http.ResponseWriter, r *http.Request) {
|
|
if r.URL.Path != "/" {
|
|
http.NotFound(w, r)
|
|
return
|
|
}
|
|
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, err)
|
|
return
|
|
}
|
|
err = ts.ExecuteTemplate(w, "base", nil)
|
|
if err != nil {
|
|
app.serverError(w, err)
|
|
}
|
|
}
|
|
|
|
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, "Display a specific snippet with ID %d...", id)
|
|
}
|
|
func (app *application) snippetCreate(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != "POST" {
|
|
w.Header().Set("Allow", http.MethodPost)
|
|
app.clientError(w, http.StatusMethodNotAllowed)
|
|
return
|
|
}
|
|
w.Write([]byte("Create a new snippet"))
|
|
}
|