mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
000d1b000d
Former-commit-id: 2aac5c1f5a5b5a7039a7a5fad3312a49e9311ddd
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/kataras/iris"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
|
|
app.RegisterView(iris.HTML("./templates", ".html"))
|
|
|
|
// Serve the upload_form.html to the client.
|
|
app.Get("/upload", func(ctx iris.Context) {
|
|
// create a token (optionally).
|
|
|
|
now := time.Now().Unix()
|
|
h := md5.New()
|
|
io.WriteString(h, strconv.FormatInt(now, 10))
|
|
token := fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
// render the form with the token for any use you'd like.
|
|
ctx.ViewData("", token)
|
|
ctx.View("upload_form.html")
|
|
})
|
|
|
|
// Handle the post request from the upload_form.html to the server
|
|
app.Post("/upload", iris.LimitRequestBodySize(10<<20),
|
|
func(ctx iris.Context) {
|
|
// or use ctx.SetMaxRequestBodySize(10 << 20)
|
|
// to limit the uploaded file(s) size.
|
|
|
|
// Get the file from the request
|
|
file, info, err := ctx.FormFile("uploadfile")
|
|
|
|
if err != nil {
|
|
ctx.StatusCode(iris.StatusInternalServerError)
|
|
ctx.HTML("Error while uploading: <b>" + err.Error() + "</b>")
|
|
return
|
|
}
|
|
|
|
defer file.Close()
|
|
fname := info.Filename
|
|
|
|
// Create a file with the same name
|
|
// assuming that you have a folder named 'uploads'
|
|
out, err := os.OpenFile("./uploads/"+fname,
|
|
os.O_WRONLY|os.O_CREATE, 0666)
|
|
|
|
if err != nil {
|
|
ctx.StatusCode(iris.StatusInternalServerError)
|
|
ctx.HTML("Error while uploading: <b>" + err.Error() + "</b>")
|
|
return
|
|
}
|
|
defer out.Close()
|
|
|
|
io.Copy(out, file)
|
|
})
|
|
|
|
// start the server at http://localhost:8080
|
|
app.Run(iris.Addr(":8080"))
|
|
}
|