aboutsummaryrefslogtreecommitdiff
path: root/weed/admin/dash/file_browser_data.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2025-07-12 01:13:11 -0700
committerGitHub <noreply@github.com>2025-07-12 01:13:11 -0700
commit687a6a6c1de0fb67b51ec9bfd1781a6c255ff695 (patch)
tree3ee2890c890e67a170cec2692425528aa9cd795f /weed/admin/dash/file_browser_data.go
parent49d43003e1f5063c57cd1b122469c0cb68d0cd79 (diff)
downloadseaweedfs-687a6a6c1de0fb67b51ec9bfd1781a6c255ff695.tar.xz
seaweedfs-687a6a6c1de0fb67b51ec9bfd1781a6c255ff695.zip
Admin UI: Add policies (#6968)
* add policies to UI, accessing filer directly * view, edit policies * add back buttons for "users" page * remove unused * fix ui dark mode when modal is closed * bucket view details button * fix browser buttons * filer action button works * clean up masters page * fix volume servers action buttons * fix collections page action button * fix properties page * more obvious * fix directory creation file mode * Update file_browser_handlers.go * directory permission
Diffstat (limited to 'weed/admin/dash/file_browser_data.go')
-rw-r--r--weed/admin/dash/file_browser_data.go80
1 files changed, 1 insertions, 79 deletions
diff --git a/weed/admin/dash/file_browser_data.go b/weed/admin/dash/file_browser_data.go
index 3cb878718..6bb30c469 100644
--- a/weed/admin/dash/file_browser_data.go
+++ b/weed/admin/dash/file_browser_data.go
@@ -99,7 +99,7 @@ func (s *AdminServer) GetFileBrowser(path string) (*FileBrowserData, error) {
var ttlSec int32
if entry.Attributes != nil {
- mode = formatFileMode(entry.Attributes.FileMode)
+ mode = FormatFileMode(entry.Attributes.FileMode)
uid = entry.Attributes.Uid
gid = entry.Attributes.Gid
size = int64(entry.Attributes.FileSize)
@@ -270,81 +270,3 @@ func (s *AdminServer) generateBreadcrumbs(path string) []BreadcrumbItem {
return breadcrumbs
}
-
-// formatFileMode converts file mode to Unix-style string representation (e.g., "drwxr-xr-x")
-func formatFileMode(mode uint32) string {
- var result []byte = make([]byte, 10)
-
- // File type
- switch mode & 0170000 { // S_IFMT mask
- case 0040000: // S_IFDIR
- result[0] = 'd'
- case 0100000: // S_IFREG
- result[0] = '-'
- case 0120000: // S_IFLNK
- result[0] = 'l'
- case 0020000: // S_IFCHR
- result[0] = 'c'
- case 0060000: // S_IFBLK
- result[0] = 'b'
- case 0010000: // S_IFIFO
- result[0] = 'p'
- case 0140000: // S_IFSOCK
- result[0] = 's'
- default:
- result[0] = '-' // S_IFREG is default
- }
-
- // Owner permissions
- if mode&0400 != 0 { // S_IRUSR
- result[1] = 'r'
- } else {
- result[1] = '-'
- }
- if mode&0200 != 0 { // S_IWUSR
- result[2] = 'w'
- } else {
- result[2] = '-'
- }
- if mode&0100 != 0 { // S_IXUSR
- result[3] = 'x'
- } else {
- result[3] = '-'
- }
-
- // Group permissions
- if mode&0040 != 0 { // S_IRGRP
- result[4] = 'r'
- } else {
- result[4] = '-'
- }
- if mode&0020 != 0 { // S_IWGRP
- result[5] = 'w'
- } else {
- result[5] = '-'
- }
- if mode&0010 != 0 { // S_IXGRP
- result[6] = 'x'
- } else {
- result[6] = '-'
- }
-
- // Other permissions
- if mode&0004 != 0 { // S_IROTH
- result[7] = 'r'
- } else {
- result[7] = '-'
- }
- if mode&0002 != 0 { // S_IWOTH
- result[8] = 'w'
- } else {
- result[8] = '-'
- }
- if mode&0001 != 0 { // S_IXOTH
- result[9] = 'x'
- } else {
- result[9] = '-'
- }
-
- return string(result)
-}