Inform the user if the upload was success
This commit is contained in:
parent
18454021c3
commit
6a656eca31
2 changed files with 15 additions and 5 deletions
18
upload.go
18
upload.go
|
@ -7,16 +7,16 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
func storeFile(r *http.Request) {
|
func storeFile(r *http.Request) error {
|
||||||
f, header, err := r.FormFile("epub")
|
f, header, err := r.FormFile("epub")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err) // FIXME
|
return err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
// FIXME: check the name exist
|
// FIXME: check the name exist
|
||||||
fw, err := os.Create("new/" + header.Filename)
|
fw, err := os.Create("new/" + header.Filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err) // FIXME
|
return err
|
||||||
}
|
}
|
||||||
defer fw.Close()
|
defer fw.Close()
|
||||||
|
|
||||||
|
@ -27,12 +27,20 @@ func storeFile(r *http.Request) {
|
||||||
n, err = f.Read(buff)
|
n, err = f.Read(buff)
|
||||||
fw.Write(buff)
|
fw.Write(buff)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func uploadHandler(coll *mgo.Collection, w http.ResponseWriter, r *http.Request) {
|
func uploadHandler(coll *mgo.Collection, w http.ResponseWriter, r *http.Request) {
|
||||||
|
status := ""
|
||||||
if r.Method == "POST" {
|
if r.Method == "POST" {
|
||||||
storeFile(r)
|
err := storeFile(r)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
status = "Upload successful."
|
||||||
}
|
}
|
||||||
|
|
||||||
loadTemplate(w, "upload", nil)
|
loadTemplate(w, "upload", status)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{{template "header.html"}}
|
{{template "header.html"}}
|
||||||
|
|
||||||
|
{{if .}}<p>{{.}}</p>{{end}}
|
||||||
|
|
||||||
<form method="POST" enctype="multipart/form-data">
|
<form method="POST" enctype="multipart/form-data">
|
||||||
<input accept="application/epub+zip" type="file" name="epub" />
|
<input accept="application/epub+zip" type="file" name="epub" />
|
||||||
<input type="submit" />
|
<input type="submit" />
|
||||||
|
|
Reference in a new issue