mfm/src/config.cr

103 lines
2.7 KiB
Crystal
Raw Normal View History

2023-10-25 12:01:46 +00:00
# SPDX-License-Identifier: GPL-3.0-or-later
#
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
2023-10-22 21:23:56 +00:00
require "crinja"
2023-10-24 13:53:28 +00:00
require "./filesystems"
2023-10-22 21:23:56 +00:00
module GX
class Config
Log = ::Log.for("config")
enum Mode
ConfigAdd
ConfigDelete
ConfigEdit
ShowVersion
Mount
end
2023-10-22 21:23:56 +00:00
record NoArgs
record AddArgs, name : String, path : String
record DelArgs, name : String
2023-10-24 13:53:28 +00:00
getter filesystems : Array(Filesystem)
getter home_dir : String
property verbose : Bool
property mode : Mode
2023-11-18 22:31:04 +00:00
property path : String?
property args : AddArgs.class | DelArgs.class | NoArgs.class
2023-10-22 21:23:56 +00:00
def initialize()
if !ENV["HOME"]?
raise "Home directory not found"
end
@home_dir = ENV["HOME"]
@verbose = false
@mode = Mode::Mount
2023-10-24 13:53:28 +00:00
@filesystems = [] of Filesystem
2023-11-18 22:31:04 +00:00
@path = nil
@args = NoArgs
end
def detect_config_file()
possible_files = [
File.join(@home_dir, ".config", "mfm", "config.yaml"),
File.join(@home_dir, ".config", "mfm", "config.yml"),
File.join(@home_dir, ".config", "mfm.yaml"),
File.join(@home_dir, ".config", "mfm.yml"),
File.join("/etc", "mfm", "config.yaml"),
File.join("/etc", "mfm", "config.yml"),
]
possible_files.each do |file_path|
if File.exists?(file_path)
Log.info { "Configuration file found: #{file_path}" }
return file_path if File.exists?(file_path)
else
Log.debug { "Configuration file not found: #{file_path}" }
end
end
Log.error { "No configuration file found in any of the standard locations" }
raise "Configuration file not found"
end
def load_from_file
2023-11-18 22:31:04 +00:00
path = @path
if path.nil?
path = detect_config_file()
end
@path = path
2023-10-24 13:53:28 +00:00
@filesystems = [] of Filesystem
2023-11-18 22:31:04 +00:00
if !File.exists? path
Log.error { "File #{path} does not exist!".colorize(:red) }
exit(1)
end
2023-11-18 22:31:04 +00:00
load_filesystems(path)
end
2023-10-24 13:53:28 +00:00
private def load_filesystems(config_path : String)
file_data = File.read(config_path)
# FIXME: render template on a value basis (instead of global)
file_patched = Crinja.render(file_data, {"env" => ENV.to_h})
yaml_data = YAML.parse(file_patched)
vaults_data = yaml_data["filesystems"].as_a
2023-10-24 13:53:28 +00:00
vaults_data.each do |filesystem_data|
type = filesystem_data["type"].as_s
name = filesystem_data["name"].as_s
# encrypted_path = filesystem_data["encrypted_path"].as_s
@filesystems << Filesystem.from_yaml(filesystem_data.to_yaml)
# @filesystems << Filesystem.new(name, encrypted_path, "#{name}.Open")
end
2023-10-22 21:23:56 +00:00
end
end
end