62 Star 374 Fork 120

admpub / nging

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
define.go 2.85 KB
一键复制 编辑 原始数据 按行查看 历史
admpub 提交于 2019-10-11 09:45 . update
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package helper
import (
"regexp"
"strings"
"github.com/webx-top/client/upload"
"github.com/webx-top/com"
)
const (
DefaultUploadURLPath = `/public/upload/`
DefaultUploadDir = `./public/upload`
)
var (
// UploadURLPath 上传文件网址访问路径
UploadURLPath = DefaultUploadURLPath
// UploadDir 定义上传目录(首尾必须带“/”)
UploadDir = DefaultUploadDir
// AllowedUploadFileExtensions 被允许上传的文件的扩展名
AllowedUploadFileExtensions = []string{
`.jpeg`, `.jpg`, `.gif`, `.png`,
}
// FileTypeIcon 文件类型icon
FileTypeIcon = upload.FileTypeIcon
// DetectFileType 根据文件扩展名判断文件类型
DetectFileType = upload.DetectType
// TypeRegister 注册文件扩展名
TypeRegister = upload.TypeRegister
)
// URLToFile 文件网址转为存储路径
func URLToFile(fileURL string) string {
filePath := strings.TrimPrefix(fileURL, UploadURLPath)
filePath = strings.TrimSuffix(UploadDir, `/`) + `/` + strings.TrimPrefix(filePath, `/`)
return filePath
}
// FileTypeByName 根据文件名判断文件类型
func FileTypeByName(filename string) string {
p := strings.LastIndex(filename, `.`)
if p < 0 {
return ``
}
ext := filename[p:]
return DetectFileType(ext)
}
func ExtensionRegister(extensions ...string) {
AllowedUploadFileExtensions = append(AllowedUploadFileExtensions, extensions...)
}
func ExtensionUnregister(extensions ...string) {
com.SliceRemoveCallback(len(AllowedUploadFileExtensions), func(i int) func(bool) error {
if !com.InStringSlice(AllowedUploadFileExtensions[i], extensions) {
return nil
}
return func(inside bool) error {
if inside {
AllowedUploadFileExtensions = append(AllowedUploadFileExtensions[0:i], AllowedUploadFileExtensions[i+1:]...)
} else {
AllowedUploadFileExtensions = AllowedUploadFileExtensions[0:i]
}
return nil
}
})
}
func ExtensionRegexpEnd() string {
extensions := make([]string, len(AllowedUploadFileExtensions))
for index, extension := range AllowedUploadFileExtensions {
extensions[index] = regexp.QuoteMeta(extension)
}
return `(` + strings.Join(extensions, `|`) + `)`
}
Go
1
https://gitee.com/admpub/nging.git
git@gitee.com:admpub/nging.git
admpub
nging
nging
v2.2.3

搜索帮助