mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 15:13:30 +00:00
71 lines
1.2 KiB
Go
71 lines
1.2 KiB
Go
package utils
|
|
|
|
import (
|
|
"bufio"
|
|
"crypto/md5"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/dustin/go-humanize"
|
|
)
|
|
|
|
func GetFileId(fileHash string, fileSize int64) string {
|
|
return fmt.Sprintf("%s_%d", fileHash, fileSize)
|
|
}
|
|
|
|
func GetFileMd5(file io.Reader) (string, error) {
|
|
const bufferSize = 1024 * 1000 // 1MB
|
|
hash := md5.New()
|
|
buf := make([]byte, bufferSize)
|
|
reader := bufio.NewReader(file)
|
|
for {
|
|
n, err := reader.Read(buf)
|
|
if err != nil {
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
return "", err
|
|
}
|
|
hash.Write(buf[:n])
|
|
}
|
|
return fmt.Sprintf("%x", hash.Sum(nil)), nil
|
|
}
|
|
|
|
func GetUploadDirPath() (string, error) {
|
|
uploadPath := GetEnv("upload.path")
|
|
if uploadPath == "" {
|
|
basepath, err := os.Getwd()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
uploadPath = filepath.Join(basepath, "uploads")
|
|
}
|
|
if err := os.MkdirAll(uploadPath, 0755); err != nil {
|
|
return "", err
|
|
}
|
|
return uploadPath, nil
|
|
}
|
|
|
|
func GetFileSize(size string) (uint64, error) {
|
|
return humanize.ParseBytes(size)
|
|
}
|
|
|
|
func CopyFile(src, dst string) error {
|
|
sourceFile, err := os.Open(src)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer sourceFile.Close()
|
|
|
|
destFile, err := os.Create(dst)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer destFile.Close()
|
|
|
|
_, err = io.Copy(destFile, sourceFile)
|
|
return err
|
|
}
|