mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
51a1ef432c
Signed-off-by: Vishal Rana <vr@labstack.com>
56 lines
931 B
Go
56 lines
931 B
Go
package main
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo"
|
|
mw "github.com/labstack/echo/middleware"
|
|
)
|
|
|
|
func upload(c *echo.Context) error {
|
|
req := c.Request()
|
|
req.ParseMultipartForm(16 << 20) // Max memory 16 MiB
|
|
|
|
// Read form fields
|
|
name := c.Form("name")
|
|
email := c.Form("email")
|
|
|
|
// Read files
|
|
files := req.MultipartForm.File["files"]
|
|
for _, f := range files {
|
|
// Source file
|
|
src, err := f.Open()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer src.Close()
|
|
|
|
// Destination file
|
|
dst, err := os.Create(f.Filename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer dst.Close()
|
|
|
|
if _, err = io.Copy(dst, src); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return c.String(http.StatusOK, "Thank You! %s <%s>, %d files uploaded successfully.",
|
|
name, email, len(files))
|
|
}
|
|
|
|
func main() {
|
|
e := echo.New()
|
|
e.Use(mw.Logger())
|
|
e.Use(mw.Recover())
|
|
|
|
e.Static("/", "public")
|
|
e.Post("/upload", upload)
|
|
|
|
e.Run(":1323")
|
|
}
|