Browse Source

fix: 判断文件是否为二进制文件,忽略文本类型文件 (#5730)

Fixes #5722
pull/5733/head
5 months ago committed by GitHub
parent
commit
f449557281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      backend/utils/files/fileinfo.go

7
backend/utils/files/fileinfo.go

@ -7,6 +7,7 @@ import (
"github.com/1Panel-dev/1Panel/backend/buserr" "github.com/1Panel-dev/1Panel/backend/buserr"
"github.com/1Panel-dev/1Panel/backend/constant" "github.com/1Panel-dev/1Panel/backend/constant"
"io/fs" "io/fs"
"net/http"
"os" "os"
"os/exec" "os/exec"
"path" "path"
@ -335,6 +336,8 @@ func (f *FileInfo) getContent() error {
} }
func DetectBinary(buf []byte) bool { func DetectBinary(buf []byte) bool {
mimeType := http.DetectContentType(buf)
if !strings.HasPrefix(mimeType, "text/") {
whiteByte := 0 whiteByte := 0
n := min(1024, len(buf)) n := min(1024, len(buf))
for i := 0; i < n; i++ { for i := 0; i < n; i++ {
@ -344,9 +347,11 @@ func DetectBinary(buf []byte) bool {
return true return true
} }
} }
return whiteByte < 1 return whiteByte < 1
} }
return false
}
func min(x, y int) int { func min(x, y int) int {
if x < y { if x < y {

Loading…
Cancel
Save