forked from GoAdminGroup/go-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.go
33 lines (27 loc) · 862 Bytes
/
local.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package file
import (
"mime/multipart"
"github.com/vafinvr/go-admin/modules/config"
)
// LocalFileUploader is an Uploader of local file engine.
type LocalFileUploader struct {
BasePath string
}
// GetLocalFileUploader return the default Uploader.
func GetLocalFileUploader() Uploader {
return &LocalFileUploader{
config.GetStore().Path,
}
}
// Upload implements the Uploader.Upload.
func (local *LocalFileUploader) Upload(form *multipart.Form) error {
return Upload(func(fileObj *multipart.FileHeader, filename string) (string, error) {
if err := SaveMultipartFile(fileObj, (*local).BasePath+"/"+filename); err != nil {
return "", err
}
return filename, nil
}, form)
}