mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
parent
d01e34aa40
commit
f449557281
@ -7,6 +7,7 @@ import (
|
||||
"github.com/1Panel-dev/1Panel/backend/buserr"
|
||||
"github.com/1Panel-dev/1Panel/backend/constant"
|
||||
"io/fs"
|
||||
"net/http"
|
||||
"os"
|
||||
"os/exec"
|
||||
"path"
|
||||
@ -335,6 +336,8 @@ func (f *FileInfo) getContent() error {
|
||||
}
|
||||
|
||||
func DetectBinary(buf []byte) bool {
|
||||
mimeType := http.DetectContentType(buf)
|
||||
if !strings.HasPrefix(mimeType, "text/") {
|
||||
whiteByte := 0
|
||||
n := min(1024, len(buf))
|
||||
for i := 0; i < n; i++ {
|
||||
@ -344,9 +347,11 @@ func DetectBinary(buf []byte) bool {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return whiteByte < 1
|
||||
}
|
||||
return false
|
||||
|
||||
}
|
||||
|
||||
func min(x, y int) int {
|
||||
if x < y {
|
||||
|
Loading…
x
Reference in New Issue
Block a user