Sha256: c422b1dcb402ffbf46c7164bde6b5dfd2863d3b94726af553749466e83c01533

Contents?: true

Size: 1.8 KB

Versions: 3

Compression:

Stored size: 1.8 KB

Contents

module ComfortableMexicanSofa::Seeds::File
  class Importer < ComfortableMexicanSofa::Seeds::Importer

    def initialize(from, to = from)
      super
      self.path = ::File.join(ComfortableMexicanSofa.config.seeds_path, from, "files/")
    end

    def import!
      Dir["#{self.path}[^_]*"].each do |file_path|

        filename = ::File.basename(file_path)

        file = self.site.files.with_attached_attachment
          .where("active_storage_blobs.filename" => filename).references(:blob).first ||
          self.site.files.new

        # We need to track actual file and its attributes
        fresh_file = false

        if File.exist?(attrs_path = File.join(self.path, "_#{filename}.yml"))
          if fresh_seed?(file, attrs_path)
            fresh_file = true

            attrs = YAML.load(File.read(attrs_path))
            category_ids = category_names_to_ids(Comfy::Cms::File, attrs.delete("categories"))
            file.attributes = attrs.merge(
              category_ids: category_ids
            )
          end
        end

        if fresh_seed?(file, file_path)
          fresh_file = true

          file_handler = File.open(file_path)
          file.file = {
            io:           file_handler,
            filename:     filename,
            content_type: MimeMagic.by_magic(file_handler)
          }
        end

        if fresh_file
          if file.save
            message = "[CMS SEEDS] Imported File \t #{file_path}"
            ComfortableMexicanSofa.logger.info(message)
          else
            message = "[CMS SEEDS] Failed to import File \n#{file.errors.inspect}"
            ComfortableMexicanSofa.logger.warn(message)
          end
        end

        self.seed_ids << file.id
      end

      # cleaning up
      self.site.files.where('id NOT IN (?)', seed_ids).destroy_all
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.2 lib/comfortable_mexican_sofa/seeds/file/importer.rb
comfortable_mexican_sofa-2.0.1 lib/comfortable_mexican_sofa/seeds/file/importer.rb
comfortable_mexican_sofa-2.0.0 lib/comfortable_mexican_sofa/seeds/file/importer.rb