Feat: support {ext}
and {uuid}
magic variable
This commit is contained in:
parent
eaa8c9e12d
commit
5a3ea89866
2 changed files with 4 additions and 1 deletions
2
assets
2
assets
|
@ -1 +1 @@
|
|||
Subproject commit 1a47ca8674654a2507fc77764b3ac1f295b04cad
|
||||
Subproject commit 1f4883774ab9fc24685a4adf8099e38e7daf67c8
|
|
@ -3,6 +3,7 @@ package model
|
|||
import (
|
||||
"encoding/gob"
|
||||
"encoding/json"
|
||||
"github.com/gofrs/uuid"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
@ -170,6 +171,8 @@ func (policy *Policy) GenerateFileName(uid uint, origin string) string {
|
|||
"{minute}": time.Now().Format("04"),
|
||||
"{second}": time.Now().Format("05"),
|
||||
"{originname}": origin,
|
||||
"{ext}": filepath.Ext(origin),
|
||||
"{uuid}": uuid.Must(uuid.NewV4()).String(),
|
||||
}
|
||||
|
||||
fileRule = util.Replace(replaceTable, fileRule)
|
||||
|
|
Loading…
Add table
Reference in a new issue