Files
seaweedFS/weed/admin/static/js/admin.js
Chris Lu 992db11d2b iam: add IAM group management (#8560)
* iam: add Group message to protobuf schema

Add Group message (name, members, policy_names, disabled) and
add groups field to S3ApiConfiguration for IAM group management
support (issue #7742).

* iam: add group CRUD to CredentialStore interface and all backends

Add group management methods (CreateGroup, GetGroup, DeleteGroup,
ListGroups, UpdateGroup) to the CredentialStore interface with
implementations for memory, filer_etc, postgres, and grpc stores.
Wire group loading/saving into filer_etc LoadConfiguration and
SaveConfiguration.

* iam: add group IAM response types

Add XML response types for group management IAM actions:
CreateGroup, DeleteGroup, GetGroup, ListGroups, AddUserToGroup,
RemoveUserFromGroup, AttachGroupPolicy, DetachGroupPolicy,
ListAttachedGroupPolicies, ListGroupsForUser.

* iam: add group management handlers to embedded IAM API

Add CreateGroup, DeleteGroup, GetGroup, ListGroups, AddUserToGroup,
RemoveUserFromGroup, AttachGroupPolicy, DetachGroupPolicy,
ListAttachedGroupPolicies, and ListGroupsForUser handlers with
dispatch in ExecuteAction.

* iam: add group management handlers to standalone IAM API

Add group handlers (CreateGroup, DeleteGroup, GetGroup, ListGroups,
AddUserToGroup, RemoveUserFromGroup, AttachGroupPolicy, DetachGroupPolicy,
ListAttachedGroupPolicies, ListGroupsForUser) and wire into DoActions
dispatch. Also add helper functions for user/policy side effects.

* iam: integrate group policies into authorization

Add groups and userGroups reverse index to IdentityAccessManagement.
Populate both maps during ReplaceS3ApiConfiguration and
MergeS3ApiConfiguration. Modify evaluateIAMPolicies to evaluate
policies from user's enabled groups in addition to user policies.
Update VerifyActionPermission to consider group policies when
checking hasAttachedPolicies.

* iam: add group side effects on user deletion and rename

When a user is deleted, remove them from all groups they belong to.
When a user is renamed, update group membership references. Applied
to both embedded and standalone IAM handlers.

* iam: watch /etc/iam/groups directory for config changes

Add groups directory to the filer subscription watcher so group
file changes trigger IAM configuration reloads.

* admin: add group management page to admin UI

Add groups page with CRUD operations, member management, policy
attachment, and enable/disable toggle. Register routes in admin
handlers and add Groups entry to sidebar navigation.

* test: add IAM group management integration tests

Add comprehensive integration tests for group CRUD, membership,
policy attachment, policy enforcement, disabled group behavior,
user deletion side effects, and multi-group membership. Add
"group" test type to CI matrix in s3-iam-tests workflow.

* iam: address PR review comments for group management

- Fix XSS vulnerability in groups.templ: replace innerHTML string
  concatenation with DOM APIs (createElement/textContent) for rendering
  member and policy lists
- Use userGroups reverse index in embedded IAM ListGroupsForUser for
  O(1) lookup instead of iterating all groups
- Add buildUserGroupsIndex helper in standalone IAM handlers; use it
  in ListGroupsForUser and removeUserFromAllGroups for efficient lookup
- Add note about gRPC store load-modify-save race condition limitation

* iam: add defensive copies, validation, and XSS fixes for group management

- Memory store: clone groups on store/retrieve to prevent mutation
- Admin dash: deep copy groups before mutation, validate user/policy exists
- HTTP handlers: translate credential errors to proper HTTP status codes,
  use *bool for Enabled field to distinguish missing vs false
- Groups templ: use data attributes + event delegation instead of inline
  onclick for XSS safety, prevent stale async responses

* iam: add explicit group methods to PropagatingCredentialStore

Add CreateGroup, GetGroup, DeleteGroup, ListGroups, and UpdateGroup
methods instead of relying on embedded interface fallthrough. Group
changes propagate via filer subscription so no RPC propagation needed.

* iam: detect postgres unique constraint violation and add groups index

Return ErrGroupAlreadyExists when INSERT hits SQLState 23505 instead of
a generic error. Add index on groups(disabled) for filtered queries.

* iam: add Marker field to group list response types

Add Marker string field to GetGroupResult, ListGroupsResult,
ListAttachedGroupPoliciesResult, and ListGroupsForUserResult to
match AWS IAM pagination response format.

* iam: check group attachment before policy deletion

Reject DeletePolicy if the policy is attached to any group, matching
AWS IAM behavior. Add PolicyArn to ListAttachedGroupPolicies response.

* iam: include group policies in IAM authorization

Merge policy names from user's enabled groups into the IAMIdentity
used for authorization, so group-attached policies are evaluated
alongside user-attached policies.

* iam: check for name collision before renaming user in UpdateUser

Scan identities and inline policies for newUserName before mutating,
returning EntityAlreadyExists if a collision is found. Reuse the
already-loaded policies instead of loading them again inside the loop.

* test: use t.Cleanup for bucket cleanup in group policy test

* iam: wrap ErrUserNotInGroup sentinel in RemoveGroupMember error

Wrap credential.ErrUserNotInGroup so errors.Is works in
groupErrorToHTTPStatus, returning proper 400 instead of 500.

* admin: regenerate groups_templ.go with XSS-safe data attributes

Regenerated from groups.templ which uses data-group-name attributes
instead of inline onclick with string interpolation.

* iam: add input validation and persist groups during migration

- Validate nil/empty group name in CreateGroup and UpdateGroup
- Save groups in migrateToMultiFile so they survive legacy migration

* admin: use groupErrorToHTTPStatus in GetGroupMembers and GetGroupPolicies

* iam: short-circuit UpdateUser when newUserName equals current name

* iam: require empty PolicyNames before group deletion

Reject DeleteGroup when group has attached policies, matching the
existing members check. Also fix GetGroup error handling in
DeletePolicy to only skip ErrGroupNotFound, not all errors.

* ci: add weed/pb/** to S3 IAM test trigger paths

* test: replace time.Sleep with require.Eventually for propagation waits

Use polling with timeout instead of fixed sleeps to reduce flakiness
in integration tests waiting for IAM policy propagation.

* fix: use credentialManager.GetPolicy for AttachGroupPolicy validation

Policies created via CreatePolicy through credentialManager are stored
in the credential store, not in s3cfg.Policies (which only has static
config policies). Change AttachGroupPolicy to use credentialManager.GetPolicy()
for policy existence validation.

* feat: add UpdateGroup handler to embedded IAM API

Add UpdateGroup action to enable/disable groups and rename groups
via the IAM API. This is a SeaweedFS extension (not in AWS SDK) used
by tests to toggle group disabled status.

* fix: authenticate raw IAM API calls in group tests

The embedded IAM endpoint rejects anonymous requests. Replace
callIAMAPI with callIAMAPIAuthenticated that uses JWT bearer token
authentication via the test framework.

* feat: add UpdateGroup handler to standalone IAM API

Mirror the embedded IAM UpdateGroup handler in the standalone IAM API
for parity.

* fix: add omitempty to Marker XML tags in group responses

Non-truncated responses should not emit an empty <Marker/> element.

* fix: distinguish backend errors from missing policies in AttachGroupPolicy

Return ServiceFailure for credential manager errors instead of masking
them as NoSuchEntity. Also switch ListGroupsForUser to use s3cfg.Groups
instead of in-memory reverse index to avoid stale data. Add duplicate
name check to UpdateGroup rename.

* fix: standalone IAM AttachGroupPolicy uses persisted policy store

Check managed policies from GetPolicies() instead of s3cfg.Policies
so dynamically created policies are found. Also add duplicate name
check to UpdateGroup rename.

* fix: rollback inline policies on UpdateUser PutPolicies failure

If PutPolicies fails after moving inline policies to the new username,
restore both the identity name and the inline policies map to their
original state to avoid a partial-write window.

* fix: correct test cleanup ordering for group tests

Replace scattered defers with single ordered t.Cleanup in each test
to ensure resources are torn down in reverse-creation order:
remove membership, detach policies, delete access keys, delete users,
delete groups, delete policies. Move bucket cleanup to parent test
scope and delete objects before bucket.

* fix: move identity nil check before map lookup and refine hasAttachedPolicies

Move the nil check on identity before accessing identity.Name to
prevent panic. Also refine hasAttachedPolicies to only consider groups
that are enabled and have actual policies attached, so membership in
a no-policy group doesn't incorrectly trigger IAM authorization.

* fix: fail group reload on unreadable or corrupt group files

Return errors instead of logging and continuing when group files
cannot be read or unmarshaled. This prevents silently applying a
partial IAM config with missing group memberships or policies.

* fix: use errors.Is for sql.ErrNoRows comparison in postgres group store

* docs: explain why group methods skip propagateChange

Group changes propagate to S3 servers via filer subscription
(watching /etc/iam/groups/) rather than gRPC RPCs, since there
are no group-specific RPCs in the S3 cache protocol.

* fix: remove unused policyNameFromArn and strings import

* fix: update service account ParentUser on user rename

When renaming a user via UpdateUser, also update ParentUser references
in service accounts to prevent them from becoming orphaned after the
next configuration reload.

* fix: wrap DetachGroupPolicy error with ErrPolicyNotAttached sentinel

Use credential.ErrPolicyNotAttached so groupErrorToHTTPStatus maps
it to 400 instead of falling back to 500.

* fix: use admin S3 client for bucket cleanup in enforcement test

The user S3 client may lack permissions by cleanup time since the
user is removed from the group in an earlier subtest. Use the admin
S3 client to ensure bucket and object cleanup always succeeds.

* fix: add nil guard for group param in propagating store log calls

Prevent potential nil dereference when logging group.Name in
CreateGroup and UpdateGroup of PropagatingCredentialStore.

* fix: validate Disabled field in UpdateGroup handlers

Reject values other than "true" or "false" with InvalidInputException
instead of silently treating them as false.

* fix: seed mergedGroups from existing groups in MergeS3ApiConfiguration

Previously the merge started with empty group maps, dropping any
static-file groups. Now seeds from existing iam.groups before
overlaying dynamic config, and builds the reverse index after
merging to avoid stale entries from overridden groups.

* fix: use errors.Is for filer_pb.ErrNotFound comparison in group loading

Replace direct equality (==) with errors.Is() to correctly match
wrapped errors, consistent with the rest of the codebase.

* fix: add ErrUserNotFound and ErrPolicyNotFound to groupErrorToHTTPStatus

Map these sentinel errors to 404 so AddGroupMember and
AttachGroupPolicy return proper HTTP status codes.

* fix: log cleanup errors in group integration tests

Replace fire-and-forget cleanup calls with error-checked versions
that log failures via t.Logf for debugging visibility.

* fix: prevent duplicate group test runs in CI matrix

The basic lane's -run "TestIAM" regex also matched TestIAMGroup*
tests, causing them to run in both the basic and group lanes.
Replace with explicit test function names.

* fix: add GIN index on groups.members JSONB for membership lookups

Without this index, ListGroupsForUser and membership queries
require full table scans on the groups table.

* fix: handle cross-directory moves in IAM config subscription

When a file is moved out of an IAM directory (e.g., /etc/iam/groups),
the dir variable was overwritten with NewParentPath, causing the
source directory change to be missed. Now also notifies handlers
about the source directory for cross-directory moves.

* fix: validate members/policies before deleting group in admin handler

AdminServer.DeleteGroup now checks for attached members and policies
before delegating to credentialManager, matching the IAM handler guards.

* fix: merge groups by name instead of blind append during filer load

Match the identity loader's merge behavior: find existing group
by name and replace, only append when no match exists. Prevents
duplicates when legacy and multi-file configs overlap.

* fix: check DeleteEntry response error when cleaning obsolete group files

Capture and log resp.Error from filer DeleteEntry calls during
group file cleanup, matching the pattern used in deleteGroupFile.

* fix: verify source user exists before no-op check in UpdateUser

Reorder UpdateUser to find the source identity first and return
NoSuchEntityException if not found, before checking if the rename
is a no-op. Previously a non-existent user renamed to itself
would incorrectly return success.

* fix: update service account parent refs on user rename in embedded IAM

The embedded IAM UpdateUser handler updated group membership but
not service account ParentUser fields, unlike the standalone handler.

* fix: replay source-side events for all handlers on cross-dir moves

Pass nil newEntry to bucket, IAM, and circuit-breaker handlers for
the source directory during cross-directory moves, so all watchers
can clear caches for the moved-away resource.

* fix: don't seed mergedGroups from existing iam.groups in merge

Groups are always dynamic (from filer), never static (from s3.config).
Seeding from iam.groups caused stale deleted groups to persist.
Now only uses config.Groups from the dynamic filer config.

* fix: add deferred user cleanup in TestIAMGroupUserDeletionSideEffect

Register t.Cleanup for the created user so it gets cleaned up
even if the test fails before the inline DeleteUser call.

* fix: assert UpdateGroup HTTP status in disabled group tests

Add require.Equal checks for 200 status after UpdateGroup calls
so the test fails immediately on API errors rather than relying
on the subsequent Eventually timeout.

* fix: trim whitespace from group name in filer store operations

Trim leading/trailing whitespace from group.Name before validation
in CreateGroup and UpdateGroup to prevent whitespace-only filenames.
Also merge groups by name during multi-file load to prevent duplicates.

* fix: add nil/empty group validation in gRPC store

Guard CreateGroup and UpdateGroup against nil group or empty name
to prevent panics and invalid persistence.

* fix: add nil/empty group validation in postgres store

Guard CreateGroup and UpdateGroup against nil group or empty name
to prevent panics from nil member access and empty-name row inserts.

* fix: add name collision check in embedded IAM UpdateUser

The embedded IAM handler renamed users without checking if the
target name already existed, unlike the standalone handler.

* fix: add ErrGroupNotEmpty sentinel and map to HTTP 409

AdminServer.DeleteGroup now wraps conflict errors with
ErrGroupNotEmpty, and groupErrorToHTTPStatus maps it to
409 Conflict instead of 500.

* fix: use appropriate error message in GetGroupDetails based on status

Return "Group not found" only for 404, use "Failed to retrieve group"
for other error statuses instead of always saying "Group not found".

* fix: use backend-normalized group.Name in CreateGroup response

After credentialManager.CreateGroup may normalize the name (e.g.,
trim whitespace), use group.Name instead of the raw input for
the returned GroupData to ensure consistency.

* fix: add nil/empty group validation in memory store

Guard CreateGroup and UpdateGroup against nil group or empty name
to prevent panics from nil pointer dereference on map access.

* fix: reorder embedded IAM UpdateUser to verify source first

Find the source identity before checking for collisions, matching
the standalone handler's logic. Previously a non-existent user
renamed to an existing name would get EntityAlreadyExists instead
of NoSuchEntity.

* fix: handle same-directory renames in metadata subscription

Replay a delete event for the old entry name during same-directory
renames so handlers like onBucketMetadataChange can clean up stale
state for the old name.

* fix: abort GetGroups on non-ErrGroupNotFound errors

Only skip groups that return ErrGroupNotFound. Other errors (e.g.,
transient backend failures) now abort the handler and return the
error to the caller instead of silently producing partial results.

* fix: add aria-label and title to icon-only group action buttons

Add accessible labels to View and Delete buttons so screen readers
and tooltips provide meaningful context.

* fix: validate group name in saveGroup to prevent invalid filenames

Trim whitespace and reject empty names before writing group JSON
files, preventing creation of files like ".json".

* fix: add /etc/iam/groups to filer subscription watched directories

The groups directory was missing from the watched directories list,
so S3 servers in a cluster would not detect group changes made by
other servers via filer. The onIamConfigChange handler already had
code to handle group directory changes but it was never triggered.

* add direct gRPC propagation for group changes to S3 servers

Groups now have the same dual propagation as identities and policies:
direct gRPC push via propagateChange + async filer subscription.

- Add PutGroup/RemoveGroup proto messages and RPCs
- Add PutGroup/RemoveGroup in-memory cache methods on IAM
- Add PutGroup/RemoveGroup gRPC server handlers
- Update PropagatingCredentialStore to call propagateChange on group mutations

* reduce log verbosity for config load summary

Change ReplaceS3ApiConfiguration log from Infof to V(1).Infof
to avoid noisy output on every config reload.

* admin: show user groups in view and edit user modals

- Add Groups field to UserDetails and populate from credential manager
- Show groups as badges in user details view modal
- Add group management to edit user modal: display current groups,
  add to group via dropdown, remove from group via badge x button

* fix: remove duplicate showAlert that broke modal-alerts.js

admin.js defined showAlert(type, message) which overwrote the
modal-alerts.js version showAlert(message, type), causing broken
unstyled alert boxes. Remove the duplicate and swap all callers
in admin.js to use the correct (message, type) argument order.

* fix: unwrap groups API response in edit user modal

The /api/groups endpoint returns {"groups": [...]}, not a bare array.

* Update object_store_users_templ.go

* test: assert AccessDenied error code in group denial tests

Replace plain assert.Error checks with awserr.Error type assertion
and AccessDenied code verification, matching the pattern used in
other IAM integration tests.

* fix: propagate GetGroups errors in ShowGroups handler

getGroupsPageData was swallowing errors and returning an empty page
with 200 status. Now returns the error so ShowGroups can respond
with a proper error status.

* fix: reject AttachGroupPolicy when credential manager is nil

Previously skipped policy existence validation when credentialManager
was nil, allowing attachment of nonexistent policies. Now returns
a ServiceFailureException error.

* fix: preserve groups during partial MergeS3ApiConfiguration updates

UpsertIdentity calls MergeS3ApiConfiguration with a partial config
containing only the updated identity (nil Groups). This was wiping
all in-memory group state. Now only replaces groups when
config.Groups is non-nil (full config reload).

* fix: propagate errors from group lookup in GetObjectStoreUserDetails

ListGroups and GetGroup errors were silently ignored, potentially
showing incomplete group data in the UI.

* fix: use DOM APIs for group badge remove button to prevent XSS

Replace innerHTML with onclick string interpolation with DOM
createElement + addEventListener pattern. Also add aria-label
and title to the add-to-group button.

* fix: snapshot group policies under RLock to prevent concurrent map access

evaluateIAMPolicies was copying the map reference via groupMap :=
iam.groups under RLock then iterating after RUnlock, while PutGroup
mutates the map in-place. Now copies the needed policy names into
a slice while holding the lock.

* fix: add nil IAM check to PutGroup and RemoveGroup gRPC handlers

Match the nil guard pattern used by PutPolicy/DeletePolicy to
prevent nil pointer dereference when IAM is not initialized.
2026-03-09 11:54:32 -07:00

2265 lines
77 KiB
JavaScript

// SeaweedFS Dashboard JavaScript
// Global variables
let bucketToDelete = '';
// Initialize dashboard when DOM is loaded
document.addEventListener('DOMContentLoaded', function () {
initializeDashboard();
initializeEventHandlers();
setupFormValidation();
setupFileManagerEventHandlers();
// Initialize delete button visibility on file browser page
if (window.location.pathname === '/files') {
updateDeleteSelectedButton();
}
});
function initializeDashboard() {
// Set up HTMX event listeners
setupHTMXListeners();
// Initialize tooltips
initializeTooltips();
// Set up periodic refresh
setupAutoRefresh();
// Set active navigation
setActiveNavigation();
// Set up submenu behavior
setupSubmenuBehavior();
// Set up mobile sidebar behavior
setupMobileSidebar();
}
// HTMX event listeners
function setupHTMXListeners() {
// Show loading indicator on requests
document.body.addEventListener('htmx:beforeRequest', function (evt) {
showLoadingIndicator();
});
// Hide loading indicator on completion
document.body.addEventListener('htmx:afterRequest', function (evt) {
hideLoadingIndicator();
});
// Handle errors
document.body.addEventListener('htmx:responseError', function (evt) {
handleHTMXError(evt);
});
}
// Initialize Bootstrap tooltips
function initializeTooltips() {
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
}
// Set up auto-refresh for dashboard data
function setupAutoRefresh() {
// Refresh dashboard data every 30 seconds
setInterval(function () {
if (window.location.pathname === '/dashboard') {
htmx.trigger('#dashboard-content', 'refresh');
}
}, 30000);
}
// Set active navigation item
function setActiveNavigation() {
const currentPath = window.location.pathname;
const navLinks = document.querySelectorAll('.sidebar .nav-link');
navLinks.forEach(function (link) {
const href = link.getAttribute('href');
let isActive = false;
if (href === currentPath) {
isActive = true;
} else if (currentPath === '/' && href === '/admin') {
isActive = true;
} else if (currentPath.startsWith('/s3/') && href === '/s3/buckets') {
isActive = true;
}
// Note: Removed the problematic cluster condition that was highlighting all submenu items
if (isActive) {
link.classList.add('active');
} else {
link.classList.remove('active');
}
});
}
// Set up submenu behavior
function setupSubmenuBehavior() {
const currentPath = window.location.pathname;
// If we're on a cluster page, expand the cluster submenu
if (currentPath.startsWith('/cluster/')) {
const clusterSubmenu = document.getElementById('clusterSubmenu');
if (clusterSubmenu) {
clusterSubmenu.classList.add('show');
// Update the parent toggle button state
const toggleButton = document.querySelector('[data-bs-target="#clusterSubmenu"]');
if (toggleButton) {
toggleButton.classList.remove('collapsed');
toggleButton.setAttribute('aria-expanded', 'true');
}
}
}
// If we're on an object store page, expand the object store submenu
if (currentPath.startsWith('/object-store/')) {
const objectStoreSubmenu = document.getElementById('objectStoreSubmenu');
if (objectStoreSubmenu) {
objectStoreSubmenu.classList.add('show');
// Update the parent toggle button state
const toggleButton = document.querySelector('[data-bs-target="#objectStoreSubmenu"]');
if (toggleButton) {
toggleButton.classList.remove('collapsed');
toggleButton.setAttribute('aria-expanded', 'true');
}
}
}
// Prevent submenu from collapsing when clicking on submenu items
const clusterSubmenuLinks = document.querySelectorAll('#clusterSubmenu .nav-link');
clusterSubmenuLinks.forEach(function (link) {
link.addEventListener('click', function (e) {
// Don't prevent the navigation, just stop the collapse behavior
e.stopPropagation();
});
});
const objectStoreSubmenuLinks = document.querySelectorAll('#objectStoreSubmenu .nav-link');
objectStoreSubmenuLinks.forEach(function (link) {
link.addEventListener('click', function (e) {
// Don't prevent the navigation, just stop the collapse behavior
e.stopPropagation();
});
});
// Handle the main cluster toggle
const clusterToggle = document.querySelector('[data-bs-target="#clusterSubmenu"]');
if (clusterToggle) {
clusterToggle.addEventListener('click', function (e) {
e.preventDefault();
const submenu = document.getElementById('clusterSubmenu');
const isExpanded = submenu.classList.contains('show');
if (isExpanded) {
// Collapse
submenu.classList.remove('show');
this.classList.add('collapsed');
this.setAttribute('aria-expanded', 'false');
} else {
// Expand
submenu.classList.add('show');
this.classList.remove('collapsed');
this.setAttribute('aria-expanded', 'true');
}
});
}
// Handle the main object store toggle
const objectStoreToggle = document.querySelector('[data-bs-target="#objectStoreSubmenu"]');
if (objectStoreToggle) {
objectStoreToggle.addEventListener('click', function (e) {
e.preventDefault();
const submenu = document.getElementById('objectStoreSubmenu');
const isExpanded = submenu.classList.contains('show');
if (isExpanded) {
// Collapse
submenu.classList.remove('show');
this.classList.add('collapsed');
this.setAttribute('aria-expanded', 'false');
} else {
// Expand
submenu.classList.add('show');
this.classList.remove('collapsed');
this.setAttribute('aria-expanded', 'true');
}
});
}
}
// Mobile sidebar toggle and backdrop behavior
function setupMobileSidebar() {
const sidebar = document.getElementById('sidebarMenu');
const backdrop = document.getElementById('sidebarBackdrop');
if (!sidebar || !backdrop) return;
const hideSidebar = () => {
const bsCollapse = bootstrap.Collapse.getInstance(sidebar);
if (bsCollapse) {
bsCollapse.hide();
}
};
// Close sidebar when backdrop is clicked
backdrop.addEventListener('click', hideSidebar);
// Close sidebar when a nav link is clicked (on mobile)
const sidebarToggler = document.querySelector("button[data-bs-target='#sidebarMenu']");
sidebar.querySelectorAll('a.nav-link:not([data-bs-toggle="collapse"])').forEach(function (link) {
link.addEventListener('click', function () {
if (sidebarToggler && getComputedStyle(sidebarToggler).display !== 'none') {
hideSidebar();
}
});
});
}
// Loading indicator functions
function showLoadingIndicator() {
const indicator = document.getElementById('loading-indicator');
if (indicator) {
indicator.style.display = 'block';
}
// Add loading class to body
document.body.classList.add('loading');
}
function hideLoadingIndicator() {
const indicator = document.getElementById('loading-indicator');
if (indicator) {
indicator.style.display = 'none';
}
// Remove loading class from body
document.body.classList.remove('loading');
}
// Handle HTMX errors
function handleHTMXError(evt) {
console.error('HTMX Request Error:', evt.detail);
// Show error toast or message
showErrorMessage('Request failed. Please try again.');
hideLoadingIndicator();
}
// Utility functions
function showErrorMessage(message) {
// Create toast element
const toast = document.createElement('div');
toast.className = 'toast align-items-center text-white bg-danger border-0';
toast.setAttribute('role', 'alert');
toast.setAttribute('aria-live', 'assertive');
toast.setAttribute('aria-atomic', 'true');
toast.innerHTML = `
<div class="d-flex">
<div class="toast-body">
<i class="fas fa-exclamation-triangle me-2"></i>
${message}
</div>
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast"></button>
</div>
`;
// Add to toast container or create one
let toastContainer = document.getElementById('toast-container');
if (!toastContainer) {
toastContainer = document.createElement('div');
toastContainer.id = 'toast-container';
toastContainer.className = 'toast-container position-fixed top-0 end-0 p-3';
toastContainer.style.zIndex = '1055';
document.body.appendChild(toastContainer);
}
toastContainer.appendChild(toast);
// Show toast
const bsToast = new bootstrap.Toast(toast);
bsToast.show();
// Remove toast element after it's hidden
toast.addEventListener('hidden.bs.toast', function () {
toast.remove();
});
}
function showSuccessMessage(message) {
// Similar to showErrorMessage but with success styling
const toast = document.createElement('div');
toast.className = 'toast align-items-center text-white bg-success border-0';
toast.setAttribute('role', 'alert');
toast.setAttribute('aria-live', 'assertive');
toast.setAttribute('aria-atomic', 'true');
toast.innerHTML = `
<div class="d-flex">
<div class="toast-body">
<i class="fas fa-check-circle me-2"></i>
${message}
</div>
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast"></button>
</div>
`;
let toastContainer = document.getElementById('toast-container');
if (!toastContainer) {
toastContainer = document.createElement('div');
toastContainer.id = 'toast-container';
toastContainer.className = 'toast-container position-fixed top-0 end-0 p-3';
toastContainer.style.zIndex = '1055';
document.body.appendChild(toastContainer);
}
toastContainer.appendChild(toast);
const bsToast = new bootstrap.Toast(toast);
bsToast.show();
toast.addEventListener('hidden.bs.toast', function () {
toast.remove();
});
}
// Format bytes for display
function formatBytes(bytes, decimals = 2) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}
// Format numbers with commas
function formatNumber(num) {
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
// Helper function to format disk types for CSV export
function formatDiskTypes(diskTypesText) {
// Remove any HTML tags and clean up the text
return diskTypesText.replace(/<[^>]*>/g, '').replace(/\s+/g, ' ').trim();
}
// Confirm action dialogs
function confirmAction(message, callback) {
if (typeof window.showConfirm === 'function') {
window.showConfirm(message, callback);
} else {
console.error('showConfirm() is not available');
}
}
// Global error handler
window.addEventListener('error', function (e) {
console.error('Global error:', e.error);
showErrorMessage('An unexpected error occurred.');
});
// Export functions for global use
window.Dashboard = {
showErrorMessage,
showSuccessMessage,
formatBytes,
formatNumber,
confirmAction
};
// Initialize event handlers
function initializeEventHandlers() {
// S3 Bucket Management
const createBucketForm = document.getElementById('createBucketForm');
if (createBucketForm) {
createBucketForm.addEventListener('submit', handleCreateBucket);
}
// Delete bucket buttons
document.addEventListener('click', function (e) {
if (e.target.closest('.delete-bucket-btn')) {
const button = e.target.closest('.delete-bucket-btn');
const bucketName = button.getAttribute('data-bucket-name');
confirmDeleteBucket(bucketName);
}
// Quota management buttons
if (e.target.closest('.quota-btn')) {
const button = e.target.closest('.quota-btn');
const bucketName = button.getAttribute('data-bucket-name');
const currentQuota = parseInt(button.getAttribute('data-current-quota')) || 0;
const quotaEnabled = button.getAttribute('data-quota-enabled') === 'true';
showQuotaModal(bucketName, currentQuota, quotaEnabled);
}
});
// Quota form submission
const quotaForm = document.getElementById('quotaForm');
if (quotaForm) {
quotaForm.addEventListener('submit', handleUpdateQuota);
}
// Enable quota checkbox for create bucket form
const enableQuotaCheckbox = document.getElementById('enableQuota');
if (enableQuotaCheckbox) {
enableQuotaCheckbox.addEventListener('change', function () {
const quotaSettings = document.getElementById('quotaSettings');
if (this.checked) {
quotaSettings.style.display = 'block';
} else {
quotaSettings.style.display = 'none';
}
});
}
// Enable quota checkbox for quota modal
const quotaEnabledCheckbox = document.getElementById('quotaEnabled');
if (quotaEnabledCheckbox) {
quotaEnabledCheckbox.addEventListener('change', function () {
const quotaSizeSettings = document.getElementById('quotaSizeSettings');
if (this.checked) {
quotaSizeSettings.style.display = 'block';
} else {
quotaSizeSettings.style.display = 'none';
}
});
}
}
// Setup form validation
function setupFormValidation() {
// Bucket name validation
const bucketNameInput = document.getElementById('bucketName');
if (bucketNameInput) {
bucketNameInput.addEventListener('input', validateBucketName);
}
}
// S3 Bucket Management Functions
// Handle create bucket form submission
async function handleCreateBucket(event) {
event.preventDefault();
const form = event.target;
const formData = new FormData(form);
const bucketData = {
name: formData.get('name'),
region: formData.get('region') || 'us-east-1',
quota_enabled: formData.get('quota_enabled') === 'on',
quota_size: parseInt(formData.get('quota_size')) || 0,
quota_unit: formData.get('quota_unit') || 'MB'
};
try {
const response = await fetch('/api/s3/buckets', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(bucketData)
});
const result = await response.json();
if (response.ok) {
// Success
showAlert(`Bucket "${bucketData.name}" created successfully!`, 'success');
// Close modal
const modal = bootstrap.Modal.getInstance(document.getElementById('createBucketModal'));
modal.hide();
// Reset form
form.reset();
// Refresh the page after a short delay
setTimeout(() => {
location.reload();
}, 1500);
} else {
// Error
showAlert(result.error || 'Failed to create bucket', 'danger');
}
} catch (error) {
console.error('Error creating bucket:', error);
showAlert('Network error occurred while creating bucket', 'danger');
}
}
// Validate bucket name input
function validateBucketName(event) {
const input = event.target;
const value = input.value;
const isValid = /^[a-z0-9.-]+$/.test(value) && value.length >= 3 && value.length <= 63;
if (value.length > 0 && !isValid) {
input.setCustomValidity('Bucket name must contain only lowercase letters, numbers, dots, and hyphens (3-63 characters)');
} else {
input.setCustomValidity('');
}
}
// Confirm bucket deletion
function confirmDeleteBucket(bucketName) {
bucketToDelete = bucketName;
document.getElementById('deleteBucketName').textContent = bucketName;
const modal = new bootstrap.Modal(document.getElementById('deleteBucketModal'));
modal.show();
}
// Delete bucket
async function deleteBucket() {
if (!bucketToDelete) {
return;
}
try {
const response = await fetch(`/api/s3/buckets/${bucketToDelete}`, {
method: 'DELETE'
});
const result = await response.json();
if (response.ok) {
// Success
showAlert(`Bucket "${bucketToDelete}" deleted successfully!`, 'success');
// Close modal
const modal = bootstrap.Modal.getInstance(document.getElementById('deleteBucketModal'));
modal.hide();
// Refresh the page after a short delay
setTimeout(() => {
location.reload();
}, 1500);
} else {
// Error
showAlert(result.error || 'Failed to delete bucket', 'danger');
}
} catch (error) {
console.error('Error deleting bucket:', error);
showAlert('Network error occurred while deleting bucket', 'danger');
}
bucketToDelete = '';
}
// Refresh buckets list
function refreshBuckets() {
location.reload();
}
// Export bucket list
function exportBucketList() {
// Get table data
const table = document.getElementById('bucketsTable');
if (!table) return;
const rows = Array.from(table.querySelectorAll('tbody tr'));
const data = rows.map(row => {
const cells = row.querySelectorAll('td');
if (cells.length < 5) return null; // Skip empty state row
return {
name: cells[0].textContent.trim(),
created: cells[1].textContent.trim(),
objects: cells[2].textContent.trim(),
size: cells[3].textContent.trim(),
quota: cells[4].textContent.trim()
};
}).filter(item => item !== null);
// Convert to CSV
const csv = [
['Name', 'Created', 'Objects', 'Size', 'Quota'].join(','),
...data.map(row => [
row.name,
row.created,
row.objects,
row.size,
row.quota
].join(','))
].join('\n');
// Download CSV
const blob = new Blob([csv], { type: 'text/csv' });
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `seaweedfs-buckets-${new Date().toISOString().split('T')[0]}.csv`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
window.URL.revokeObjectURL(url);
}
// showAlert is provided by modal-alerts.js with signature: showAlert(message, type)
// Format date for display
function formatDate(date) {
return new Date(date).toLocaleString();
}
// Copy text to clipboard with fallback for non-secure contexts
function adminCopyToClipboard(text) {
if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(text).then(() => {
showAlert('Copied to clipboard!', 'success');
}).catch(err => {
console.error('Failed to copy text: ', err);
fallbackCopyText(text);
});
} else {
fallbackCopyText(text);
}
}
function fallbackCopyText(text) {
const textArea = document.createElement("textarea");
textArea.value = text;
// Ensure textArea is not visible but part of the DOM
textArea.style.position = "fixed";
textArea.style.left = "-9999px";
textArea.style.top = "0";
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
const successful = document.execCommand('copy');
if (successful) {
showAlert('Copied to clipboard!', 'success');
} else {
showAlert('Failed to copy to clipboard', 'danger');
}
} catch (err) {
console.error('Fallback copy failed: ', err);
showAlert('Failed to copy to clipboard', 'danger');
}
document.body.removeChild(textArea);
}
// Dashboard refresh functionality
function refreshDashboard() {
location.reload();
}
// Cluster management functions
// Export volume servers data as CSV
function exportVolumeServers() {
const table = document.getElementById('hostsTable');
if (!table) {
showErrorMessage('No volume servers data to export');
return;
}
let csv = 'Server ID,Address,Data Center,Rack,Volumes,Capacity,Usage\n';
const rows = table.querySelectorAll('tbody tr');
rows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 7) {
const rowData = [
cells[0].textContent.trim(),
cells[1].textContent.trim(),
cells[2].textContent.trim(),
cells[3].textContent.trim(),
cells[4].textContent.trim(),
cells[5].textContent.trim(),
cells[6].textContent.trim()
];
csv += rowData.join(',') + '\n';
}
});
downloadCSV(csv, 'seaweedfs-volume-servers.csv');
}
// Export volumes data as CSV
function exportVolumes() {
const table = document.getElementById('volumesTable');
if (!table) {
showErrorMessage('No volumes data to export');
return;
}
// Get headers from the table (dynamically handles conditional columns)
const headerCells = table.querySelectorAll('thead th');
const headers = [];
headerCells.forEach((cell, index) => {
// Skip the Actions column (last column)
if (index < headerCells.length - 1) {
headers.push(cell.textContent.trim());
}
});
let csv = headers.join(',') + '\n';
const rows = table.querySelectorAll('tbody tr');
rows.forEach(row => {
const cells = row.querySelectorAll('td');
const rowData = [];
// Export all cells except the Actions column (last column)
for (let i = 0; i < cells.length - 1; i++) {
rowData.push(`"${cells[i].textContent.trim().replace(/"/g, '""')}"`);
}
csv += rowData.join(',') + '\n';
});
downloadCSV(csv, 'seaweedfs-volumes.csv');
}
// Export collections data as CSV
function exportCollections() {
const table = document.getElementById('collectionsTable');
if (!table) {
showAlert('Collections table not found', 'error');
return;
}
const headers = ['Collection Name', 'Volumes', 'Files', 'Size', 'Disk Types'];
const rows = [];
// Get table rows
const tableRows = table.querySelectorAll('tbody tr');
tableRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 5) {
rows.push([
cells[0].textContent.trim(),
cells[1].textContent.trim(),
cells[2].textContent.trim(),
cells[3].textContent.trim(),
formatDiskTypes(cells[4].textContent.trim())
]);
}
});
// Generate CSV
const csvContent = [headers, ...rows]
.map(row => row.map(cell => `"${cell}"`).join(','))
.join('\n');
// Download
const filename = `seaweedfs-collections-${new Date().toISOString().split('T')[0]}.csv`;
downloadCSV(csvContent, filename);
}
// Export Masters to CSV
function exportMasters() {
const table = document.getElementById('mastersTable');
if (!table) {
showAlert('Masters table not found', 'error');
return;
}
const headers = ['Address', 'Role', 'Suffrage'];
const rows = [];
// Get table rows
const tableRows = table.querySelectorAll('tbody tr');
tableRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 3) {
rows.push([
cells[0].textContent.trim(),
cells[1].textContent.trim(),
cells[2].textContent.trim()
]);
}
});
// Generate CSV
const csvContent = [headers, ...rows]
.map(row => row.map(cell => `"${cell}"`).join(','))
.join('\n');
// Download
const filename = `seaweedfs-masters-${new Date().toISOString().split('T')[0]}.csv`;
downloadCSV(csvContent, filename);
}
// Export Filers to CSV
function exportFilers() {
const table = document.getElementById('filersTable');
if (!table) {
showAlert('Filers table not found', 'error');
return;
}
const headers = ['Address', 'Version', 'Data Center', 'Rack', 'Created At'];
const rows = [];
// Get table rows
const tableRows = table.querySelectorAll('tbody tr');
tableRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 5) {
rows.push([
cells[0].textContent.trim(),
cells[1].textContent.trim(),
cells[2].textContent.trim(),
cells[3].textContent.trim(),
cells[4].textContent.trim()
]);
}
});
// Generate CSV
const csvContent = [headers, ...rows]
.map(row => row.map(cell => `"${cell}"`).join(','))
.join('\n');
// Download
const filename = `seaweedfs-filers-${new Date().toISOString().split('T')[0]}.csv`;
downloadCSV(csvContent, filename);
}
// Export Users to CSV
function exportUsers() {
const table = document.getElementById('usersTable');
if (!table) {
showAlert('Users table not found', 'error');
return;
}
const rows = table.querySelectorAll('tbody tr');
if (rows.length === 0) {
showErrorMessage('No users to export');
return;
}
let csvContent = 'Username,Email,Access Key,Status,Created,Last Login\n';
rows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 6) {
const username = cells[0].textContent.trim();
const email = cells[1].textContent.trim();
const accessKey = cells[2].textContent.trim();
const status = cells[3].textContent.trim();
const created = cells[4].textContent.trim();
const lastLogin = cells[5].textContent.trim();
csvContent += `"${username}","${email}","${accessKey}","${status}","${created}","${lastLogin}"\n`;
}
});
downloadCSV(csvContent, 'seaweedfs-users.csv');
}
// Confirm delete collection
function confirmDeleteCollection(button) {
const collectionName = button.getAttribute('data-collection-name');
document.getElementById('deleteCollectionName').textContent = collectionName;
const modal = new bootstrap.Modal(document.getElementById('deleteCollectionModal'));
modal.show();
// Set up confirm button
document.getElementById('confirmDeleteCollection').onclick = function () {
deleteCollection(collectionName);
};
}
// Delete collection
async function deleteCollection(collectionName) {
try {
const response = await fetch(`/api/collections/${collectionName}`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
}
});
if (response.ok) {
showSuccessMessage(`Collection "${collectionName}" deleted successfully`);
// Hide modal
const modal = bootstrap.Modal.getInstance(document.getElementById('deleteCollectionModal'));
modal.hide();
// Refresh page
setTimeout(() => {
window.location.reload();
}, 1000);
} else {
const error = await response.json();
showErrorMessage(`Failed to delete collection: ${error.error || 'Unknown error'}`);
}
} catch (error) {
console.error('Error deleting collection:', error);
showErrorMessage('Failed to delete collection. Please try again.');
}
}
// Download CSV utility function
function downloadCSV(csvContent, filename) {
const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
const link = document.createElement('a');
if (link.download !== undefined) {
const url = URL.createObjectURL(blob);
link.setAttribute('href', url);
link.setAttribute('download', filename);
link.style.visibility = 'hidden';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
}
// File Browser Functions
// Toggle select all checkboxes
function toggleSelectAll() {
const selectAll = document.getElementById('selectAll');
const checkboxes = document.querySelectorAll('.file-checkbox');
checkboxes.forEach(checkbox => {
checkbox.checked = selectAll.checked;
});
updateDeleteSelectedButton();
}
// Update visibility of delete selected button based on selection
function updateDeleteSelectedButton() {
const checkboxes = document.querySelectorAll('.file-checkbox:checked');
const deleteBtn = document.getElementById('deleteSelectedBtn');
if (deleteBtn) {
if (checkboxes.length > 0) {
deleteBtn.style.display = 'inline-block';
deleteBtn.innerHTML = `<i class="fas fa-trash me-1"></i>Delete Selected (${checkboxes.length})`;
} else {
deleteBtn.style.display = 'none';
}
}
}
// Update select all checkbox state based on individual selections
function updateSelectAllCheckbox() {
const selectAll = document.getElementById('selectAll');
const allCheckboxes = document.querySelectorAll('.file-checkbox');
const checkedCheckboxes = document.querySelectorAll('.file-checkbox:checked');
if (selectAll && allCheckboxes.length > 0) {
if (checkedCheckboxes.length === 0) {
selectAll.checked = false;
selectAll.indeterminate = false;
} else if (checkedCheckboxes.length === allCheckboxes.length) {
selectAll.checked = true;
selectAll.indeterminate = false;
} else {
selectAll.checked = false;
selectAll.indeterminate = true;
}
}
}
// Get selected file paths
function getSelectedFilePaths() {
const checkboxes = document.querySelectorAll('.file-checkbox:checked');
return Array.from(checkboxes).map(cb => cb.value);
}
// Confirm delete selected files
function confirmDeleteSelected() {
const selectedPaths = getSelectedFilePaths();
if (selectedPaths.length === 0) {
showAlert('No files selected', 'warning');
return;
}
const fileNames = selectedPaths.map(path => path.split('/').pop()).join(', ');
const message = selectedPaths.length === 1
? `Are you sure you want to delete "${fileNames}"?`
: `Are you sure you want to delete ${selectedPaths.length} selected items?\n\n${fileNames.substring(0, 200)}${fileNames.length > 200 ? '...' : ''}`;
if (typeof window.showConfirm === 'function') {
window.showConfirm(message, function () {
deleteSelectedFiles(selectedPaths);
}, { title: 'Confirm Delete' });
} else {
console.error('showConfirm() is not available');
}
}
// Delete multiple selected files
async function deleteSelectedFiles(filePaths) {
if (!filePaths || filePaths.length === 0) {
showAlert('No files selected', 'warning');
return;
}
// Disable the delete button during operation
const deleteBtn = document.getElementById('deleteSelectedBtn');
const originalText = deleteBtn.innerHTML;
deleteBtn.disabled = true;
deleteBtn.innerHTML = '<i class="fas fa-spinner fa-spin me-1"></i>Deleting...';
try {
const response = await fetch('/api/files/delete-multiple', {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ paths: filePaths })
});
if (response.ok) {
const result = await response.json();
if (result.deleted > 0) {
if (result.failed === 0) {
showAlert(`Successfully deleted ${result.deleted} item(s)`, 'success');
} else {
showAlert(`Deleted ${result.deleted} item(s), failed to delete ${result.failed} item(s)`, 'warning');
if (result.errors && result.errors.length > 0) {
console.warn('Deletion errors:', result.errors);
}
}
// Reload the page to update the file list
setTimeout(() => {
window.location.reload();
}, 1000);
} else {
let errorMessage = result.message || 'Failed to delete all selected items';
if (result.errors && result.errors.length > 0) {
errorMessage += ': ' + result.errors.join(', ');
}
showAlert(errorMessage, 'error');
}
} else {
const error = await response.json();
showAlert(`Failed to delete files: ${error.error || 'Unknown error'}`, 'error');
}
} catch (error) {
console.error('Delete error:', error);
showAlert('Failed to delete files', 'error');
} finally {
// Re-enable the button
deleteBtn.disabled = false;
deleteBtn.innerHTML = originalText;
}
}
// Create new folder
function createFolder() {
const modal = new bootstrap.Modal(document.getElementById('createFolderModal'));
modal.show();
}
// Upload file
function uploadFile() {
const modal = new bootstrap.Modal(document.getElementById('uploadFileModal'));
modal.show();
}
// Submit create folder form
async function submitCreateFolder() {
const folderName = document.getElementById('folderName').value.trim();
const currentPath = document.getElementById('currentPath').value;
if (!folderName) {
showErrorMessage('Please enter a folder name');
return;
}
// Validate folder name
if (folderName.includes('/') || folderName.includes('\\')) {
showErrorMessage('Folder names cannot contain / or \\ characters');
return;
}
// Additional validation for reserved names
const reservedNames = ['.', '..', 'CON', 'PRN', 'AUX', 'NUL'];
if (reservedNames.includes(folderName.toUpperCase())) {
showErrorMessage('This folder name is reserved and cannot be used');
return;
}
// Disable the button to prevent double submission
const submitButton = document.querySelector('#createFolderModal .btn-primary');
const originalText = submitButton.innerHTML;
submitButton.disabled = true;
submitButton.innerHTML = '<i class="fas fa-spinner fa-spin me-1"></i>Creating...';
try {
const response = await fetch('/api/files/create-folder', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
path: currentPath,
folder_name: folderName
})
});
if (response.ok) {
showSuccessMessage(`Folder "${folderName}" created successfully`);
// Hide modal
const modal = bootstrap.Modal.getInstance(document.getElementById('createFolderModal'));
modal.hide();
// Clear form
document.getElementById('folderName').value = '';
// Refresh page
setTimeout(() => {
window.location.reload();
}, 1000);
} else {
const error = await response.json();
showErrorMessage(`Failed to create folder: ${error.error || 'Unknown error'}`);
}
} catch (error) {
console.error('Create folder error:', error);
showErrorMessage('Failed to create folder. Please try again.');
} finally {
// Re-enable the button
submitButton.disabled = false;
submitButton.innerHTML = originalText;
}
}
// Submit upload file form
async function submitUploadFile() {
const fileInput = document.getElementById('fileInput');
const currentPath = document.getElementById('uploadPath').value;
if (!fileInput.files || fileInput.files.length === 0) {
showErrorMessage('Please select at least one file to upload');
return;
}
const files = Array.from(fileInput.files);
const totalSize = files.reduce((sum, file) => sum + file.size, 0);
// Validate total file size (limit to 500MB for admin interface)
const maxSize = 500 * 1024 * 1024; // 500MB total
if (totalSize > maxSize) {
showErrorMessage('Total file size exceeds 500MB limit. Please select fewer or smaller files.');
return;
}
// Individual file size validation removed - no limit per file
const formData = new FormData();
files.forEach(file => {
formData.append('files', file);
});
formData.append('path', currentPath);
// Show progress bar and disable button
const progressContainer = document.getElementById('uploadProgress');
const progressBar = progressContainer.querySelector('.progress-bar');
const uploadStatus = document.getElementById('uploadStatus');
const submitButton = document.querySelector('#uploadFileModal .btn-primary');
const originalText = submitButton.innerHTML;
progressContainer.style.display = 'block';
progressBar.style.width = '0%';
progressBar.setAttribute('aria-valuenow', '0');
progressBar.textContent = '0%';
uploadStatus.textContent = `Uploading ${files.length} file(s)...`;
submitButton.disabled = true;
submitButton.innerHTML = '<i class="fas fa-spinner fa-spin me-1"></i>Uploading...';
try {
const xhr = new XMLHttpRequest();
// Handle progress
xhr.upload.addEventListener('progress', function (e) {
if (e.lengthComputable) {
const percentComplete = Math.round((e.loaded / e.total) * 100);
progressBar.style.width = percentComplete + '%';
progressBar.setAttribute('aria-valuenow', percentComplete);
progressBar.textContent = percentComplete + '%';
uploadStatus.textContent = `Uploading ${files.length} file(s)... ${percentComplete}%`;
}
});
// Handle completion
xhr.addEventListener('load', function () {
if (xhr.status === 200) {
try {
const response = JSON.parse(xhr.responseText);
if (response.uploaded > 0) {
if (response.failed === 0) {
showSuccessMessage(`Successfully uploaded ${response.uploaded} file(s)`);
} else {
showSuccessMessage(response.message);
// Show details of failed uploads
if (response.errors && response.errors.length > 0) {
console.warn('Upload errors:', response.errors);
}
}
// Hide modal and refresh page
const modal = bootstrap.Modal.getInstance(document.getElementById('uploadFileModal'));
modal.hide();
setTimeout(() => {
window.location.reload();
}, 1000);
} else {
let errorMessage = response.message || 'All file uploads failed';
if (response.errors && response.errors.length > 0) {
errorMessage += ': ' + response.errors.join(', ');
}
showErrorMessage(errorMessage);
}
} catch (e) {
showErrorMessage('Upload completed but response format was unexpected');
}
progressContainer.style.display = 'none';
} else {
let errorMessage = 'Unknown error';
try {
const error = JSON.parse(xhr.responseText);
errorMessage = error.error || error.message || errorMessage;
} catch (e) {
errorMessage = `Server returned status ${xhr.status}`;
}
showErrorMessage(`Failed to upload files: ${errorMessage}`);
progressContainer.style.display = 'none';
}
});
// Handle errors
xhr.addEventListener('error', function () {
showErrorMessage('Failed to upload files. Please check your connection and try again.');
progressContainer.style.display = 'none';
});
// Handle abort
xhr.addEventListener('abort', function () {
showErrorMessage('File upload was cancelled.');
progressContainer.style.display = 'none';
});
// Send request
xhr.open('POST', '/api/files/upload');
xhr.send(formData);
} catch (error) {
console.error('Upload error:', error);
showErrorMessage('Failed to upload files. Please try again.');
progressContainer.style.display = 'none';
} finally {
// Re-enable the button
submitButton.disabled = false;
submitButton.innerHTML = originalText;
}
}
// Export file list to CSV
function exportFileList() {
const table = document.getElementById('fileTable');
if (!table) {
showAlert('File table not found', 'error');
return;
}
const headers = ['Name', 'Size', 'Type', 'Modified', 'Permissions'];
const rows = [];
// Get table rows
const tableRows = table.querySelectorAll('tbody tr');
tableRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells.length >= 6) {
rows.push([
cells[1].textContent.trim(), // Name
cells[2].textContent.trim(), // Size
cells[3].textContent.trim(), // Type
cells[4].textContent.trim(), // Modified
cells[5].textContent.trim() // Permissions
]);
}
});
// Generate CSV
const csvContent = [headers, ...rows]
.map(row => row.map(cell => `"${cell}"`).join(','))
.join('\n');
// Download
const filename = `seaweedfs-files-${new Date().toISOString().split('T')[0]}.csv`;
downloadCSV(csvContent, filename);
}
// Download file
function downloadFile(filePath) {
// Create download link using admin API
const downloadUrl = `/api/files/download?path=${encodeURIComponent(filePath)}`;
window.open(downloadUrl, '_blank');
}
// View file
async function viewFile(filePath) {
try {
const response = await fetch(`/api/files/view?path=${encodeURIComponent(filePath)}`);
if (!response.ok) {
const error = await response.json();
showAlert(`Failed to view file: ${error.error || 'Unknown error'}`, 'error');
return;
}
const data = await response.json();
showFileViewer(data);
} catch (error) {
console.error('View file error:', error);
showAlert('Failed to view file', 'error');
}
}
// Show file properties
async function showProperties(filePath) {
try {
const response = await fetch(`/api/files/properties?path=${encodeURIComponent(filePath)}`);
if (!response.ok) {
const error = await response.json();
showAlert(`Failed to get file properties: ${error.error || 'Unknown error'}`, 'error');
return;
}
const properties = await response.json();
showPropertiesModal(properties);
} catch (error) {
console.error('Properties error:', error);
showAlert('Failed to get file properties', 'error');
}
}
// Confirm delete file/folder
function confirmDelete(filePath) {
if (typeof window.showDeleteConfirm === 'function') {
window.showDeleteConfirm(filePath, function () {
deleteFile(filePath);
});
} else {
console.error('showDeleteConfirm() is not available');
}
}
// Delete file/folder
async function deleteFile(filePath) {
try {
const response = await fetch('/api/files/delete', {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ path: filePath })
});
if (response.ok) {
showAlert(`Successfully deleted "${filePath}"`, 'success');
// Reload the page to update the file list
window.location.reload();
} else {
const error = await response.json();
showAlert(`Failed to delete file: ${error.error || 'Unknown error'}`, 'error');
}
} catch (error) {
console.error('Delete error:', error);
showAlert('Failed to delete file', 'error');
}
}
// Setup file manager specific event handlers
function setupFileManagerEventHandlers() {
// Handle Enter key in folder name input
const folderNameInput = document.getElementById('folderName');
if (folderNameInput) {
folderNameInput.addEventListener('keypress', function (e) {
if (e.key === 'Enter') {
e.preventDefault();
submitCreateFolder();
}
});
}
// Handle file selection change to show preview
const fileInput = document.getElementById('fileInput');
if (fileInput) {
fileInput.addEventListener('change', function (e) {
updateFileListPreview();
});
}
// Setup checkbox event listeners for file selection
const checkboxes = document.querySelectorAll('.file-checkbox');
checkboxes.forEach(checkbox => {
checkbox.addEventListener('change', function () {
updateDeleteSelectedButton();
updateSelectAllCheckbox();
});
});
// Setup drag and drop for file uploads
setupDragAndDrop();
// Clear form when modals are hidden
const createFolderModal = document.getElementById('createFolderModal');
if (createFolderModal) {
createFolderModal.addEventListener('hidden.bs.modal', function () {
document.getElementById('folderName').value = '';
});
}
const uploadFileModal = document.getElementById('uploadFileModal');
if (uploadFileModal) {
uploadFileModal.addEventListener('hidden.bs.modal', function () {
const fileInput = document.getElementById('fileInput');
const progressContainer = document.getElementById('uploadProgress');
const fileListPreview = document.getElementById('fileListPreview');
fileInput.value = '';
progressContainer.style.display = 'none';
fileListPreview.style.display = 'none';
});
}
}
// Setup drag and drop functionality
function setupDragAndDrop() {
const dropZone = document.querySelector('.card-body'); // Main file listing area
const uploadModal = document.getElementById('uploadFileModal');
if (!dropZone || !uploadModal) return;
// Prevent default drag behaviors
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, preventDefaults, false);
document.body.addEventListener(eventName, preventDefaults, false);
});
// Highlight drop zone when item is dragged over it
['dragenter', 'dragover'].forEach(eventName => {
dropZone.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, unhighlight, false);
});
// Handle dropped files
dropZone.addEventListener('drop', handleDrop, false);
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
function highlight(e) {
dropZone.classList.add('drag-over');
// Add some visual feedback
if (!dropZone.querySelector('.drag-overlay')) {
const overlay = document.createElement('div');
overlay.className = 'drag-overlay';
overlay.innerHTML = `
<div class="text-center p-5">
<i class="fas fa-cloud-upload-alt fa-3x text-primary mb-3"></i>
<h5>Drop files here to upload</h5>
<p class="text-muted">Release to upload files to this directory</p>
</div>
`;
overlay.style.cssText = `
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.9);
border: 2px dashed #007bff;
border-radius: 0.375rem;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
`;
dropZone.style.position = 'relative';
dropZone.appendChild(overlay);
}
}
function unhighlight(e) {
dropZone.classList.remove('drag-over');
const overlay = dropZone.querySelector('.drag-overlay');
if (overlay) {
overlay.remove();
}
}
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
if (files.length > 0) {
// Open upload modal and set files
const fileInput = document.getElementById('fileInput');
if (fileInput) {
// Create a new FileList-like object
const fileArray = Array.from(files);
// Set files to input (this is a bit tricky with file inputs)
const dataTransfer = new DataTransfer();
fileArray.forEach(file => dataTransfer.items.add(file));
fileInput.files = dataTransfer.files;
// Update preview and show modal
updateFileListPreview();
const modal = new bootstrap.Modal(uploadModal);
modal.show();
}
}
}
}
// Update file list preview when files are selected
function updateFileListPreview() {
const fileInput = document.getElementById('fileInput');
const fileListPreview = document.getElementById('fileListPreview');
const selectedFilesList = document.getElementById('selectedFilesList');
if (!fileInput.files || fileInput.files.length === 0) {
fileListPreview.style.display = 'none';
return;
}
const files = Array.from(fileInput.files);
const totalSize = files.reduce((sum, file) => sum + file.size, 0);
let html = `<div class="d-flex justify-content-between align-items-center mb-2">
<strong>${files.length} file(s) selected</strong>
<small class="text-muted">Total: ${formatBytes(totalSize)}</small>
</div>`;
files.forEach((file, index) => {
const fileIcon = getFileIconByName(file.name);
html += `<div class="d-flex justify-content-between align-items-center py-1 ${index > 0 ? 'border-top' : ''}">
<div class="d-flex align-items-center">
<i class="fas ${fileIcon} me-2 text-muted"></i>
<span class="text-truncate" style="max-width: 200px;" title="${file.name}">${file.name}</span>
</div>
<small class="text-muted">${formatBytes(file.size)}</small>
</div>`;
});
selectedFilesList.innerHTML = html;
fileListPreview.style.display = 'block';
}
// Get file icon based on file name/extension
function getFileIconByName(fileName) {
const ext = fileName.split('.').pop().toLowerCase();
switch (ext) {
case 'jpg':
case 'jpeg':
case 'png':
case 'gif':
case 'bmp':
case 'svg':
return 'fa-image';
case 'mp4':
case 'avi':
case 'mov':
case 'wmv':
case 'flv':
return 'fa-video';
case 'mp3':
case 'wav':
case 'flac':
case 'aac':
return 'fa-music';
case 'pdf':
return 'fa-file-pdf';
case 'doc':
case 'docx':
return 'fa-file-word';
case 'xls':
case 'xlsx':
return 'fa-file-excel';
case 'ppt':
case 'pptx':
return 'fa-file-powerpoint';
case 'txt':
case 'md':
return 'fa-file-text';
case 'zip':
case 'rar':
case '7z':
case 'tar':
case 'gz':
return 'fa-file-archive';
case 'js':
case 'ts':
case 'html':
case 'css':
case 'json':
case 'xml':
return 'fa-file-code';
default:
return 'fa-file';
}
}
// Quota Management Functions
// Show quota management modal
function showQuotaModal(bucketName, currentQuotaMB, quotaEnabled) {
document.getElementById('quotaBucketName').value = bucketName;
document.getElementById('quotaEnabled').checked = quotaEnabled;
// Convert quota to appropriate unit and set values
const quotaBytes = currentQuotaMB * 1024 * 1024; // Convert MB to bytes
const { size, unit } = convertBytesToBestUnit(quotaBytes);
document.getElementById('quotaSizeMB').value = size;
document.getElementById('quotaUnitMB').value = unit;
// Show/hide quota size settings based on enabled state
const quotaSizeSettings = document.getElementById('quotaSizeSettings');
if (quotaEnabled) {
quotaSizeSettings.style.display = 'block';
} else {
quotaSizeSettings.style.display = 'none';
}
const modal = new bootstrap.Modal(document.getElementById('manageQuotaModal'));
modal.show();
}
// Convert bytes to the best unit (TB, GB, or MB)
function convertBytesToBestUnit(bytes) {
if (bytes === 0) {
return { size: 0, unit: 'MB' };
}
// Check if it's a clean TB value
if (bytes >= 1024 * 1024 * 1024 * 1024 && bytes % (1024 * 1024 * 1024 * 1024) === 0) {
return { size: bytes / (1024 * 1024 * 1024 * 1024), unit: 'TB' };
}
// Check if it's a clean GB value
if (bytes >= 1024 * 1024 * 1024 && bytes % (1024 * 1024 * 1024) === 0) {
return { size: bytes / (1024 * 1024 * 1024), unit: 'GB' };
}
// Default to MB
return { size: bytes / (1024 * 1024), unit: 'MB' };
}
// Handle quota update form submission
async function handleUpdateQuota(event) {
event.preventDefault();
const form = event.target;
const formData = new FormData(form);
const bucketName = document.getElementById('quotaBucketName').value;
const quotaData = {
quota_enabled: formData.get('quota_enabled') === 'on',
quota_size: parseInt(formData.get('quota_size')) || 0,
quota_unit: formData.get('quota_unit') || 'MB'
};
try {
const response = await fetch(`/api/s3/buckets/${bucketName}/quota`, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(quotaData)
});
const result = await response.json();
if (response.ok) {
// Success
showAlert(`Quota for bucket "${bucketName}" updated successfully!`, 'success');
// Close modal
const modal = bootstrap.Modal.getInstance(document.getElementById('manageQuotaModal'));
modal.hide();
// Refresh the page after a short delay
setTimeout(() => {
location.reload();
}, 1500);
} else {
// Error
showAlert(result.error || 'Failed to update bucket quota', 'danger');
}
} catch (error) {
console.error('Error updating bucket quota:', error);
showAlert('Network error occurred while updating bucket quota', 'danger');
}
}
// Show file viewer modal
function showFileViewer(data) {
const file = data.file;
const content = data.content || '';
const viewable = data.viewable !== false;
// Create modal HTML
const modalHtml = `
<div class="modal fade" id="fileViewerModal" tabindex="-1" aria-labelledby="fileViewerModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="fileViewerModalLabel">
<i class="fas fa-eye me-2"></i>File Viewer: ${file.name}
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
${viewable ? createFileViewerContent(file, content) : createNonViewableContent(data.reason || 'File cannot be viewed')}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" onclick="downloadFile('${file.full_path}')">
<i class="fas fa-download me-1"></i>Download
</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
`;
// Remove existing modal if any
const existingModal = document.getElementById('fileViewerModal');
if (existingModal) {
existingModal.remove();
}
// Add modal to DOM
document.body.insertAdjacentHTML('beforeend', modalHtml);
// Show modal
const modal = new bootstrap.Modal(document.getElementById('fileViewerModal'));
modal.show();
// Clean up when modal is hidden
document.getElementById('fileViewerModal').addEventListener('hidden.bs.modal', function () {
this.remove();
});
}
// Create file viewer content based on file type
function createFileViewerContent(file, content) {
if (file.mime.startsWith('image/')) {
return `
<div class="text-center">
<img src="/api/files/download?path=${encodeURIComponent(file.full_path)}"
class="img-fluid" alt="${file.name}" style="max-height: 500px;">
</div>
`;
} else if (file.mime.startsWith('text/') || file.mime === 'application/json' || file.mime === 'application/javascript') {
const language = getLanguageFromMime(file.mime, file.name);
return `
<div class="mb-3">
<small class="text-muted">
<i class="fas fa-info-circle me-1"></i>
Size: ${formatBytes(file.size)} | Type: ${file.mime}
</small>
</div>
<pre><code class="language-${language}" style="max-height: 400px; overflow-y: auto;">${escapeHtml(content)}</code></pre>
`;
} else if (file.mime === 'application/pdf') {
return `
<div class="text-center">
<embed src="/api/files/download?path=${encodeURIComponent(file.full_path)}"
type="application/pdf" width="100%" height="500px">
</div>
`;
} else {
return createNonViewableContent('This file type cannot be previewed in the browser.');
}
}
// Create non-viewable content message
function createNonViewableContent(reason) {
return `
<div class="text-center py-5">
<i class="fas fa-file fa-3x text-muted mb-3"></i>
<h5 class="text-muted">Cannot preview file</h5>
<p class="text-muted">${reason}</p>
</div>
`;
}
// Get language for syntax highlighting
function getLanguageFromMime(mime, filename) {
// First check MIME type
switch (mime) {
case 'application/json': return 'json';
case 'application/javascript': return 'javascript';
case 'text/html': return 'html';
case 'text/css': return 'css';
case 'application/xml': return 'xml';
case 'text/typescript': return 'typescript';
case 'text/x-python': return 'python';
case 'text/x-go': return 'go';
case 'text/x-java': return 'java';
case 'text/x-c': return 'c';
case 'text/x-c++': return 'cpp';
case 'text/x-c-header': return 'c';
case 'text/x-shellscript': return 'bash';
case 'text/x-php': return 'php';
case 'text/x-ruby': return 'ruby';
case 'text/x-perl': return 'perl';
case 'text/x-rust': return 'rust';
case 'text/x-swift': return 'swift';
case 'text/x-kotlin': return 'kotlin';
case 'text/x-scala': return 'scala';
case 'text/x-dockerfile': return 'dockerfile';
case 'text/yaml': return 'yaml';
case 'text/csv': return 'csv';
case 'text/sql': return 'sql';
case 'text/markdown': return 'markdown';
}
// Fallback to file extension
const ext = filename.split('.').pop().toLowerCase();
switch (ext) {
case 'js': case 'mjs': return 'javascript';
case 'ts': return 'typescript';
case 'py': return 'python';
case 'go': return 'go';
case 'java': return 'java';
case 'cpp': case 'cc': case 'cxx': case 'c++': return 'cpp';
case 'c': return 'c';
case 'h': case 'hpp': return 'c';
case 'sh': case 'bash': case 'zsh': case 'fish': return 'bash';
case 'php': return 'php';
case 'rb': return 'ruby';
case 'pl': return 'perl';
case 'rs': return 'rust';
case 'swift': return 'swift';
case 'kt': return 'kotlin';
case 'scala': return 'scala';
case 'yml': case 'yaml': return 'yaml';
case 'md': case 'markdown': return 'markdown';
case 'sql': return 'sql';
case 'csv': return 'csv';
case 'dockerfile': return 'dockerfile';
case 'gitignore': case 'gitattributes': return 'text';
case 'env': return 'bash';
case 'cfg': case 'conf': case 'ini': case 'properties': return 'ini';
default: return 'text';
}
}
// Show properties modal
function showPropertiesModal(properties) {
// Create modal HTML
const modalHtml = `
<div class="modal fade" id="propertiesModal" tabindex="-1" aria-labelledby="propertiesModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="propertiesModalLabel">
<i class="fas fa-info me-2"></i>Properties: ${properties.name}
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
${createPropertiesContent(properties)}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
`;
// Remove existing modal if any
const existingModal = document.getElementById('propertiesModal');
if (existingModal) {
existingModal.remove();
}
// Add modal to DOM
document.body.insertAdjacentHTML('beforeend', modalHtml);
// Show modal
const modal = new bootstrap.Modal(document.getElementById('propertiesModal'));
modal.show();
// Clean up when modal is hidden
document.getElementById('propertiesModal').addEventListener('hidden.bs.modal', function () {
this.remove();
});
}
// Create properties content
function createPropertiesContent(properties) {
let html = `
<div class="row">
<div class="col-md-6">
<h6 class="text-primary"><i class="fas fa-file me-1"></i>Basic Information</h6>
<table class="table table-sm">
<tr><td><strong>Name:</strong></td><td>${properties.name}</td></tr>
<tr><td><strong>Full Path:</strong></td><td><code>${properties.full_path}</code></td></tr>
<tr><td><strong>Type:</strong></td><td>${properties.is_directory ? 'Directory' : 'File'}</td></tr>
`;
if (!properties.is_directory) {
html += `
<tr><td><strong>Size:</strong></td><td>${properties.size_formatted || formatBytes(properties.size || 0)}</td></tr>
<tr><td><strong>MIME Type:</strong></td><td>${properties.mime_type || 'Unknown'}</td></tr>
`;
}
html += `
</table>
</div>
<div class="col-md-6">
<h6 class="text-primary"><i class="fas fa-clock me-1"></i>Timestamps</h6>
<table class="table table-sm">
`;
if (properties.modified_time) {
html += `<tr><td><strong>Modified:</strong></td><td>${properties.modified_time}</td></tr>`;
}
if (properties.created_time) {
html += `<tr><td><strong>Created:</strong></td><td>${properties.created_time}</td></tr>`;
}
html += `
</table>
<h6 class="text-primary"><i class="fas fa-shield-alt me-1"></i>Permissions</h6>
<table class="table table-sm">
<tr><td><strong>Mode:</strong></td><td><code>${properties.file_mode_formatted || properties.file_mode}</code></td></tr>
<tr><td><strong>UID:</strong></td><td>${properties.uid || 'N/A'}</td></tr>
<tr><td><strong>GID:</strong></td><td>${properties.gid || 'N/A'}</td></tr>
</table>
</div>
</div>
`;
// Add TTL information if available
if (properties.ttl_seconds && properties.ttl_seconds > 0) {
html += `
<div class="row mt-3">
<div class="col-12">
<h6 class="text-primary"><i class="fas fa-hourglass-half me-1"></i>TTL (Time To Live)</h6>
<table class="table table-sm">
<tr><td><strong>TTL:</strong></td><td>${properties.ttl_formatted || properties.ttl_seconds + ' seconds'}</td></tr>
</table>
</div>
</div>
`;
}
// Add chunk information if available
if (properties.chunks && properties.chunks.length > 0) {
html += `
<div class="row mt-3">
<div class="col-12">
<h6 class="text-primary"><i class="fas fa-puzzle-piece me-1"></i>Chunks (${properties.chunk_count})</h6>
<div class="table-responsive" style="max-height: 200px; overflow-y: auto;">
<table class="table table-sm">
<thead>
<tr>
<th>File ID</th>
<th>Offset</th>
<th>Size</th>
<th>ETag</th>
</tr>
</thead>
<tbody>
`;
properties.chunks.forEach(chunk => {
html += `
<tr>
<td><code class="small">${chunk.file_id}</code></td>
<td>${formatBytes(chunk.offset)}</td>
<td>${formatBytes(chunk.size)}</td>
<td><code class="small">${chunk.e_tag || 'N/A'}</code></td>
</tr>
`;
});
html += `
</tbody>
</table>
</div>
</div>
</div>
`;
}
// Add extended attributes if available
if (properties.extended && Object.keys(properties.extended).length > 0) {
html += `
<div class="row mt-3">
<div class="col-12">
<h6 class="text-primary"><i class="fas fa-tags me-1"></i>Extended Attributes</h6>
<table class="table table-sm">
`;
Object.entries(properties.extended).forEach(([key, value]) => {
html += `<tr><td><strong>${key}:</strong></td><td>${value}</td></tr>`;
});
html += `
</table>
</div>
</div>
`;
}
return html;
}
// Utility function to escape HTML
function escapeHtml(text) {
var map = {
'&': '&amp;',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return text.replace(/[&<>"']/g, function (m) { return map[m]; });
}
// ============================================================================
// SHARED MODAL UTILITIES FOR ACCESS KEY MANAGEMENT
// ============================================================================
// HTML escaping helper to prevent XSS
function escapeHtmlForAttribute(text) {
if (!text) return '';
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML.replace(/"/g, '&quot;').replace(/'/g, '&#39;');
}
function showModal(title, content) {
// Create a dynamic modal
const modalId = 'dynamicModal_' + Date.now();
// Create modal structure using DOM to prevent XSS in title
const modalDiv = document.createElement('div');
modalDiv.className = 'modal fade';
modalDiv.id = modalId;
modalDiv.setAttribute('tabindex', '-1');
modalDiv.setAttribute('role', 'dialog');
const modalDialog = document.createElement('div');
modalDialog.className = 'modal-dialog modal-lg';
modalDialog.setAttribute('role', 'document');
const modalContent = document.createElement('div');
modalContent.className = 'modal-content';
// Header
const modalHeader = document.createElement('div');
modalHeader.className = 'modal-header';
const modalTitle = document.createElement('h5');
modalTitle.className = 'modal-title';
modalTitle.textContent = title; // Safe - uses textContent
const closeButton = document.createElement('button');
closeButton.type = 'button';
closeButton.className = 'btn-close';
closeButton.setAttribute('data-bs-dismiss', 'modal');
modalHeader.appendChild(modalTitle);
modalHeader.appendChild(closeButton);
// Body (content may contain HTML, so use innerHTML)
const modalBody = document.createElement('div');
modalBody.className = 'modal-body';
modalBody.innerHTML = content;
// Footer
const modalFooter = document.createElement('div');
modalFooter.className = 'modal-footer';
const closeFooterButton = document.createElement('button');
closeFooterButton.type = 'button';
closeFooterButton.className = 'btn btn-secondary';
closeFooterButton.setAttribute('data-bs-dismiss', 'modal');
closeFooterButton.textContent = 'Close';
modalFooter.appendChild(closeFooterButton);
// Assemble modal
modalContent.appendChild(modalHeader);
modalContent.appendChild(modalBody);
modalContent.appendChild(modalFooter);
modalDialog.appendChild(modalContent);
modalDiv.appendChild(modalDialog);
// Add modal to body
document.body.appendChild(modalDiv);
// Show modal
const modal = new bootstrap.Modal(document.getElementById(modalId));
modal.show();
// Remove modal from DOM when hidden
document.getElementById(modalId).addEventListener('hidden.bs.modal', function () {
this.remove();
});
}
function showSecretKey(accessKey, secretKey) {
const modalId = 'secretKeyModal_' + Date.now();
const escapedAccessKey = escapeHtmlForAttribute(accessKey);
const escapedSecretKey = escapeHtmlForAttribute(secretKey);
const content = `
<div class="alert alert-info">
<i class="fas fa-info-circle me-2"></i>
<strong>Access Key Details:</strong> These credentials provide access to your object storage. Keep them secure and don't share them.
</div>
<div class="mb-3">
<label class="form-label"><strong>Access Key:</strong></label>
<div class="input-group">
<input type="text" id="${modalId}_accessKey" class="form-control" value="${escapedAccessKey}" readonly>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_accessKey')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="mb-3">
<label class="form-label"><strong>Secret Key:</strong></label>
<div class="input-group">
<input type="text" id="${modalId}_secretKey" class="form-control" value="${escapedSecretKey}" readonly>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_secretKey')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="mb-3">
<label class="form-label"><strong>Export Commands (for easy copy & paste):</strong></label>
<div class="input-group">
<textarea id="${modalId}_exportCommands" class="form-control font-monospace" rows="2" readonly>export AWS_ACCESS_KEY_ID=${escapedAccessKey}
export AWS_SECRET_ACCESS_KEY=${escapedSecretKey}</textarea>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_exportCommands')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
`;
showModal('Access Key Details', content);
}
function showNewAccessKeyModal(accessKeyData) {
const modalId = 'newKeyModal_' + Date.now();
const escapedAccessKey = escapeHtmlForAttribute(accessKeyData.access_key);
const escapedSecretKey = escapeHtmlForAttribute(accessKeyData.secret_key);
const content = `
<div class="alert alert-success">
<i class="fas fa-check-circle me-2"></i>
<strong>Success!</strong> Your new access key has been created.
</div>
<div class="alert alert-warning">
<i class="fas fa-exclamation-triangle me-2"></i>
<strong>Important:</strong> This is the only time the secret key will be displayed. Please save it securely.
</div>
<div class="mb-3">
<label class="form-label"><strong>Access Key:</strong></label>
<div class="input-group">
<input type="text" id="${modalId}_accessKey" class="form-control" value="${escapedAccessKey}" readonly>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_accessKey')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="mb-3">
<label class="form-label"><strong>Secret Key:</strong></label>
<div class="input-group">
<input type="text" id="${modalId}_secretKey" class="form-control" value="${escapedSecretKey}" readonly>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_secretKey')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="mb-3">
<label class="form-label"><strong>Export Commands (for easy copy & paste):</strong></label>
<div class="input-group">
<textarea id="${modalId}_exportCommands" class="form-control font-monospace" rows="2" readonly>export AWS_ACCESS_KEY_ID=${escapedAccessKey}
export AWS_SECRET_ACCESS_KEY=${escapedSecretKey}</textarea>
<button class="btn btn-outline-secondary" onclick="copyFromInput('${modalId}_exportCommands')">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
`;
showModal('New Access Key Created', content);
}
// Helper function to copy from an input field
function copyFromInput(inputId) {
const input = document.getElementById(inputId);
if (input) {
input.select();
input.setSelectionRange(0, 99999); // For mobile devices
try {
const successful = document.execCommand('copy');
if (successful) {
showAlert('Copied to clipboard!', 'success');
} else {
// Try modern clipboard API as fallback
navigator.clipboard.writeText(input.value).then(() => {
showAlert('Copied to clipboard!', 'success');
}).catch(() => {
showAlert('Failed to copy', 'danger');
});
}
} catch (err) {
// Try modern clipboard API as fallback
navigator.clipboard.writeText(input.value).then(() => {
showAlert('Copied to clipboard!', 'success');
}).catch(() => {
showAlert('Failed to copy', 'danger');
});
}
}
}