feat: 查看文件详情解除二进制文件限制 (#5696)

pull/5709/head
5 months ago committed by GitHub
parent 2e8403347a
commit 0d3e834b37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,7 +10,8 @@ type FileOption struct {
}
type FileContentReq struct {
Path string `json:"path" validate:"required"`
Path string `json:"path" validate:"required"`
IsDetail bool `json:"isDetail"`
}
type SearchUploadWithPage struct {

@ -288,8 +288,9 @@ func (f *FileService) DeCompress(c request.FileDeCompress) error {
func (f *FileService) GetContent(op request.FileContentReq) (response.FileInfo, error) {
info, err := files.NewFileInfo(files.FileOption{
Path: op.Path,
Expand: true,
Path: op.Path,
Expand: true,
IsDetail: op.IsDetail,
})
if err != nil {
return response.FileInfo{}, err

@ -44,6 +44,7 @@ type FileInfo struct {
Items []*FileInfo `json:"items"`
ItemTotal int `json:"itemTotal"`
FavoriteID uint `json:"favoriteID"`
IsDetail bool `json:"isDetail"`
}
type FileOption struct {
@ -57,6 +58,7 @@ type FileOption struct {
PageSize int `json:"pageSize"`
SortBy string `json:"sortBy"`
SortOrder string `json:"sortOrder"`
IsDetail bool `json:"isDetail"`
}
type FileSearchInfo struct {
@ -89,6 +91,7 @@ func NewFileInfo(op FileOption) (*FileInfo, error) {
Gid: strconv.FormatUint(uint64(info.Sys().(*syscall.Stat_t).Gid), 10),
Group: GetGroup(info.Sys().(*syscall.Stat_t).Gid),
MimeType: GetMimeType(op.Path),
IsDetail: op.IsDetail,
}
favoriteRepo := repo.NewIFavoriteRepo()
favorite, _ := favoriteRepo.GetFirst(favoriteRepo.WithByPath(op.Path))
@ -322,8 +325,10 @@ func (f *FileInfo) getContent() error {
if err != nil {
return nil
}
if len(cByte) > 0 && DetectBinary(cByte) {
return buserr.New(constant.ErrFileCanNotRead)
if !f.IsDetail {
if len(cByte) > 0 && DetectBinary(cByte) {
return buserr.New(constant.ErrFileCanNotRead)
}
}
f.Content = string(cByte)
return nil

@ -33,6 +33,7 @@ export namespace File {
containSub?: boolean;
sortBy?: string;
sortOrder?: string;
isDetail?: boolean;
}
export interface SearchUploadInfo extends ReqPage {

@ -56,7 +56,7 @@ const handleClose = () => {
const acceptParams = async (params: InfoProps): Promise<void> => {
props.value = params;
GetFileContent({ path: params.path, expand: false, page: 1, pageSize: 1 }).then((res) => {
GetFileContent({ path: params.path, expand: false, page: 1, pageSize: 1, isDetail: true }).then((res) => {
data.value = res.data;
open.value = true;
});

Loading…
Cancel
Save