# SPDX-License-Identifier: GPL-3.0-or-later # # SPDX-FileCopyrightText: 2023 Glenn Y. Rolland # Copyright © 2023 Glenn Y. Rolland require "shellwords" require "./abstract_filesystem_config" require "./concerns/base" module GX::Models class HttpDirFSConfig < AbstractFilesystemConfig getter url : String = "" include Concerns::Base def _mounted_prefix() "httpdirfs" end def mounted_name() @name end def _mount_action() mount_point_safe = @mount_point raise "Invalid mount point" if mount_point_safe.nil? process = Process.new( "httpdirfs", ["#{@url}", mount_point_safe], input: STDIN, output: STDOUT, error: STDERR ) unless process.wait.success? puts "Error mounting the filesystem".colorize(:red) return end end end end