Class: Asset

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
Paperclip::Glue
Defined in:
app/models/asset.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.count_with_asset_types(asset_types, *args) ⇒ Object



207
208
209
# File 'app/models/asset.rb', line 207

def count_with_asset_types(asset_types, *args)
  with_asset_types(asset_types) { where(*args).count }
end

.find_all_by_asset_types(asset_types, *args) ⇒ Object

searching and pagination moved to the controller



203
204
205
# File 'app/models/asset.rb', line 203

def find_all_by_asset_types(asset_types, *args)
  with_asset_types(asset_types) { where *args }
end

.known_typesObject



197
198
199
# File 'app/models/asset.rb', line 197

def known_types
  AssetType.known_types
end

.with_asset_types(asset_types, &block) ⇒ Object



211
212
213
214
# File 'app/models/asset.rb', line 211

def with_asset_types(asset_types, &block)
  w_asset_types = AssetType.conditions_for(asset_types)
  with_scope(where(:conditions => ["#{w_asset_types} = ?", block]))
end

Instance Method Details

#aspect(style_name = 'original') ⇒ Object



128
129
130
# File 'app/models/asset.rb', line 128

def aspect(style_name='original')
  geometry(style_name).aspect
end

#asset_typeObject



71
72
73
# File 'app/models/asset.rb', line 71

def asset_type
  AssetType.for(asset)
end

#attached_to?(page) ⇒ Boolean

Returns:

  • (Boolean)


104
105
106
# File 'app/models/asset.rb', line 104

def attached_to?(page)
  pages.include?(page)
end

#basenameObject



86
87
88
# File 'app/models/asset.rb', line 86

def basename
  File.basename(asset_file_name, ".*") if asset_file_name
end

#dimensions_known?Boolean

Returns:

  • (Boolean)


166
167
168
# File 'app/models/asset.rb', line 166

def dimensions_known?
  original_width? && original_height?
end

#extension(style_name = 'original') ⇒ Object



90
91
92
93
94
95
96
97
98
# File 'app/models/asset.rb', line 90

def extension(style_name='original')
   if style_name == 'original'
     return original_extension
   elsif style = paperclip_styles[style_name.to_sym]
     return style.format
   else
     return original_extension
   end
end

#geometry(style_name = 'original') ⇒ Object

Raises:

  • (Paperclip::StyleError)


112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'app/models/asset.rb', line 112

def geometry(style_name='original')
  raise Paperclip::StyleError, "Requested style #{style_name} is not defined for this asset." unless has_style?(style_name)
  @geometry ||= {}
  begin
    @geometry[style_name] ||= if style_name.to_s == 'original'
      original_geometry
    else
      style = self.asset.styles[style_name.to_sym]
      original_geometry.transformed_by(style.geometry)    # this can return dimensions for fully specified style sizes but not for relative sizes when there are no original dimensions
    end
  rescue Paperclip::TransformationError => e
    Rails.logger.warn "geometry transformation error: #{e}"
    original_geometry                                     # returns a blank geometry if the real geometry cannot be calculated
  end
end

#has_style?(style_name = 'original') ⇒ Boolean

Returns:

  • (Boolean)


82
83
84
# File 'app/models/asset.rb', line 82

def has_style?(style_name='original')
  style_name == 'original' || paperclip_styles.keys.include?(style_name.to_sym)
end

#height(style_name = 'original') ⇒ Object



150
151
152
# File 'app/models/asset.rb', line 150

def height(style_name='original')
  geometry(style_name).height.to_i
end

#horizontal?(style_name = 'original') ⇒ Boolean

Returns:

  • (Boolean)


162
163
164
# File 'app/models/asset.rb', line 162

def horizontal?(style_name='original')
  geometry(style_name).horizontal?
end

#orientation(style_name = 'original') ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'app/models/asset.rb', line 132

def orientation(style_name='original')
  a = aspect(style_name)
  case
  when a == nil?
    'unknown'
  when a < 1.0
    'vertical'
  when a > 1.0
    'horizontal'
  else
    'square'
  end
end

#original_extensionObject



100
101
102
# File 'app/models/asset.rb', line 100

def original_extension
  return asset_file_name.split('.').last.downcase if asset_file_name
end

#original_geometryObject



108
109
110
# File 'app/models/asset.rb', line 108

def original_geometry
  @original_geometry ||= Paperclip::Geometry.new(original_width, original_height)
end

#square?(style_name = 'original') ⇒ Boolean

Returns:

  • (Boolean)


154
155
156
# File 'app/models/asset.rb', line 154

def square?(style_name='original')
  geometry(style_name).square?
end

#thumbnail(style_name = 'original') ⇒ Object



76
77
78
79
80
# File 'app/models/asset.rb', line 76

def thumbnail(style_name='original')
  return asset.url if style_name.to_sym == :original
  return asset.url(style_name.to_sym) if has_style?(style_name)
  return asset_type.icon(style_name)
end

#vertical?(style_name = 'original') ⇒ Boolean

Returns:

  • (Boolean)


158
159
160
# File 'app/models/asset.rb', line 158

def vertical?(style_name='original')
  geometry(style_name).vertical?
end

#width(style_name = 'original') ⇒ Object



146
147
148
# File 'app/models/asset.rb', line 146

def width(style_name='original')
  geometry(style_name).width.to_i
end