Class: Asset
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Asset
- Includes:
- Paperclip::Glue
- Defined in:
- app/models/asset.rb
Class Method Summary collapse
- .count_with_asset_types(asset_types, *args) ⇒ Object
-
.find_all_by_asset_types(asset_types, *args) ⇒ Object
searching and pagination moved to the controller.
- .known_types ⇒ Object
- .with_asset_types(asset_types, &block) ⇒ Object
Instance Method Summary collapse
- #aspect(style_name = 'original') ⇒ Object
- #asset_type ⇒ Object
- #attached_to?(page) ⇒ Boolean
- #basename ⇒ Object
- #dimensions_known? ⇒ Boolean
- #extension(style_name = 'original') ⇒ Object
- #geometry(style_name = 'original') ⇒ Object
- #has_style?(style_name = 'original') ⇒ Boolean
- #height(style_name = 'original') ⇒ Object
- #horizontal?(style_name = 'original') ⇒ Boolean
- #orientation(style_name = 'original') ⇒ Object
- #original_extension ⇒ Object
- #original_geometry ⇒ Object
- #square?(style_name = 'original') ⇒ Boolean
- #thumbnail(style_name = 'original') ⇒ Object
- #vertical?(style_name = 'original') ⇒ Boolean
- #width(style_name = 'original') ⇒ Object
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_types ⇒ Object
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
129 130 131 |
# File 'app/models/asset.rb', line 129 def aspect(style_name = 'original') geometry(style_name).aspect end |
#asset_type ⇒ Object
70 71 72 |
# File 'app/models/asset.rb', line 70 def asset_type AssetType.for(asset) end |
#attached_to?(page) ⇒ Boolean
104 105 106 |
# File 'app/models/asset.rb', line 104 def attached_to?(page) pages.include?(page) end |
#basename ⇒ Object
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
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' original_extension elsif style = paperclip_styles[style_name.to_sym] style.format else original_extension end end |
#geometry(style_name = 'original') ⇒ Object
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# 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 = 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
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
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
133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'app/models/asset.rb', line 133 def orientation(style_name = 'original') a = aspect(style_name) if a == nil? 'unknown' elsif a < 1.0 'vertical' elsif a > 1.0 'horizontal' else 'square' end end |
#original_extension ⇒ Object
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_geometry ⇒ Object
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
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
75 76 77 78 79 80 |
# File 'app/models/asset.rb', line 75 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) asset_type.icon(style_name) end |
#vertical?(style_name = 'original') ⇒ 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 |