Some cleanup
This commit is contained in:
parent
52b7e594f3
commit
d130cfe8e1
|
@ -1,11 +1,11 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>{% block title %}{{ sitename }}{% endblock %}</title>
|
||||
<title>{% block title %}{{ sitename }}{% endblock %}</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
{% block content %}{% endblock %}
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{% block content %}
|
||||
<form enctype="multipart/form-data" action="/upload" method="post">
|
||||
<input type="file" name="file" />
|
||||
<input type="submit" value="upload" />
|
||||
<input type="file" name="file" />
|
||||
<input type="submit" value="upload" />
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
|
12
upload.go
12
upload.go
|
@ -77,16 +77,14 @@ func processUpload(upReq UploadRequest) (upload Upload, err error) {
|
|||
|
||||
upload.Filename = strings.Join([]string{barename, extension}, ".")
|
||||
|
||||
dst, ferr := os.Create(path.Join("files/", upload.Filename))
|
||||
defer dst.Close()
|
||||
if ferr != nil {
|
||||
err = ferr
|
||||
dst, err := os.Create(path.Join("files/", upload.Filename))
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
defer dst.Close()
|
||||
|
||||
bytes, cerr := io.Copy(dst, upReq.src)
|
||||
if cerr != nil {
|
||||
err = cerr
|
||||
bytes, err := io.Copy(dst, upReq.src)
|
||||
if err != nil {
|
||||
return
|
||||
} else if bytes == 0 {
|
||||
err = errors.New("Empty file")
|
||||
|
|
Loading…
Reference in New Issue