1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package filesystem
- import (
- "encoding/json"
- "errors"
- "imuslab.com/arozos/mod/filesystem/arozfs"
- )
- // FileSystem configuration. Append more lines if required.
- type FileSystemOption struct {
- Name string `json:"name"` //Display name of this device
- Uuid string `json:"uuid"` //UUID of this device, e.g. S1
- Path string `json:"path"` //Path for the storage root
- Access string `json:"access,omitempty"` //Access right, allow {readonly, readwrite}
- Hierarchy string `json:"hierarchy"` //Folder hierarchy, allow {public, user}
- Automount bool `json:"automount"` //Automount this device if exists
- Filesystem string `json:"filesystem,omitempty"` //Support {"ext4","ext2", "ext3", "fat", "vfat", "ntfs"}
- Mountdev string `json:"mountdev,omitempty"` //Device file (e.g. /dev/sda1)
- Mountpt string `json:"mountpt,omitempty"` //Device mount point (e.g. /media/storage1)
- Username string `json:"username,omitempty"` //Username if the storage require auth
- Password string `json:"password,omitempty"` //Password if the storage require auth
- }
- // Parse a list of StorageConfig from the given json content
- func loadConfigFromJSON(jsonContent []byte) ([]FileSystemOption, error) {
- storageInConfig := []FileSystemOption{}
- //Try to parse the JSON content
- err := json.Unmarshal(jsonContent, &storageInConfig)
- return storageInConfig, err
- }
- // Validate if the given options are correct
- func ValidateOption(options *FileSystemOption) error {
- //Check if path exists
- if options.Name == "" {
- return errors.New("File System Handler name cannot be empty")
- }
- if options.Uuid == "" {
- return errors.New("File System Handler uuid cannot be empty")
- }
- //Check if uuid is reserved by system
- if inSlice([]string{"user", "tmp", "network"}, options.Uuid) {
- return errors.New("This File System Handler UUID is reserved by the system")
- }
- if !FileExists(options.Path) && !arozfs.IsNetworkDrive(options.Filesystem) {
- return errors.New("Path not exists, given: " + options.Path)
- }
- //Check if access mode is supported
- if !inSlice([]string{arozfs.FsReadOnly, arozfs.FsReadWrite}, options.Access) {
- return errors.New("Not supported access mode: " + options.Access)
- }
- //Check if hierarchy is supported
- if !inSlice([]string{"user", "public"}, options.Hierarchy) {
- return errors.New("Not supported hierarchy: " + options.Hierarchy)
- }
- //Check disk format is supported
- if !inSlice(arozfs.GetSupportedFileSystemTypes(), options.Filesystem) {
- return errors.New("Not supported file system type: " + options.Filesystem)
- }
- //Check if mount point exists
- if options.Mountpt != "" && !arozfs.IsNetworkDrive(options.Filesystem) {
- return errors.New("Mount point cannot be empty")
- }
- return nil
- }
|