42 lines
912 B
Crystal
42 lines
912 B
Crystal
|
# 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>
|
||
|
|
||
|
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
|