Sha256: da0ffac8d32548e151f5074da6c5fddef2eb0a897fae686cea0498d0c234bd8e

Contents?: true

Size: 1.92 KB

Versions: 20

Compression:

Stored size: 1.92 KB

Contents

module ActiveScaffold
  module Bridges
    class FileColumn
      module FileColumnHelpers
        class << self
          def file_column_fields(klass)
            klass.instance_methods.select{|m| m.to_s =~ /_just_uploaded\?$/}.collect{|m| m[0..-16].to_sym }
          end
          
          def generate_delete_helpers(klass)
            file_column_fields(klass).each { |field|
              klass.send :class_eval, <<-EOF, __FILE__, __LINE__ + 1  unless klass.method_defined?(:"#{field}_with_delete=")
                attr_reader :delete_#{field}
                
                def delete_#{field}=(value)
                  value = (value=="true") if String===value
                  return unless value
                  
                  # passing nil to the file column causes the file to be deleted.  Don't delete if we just uploaded a file!
                  self.#{field} = nil unless self.#{field}_just_uploaded?
                end
              EOF
            }
          end
          
          def klass_has_file_column_fields?(klass)
            true unless file_column_fields(klass).empty?
          end
        end
        
        def file_column_fields
          @file_column_fields||=FileColumnHelpers.file_column_fields(self)
        end
        
        def options_for_file_column_field(field)
          self.allocate.send("#{field}_options")
        end
        
        def field_has_image_version?(field, version="thumb")
          begin
            # the only way to get to the options of a particular field is to use the instance method
            options = options_for_file_column_field(field)
            versions = options[:magick][:versions]
            raise unless versions.stringify_keys[version]
            true
          rescue
            false
          end
        end
        
        def generate_delete_helpers
          FileColumnHelpers.generate_delete_helpers(self)
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
active_scaffold-3.4.17 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.16 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.14 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.13 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.12 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.11 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.10 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.9 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.8 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.7 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.5 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.4 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.3 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.2 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.1 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.0.1 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.4.0 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.3.3 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.3.2 lib/active_scaffold/bridges/file_column/file_column_helpers.rb
active_scaffold-3.3.1 lib/active_scaffold/bridges/file_column/file_column_helpers.rb