Sha256: 52ae29a46f5faf591620fece39cd235aa897711447b19102abf181a8023fbce4
Contents?: true
Size: 1.43 KB
Versions: 15
Compression:
Stored size: 1.43 KB
Contents
require 'tempfile' require 'fileutils' module Geminabox module Proxy class Splicer < FileHandler def self.make(file_name) splicer = new(file_name) splicer.create splicer end def create if data = new_content f = Tempfile.create('geminabox') begin f.write(data) ensure f.close rescue nil end FileUtils.mv f.path, splice_path end end def new_content if local_file_exists? merge_content else remote_content end end def splice_path proxy_path end def splice_folder_path proxy_folder_path end def splice_file_exists? file_exists? splice_path end def merge_content if gzip? merge_gziped_content else merge_text_content end end def gzip? /\.gz$/ =~ file_name end private def merge_gziped_content if rc = remote_content package(unpackage(local_content) | unpackage(rc)) else local_content end end def unpackage(content) Marshal.load(Gem.gunzip(content)) end def package(content) Gem.gzip(Marshal.dump(content)) end def merge_text_content local_content.to_s + remote_content.to_s end end end end
Version data entries
15 entries across 15 versions & 1 rubygems