Sha256: f9a198dfbb5e3dc02bb550be1e39c368112dfbc22ea017266250ba2920b78178

Contents?: true

Size: 1.85 KB

Versions: 4

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true

module Geminabox
  module Proxy
    class FileHandler

      attr_reader :file_name

      def initialize(file_name)
        @file_name = file_name
        ensure_destination_exists
      end

      def local_path
        File.expand_path(file_name, root_path)
      end

      def root_path
        Geminabox.data
      end

      def local_file_exists?
        file_exists? local_path
      end

      def proxy_file_exists?
        file_exists? proxy_path
      end

      def proxy_path
        File.expand_path(file_name, proxy_folder_path)
      end

      def file_exists?(path)
        File.exist? path
      end

      def proxy_folder_path
        File.join(root_path, proxy_folder_name)
      end

      def proxy_folder_name
        'proxy'
      end

      def remote_content
        Geminabox.http_adapter.get_content(remote_url)
      rescue
        return nil if Geminabox.allow_remote_failure
        raise GemStoreError.new(500, "Unable to get content from #{remote_url}")
      end

      def remote_url
        URI.join(Geminabox.ruby_gems_url, file_name)
      end

      def local_content
        File.binread(local_path)
      end

      private
      def encoding
        "UTF-8"
      end

      def ensure_destination_exists
        create_local_folder unless local_folder_exists?
        create_proxy_folder unless proxy_folder_exists?
      end

      def proxy_file_folder
        File.dirname proxy_path
      end

      def proxy_folder_exists?
        Dir.exist?(proxy_file_folder)
      end

      def create_proxy_folder
        FileUtils.mkdir_p(proxy_file_folder)
      end

      def local_file_folder
        File.dirname local_path
      end

      def local_folder_exists?
        Dir.exist?(local_file_folder)
      end

      def create_local_folder
        FileUtils.mkdir_p(local_file_folder)
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
geminabox-2.1.0 lib/geminabox/proxy/file_handler.rb
geminabox-2.1.0.rc.1 lib/geminabox/proxy/file_handler.rb
geminabox-2.0.0 lib/geminabox/proxy/file_handler.rb
geminabox-2.0.0.rc.1 lib/geminabox/proxy/file_handler.rb