1234567891011121314151617181920212223242526272829303132333435363738 |
- package image
- import (
- "crypto/md5"
- "fmt"
- "icloudapp.cn/tools/util"
- fileObj "icloudapp.cn/tools/util/file"
- "os"
- "strings"
- )
- type Cache struct {
- Path string
- }
- func NewCache(path string) *Cache {
- return &Cache{Path: path}
- }
- func (c *Cache) SetCache(path string) {
- c.Path = path
- }
- func (c *Cache) CacheFile(file string, format string) string {
- if !fileObj.IsDir(c.Path) {
- if err := os.Mkdir(c.Path, 0755); err != nil {
- panic(err.Error())
- }
- }
- if file == "" {
- file = util.RandomStr(10)
- }
- destName := fmt.Sprintf("%x", md5.Sum([]byte(file)))
- destFile := fmt.Sprintf("%s/%s.%s", c.Path, destName, strings.ToLower(format))
- return destFile
- }
|