65cd753818
Backend: - Add source/used_by/available/error fields to diskUsage in system status - collectDiskUsage() now reads /proc/mounts, samba shares and NFS exports from DB - Paths are deduplicated; shared paths list all shares/exports using them - syscall.Statfs errors surface as available=false with user-facing error - collectServiceStatus made a method of Server (receiver consistency) Frontend: - Settings page now shows two cards: mount points and shared resources - Each path shows source badge (Sistema/Mount/SMB/NFS), used_by chips, progress bar - Unavailable paths show amber warning instead of progress bar - DiskUsage interface updated with new fields - NFSExport interface updated with structured fields (fsid, async, etc) - NFS page updated to use new export fields
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package db
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID int64 `json:"id"`
|
|
Username string `json:"username"`
|
|
UID *int64 `json:"uid,omitempty"`
|
|
GID *int64 `json:"gid,omitempty"`
|
|
Groups []string `json:"groups"`
|
|
SMBEnabled bool `json:"smb_enabled"`
|
|
Disabled bool `json:"disabled"`
|
|
// PendingPassword holds a not-yet-applied password. Never serialized.
|
|
PendingPassword string `json:"-"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type Admin struct {
|
|
ID int64 `json:"id"`
|
|
Username string `json:"username"`
|
|
PasswordHash string `json:"-"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type SambaShare struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
Comment string `json:"comment"`
|
|
ReadOnly bool `json:"read_only"`
|
|
GuestOK bool `json:"guest_ok"`
|
|
ValidUsers []string `json:"valid_users"`
|
|
ValidGroups []string `json:"valid_groups"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type NFSExport struct {
|
|
ID int64 `json:"id"`
|
|
Path string `json:"path"`
|
|
Clients []string `json:"clients"`
|
|
ReadOnly bool `json:"read_only"`
|
|
Async bool `json:"async"`
|
|
RootSquash bool `json:"root_squash"`
|
|
SubtreeCheck bool `json:"subtree_check"`
|
|
FSID int64 `json:"fsid"`
|
|
Advanced string `json:"advanced"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type NFSAdvanced struct {
|
|
AllSquash bool `json:"all_squash"`
|
|
Secure bool `json:"secure"`
|
|
WDelay bool `json:"wdelay"`
|
|
Hide bool `json:"hide"`
|
|
Crossmnt bool `json:"crossmnt"`
|
|
}
|
|
|
|
type DirtyModule struct {
|
|
Module string `json:"module"`
|
|
MarkedAt time.Time `json:"marked_at"`
|
|
}
|
|
|
|
type ApplyLogEntry struct {
|
|
ID int64 `json:"id"`
|
|
Module string `json:"module"`
|
|
Message string `json:"message"`
|
|
Success bool `json:"success"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|