korobkov-paperclip 2.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +177 -0
  3. data/Rakefile +99 -0
  4. data/generators/paperclip/USAGE +5 -0
  5. data/generators/paperclip/paperclip_generator.rb +27 -0
  6. data/generators/paperclip/templates/paperclip_migration.rb.erb +21 -0
  7. data/init.rb +15 -0
  8. data/lib/paperclip/attachment.rb +425 -0
  9. data/lib/paperclip/callback_compatability.rb +33 -0
  10. data/lib/paperclip/geometry.rb +115 -0
  11. data/lib/paperclip/interpolations.rb +108 -0
  12. data/lib/paperclip/iostream.rb +58 -0
  13. data/lib/paperclip/matchers/have_attached_file_matcher.rb +49 -0
  14. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +66 -0
  15. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +48 -0
  16. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +83 -0
  17. data/lib/paperclip/matchers.rb +4 -0
  18. data/lib/paperclip/processor.rb +49 -0
  19. data/lib/paperclip/storage.rb +243 -0
  20. data/lib/paperclip/thumbnail.rb +73 -0
  21. data/lib/paperclip/upfile.rb +47 -0
  22. data/lib/paperclip.rb +353 -0
  23. data/shoulda_macros/paperclip.rb +117 -0
  24. data/tasks/paperclip_tasks.rake +80 -0
  25. data/test/attachment_test.rb +780 -0
  26. data/test/database.yml +4 -0
  27. data/test/fixtures/12k.png +0 -0
  28. data/test/fixtures/50x50.png +0 -0
  29. data/test/fixtures/5k.png +0 -0
  30. data/test/fixtures/bad.png +1 -0
  31. data/test/fixtures/s3.yml +8 -0
  32. data/test/fixtures/text.txt +0 -0
  33. data/test/fixtures/twopage.pdf +0 -0
  34. data/test/geometry_test.rb +177 -0
  35. data/test/helper.rb +108 -0
  36. data/test/integration_test.rb +483 -0
  37. data/test/interpolations_test.rb +124 -0
  38. data/test/iostream_test.rb +71 -0
  39. data/test/matchers/have_attached_file_matcher_test.rb +21 -0
  40. data/test/matchers/validate_attachment_content_type_matcher_test.rb +30 -0
  41. data/test/matchers/validate_attachment_presence_matcher_test.rb +21 -0
  42. data/test/matchers/validate_attachment_size_matcher_test.rb +50 -0
  43. data/test/paperclip_test.rb +327 -0
  44. data/test/processor_test.rb +10 -0
  45. data/test/storage_test.rb +303 -0
  46. data/test/thumbnail_test.rb +227 -0
  47. metadata +125 -0
@@ -0,0 +1,425 @@
1
+ # encoding: utf-8
2
+ module Paperclip
3
+ # The Attachment class manages the files for a given attachment. It saves
4
+ # when the model saves, deletes when the model is destroyed, and processes
5
+ # the file upon assignment.
6
+ class Attachment
7
+
8
+ def self.default_options
9
+ @default_options ||= {
10
+ :url => "/system/:attachment/:id/:style/:filename",
11
+ :path => ":rails_root/public:url",
12
+ :styles => {},
13
+ :default_url => "/:attachment/:style/missing.png",
14
+ :default_style => :original,
15
+ :validations => [],
16
+ :storage => :filesystem,
17
+ :whiny => Paperclip.options[:whiny] || Paperclip.options[:whiny_thumbnails]
18
+ :hash_length => 512
19
+ }
20
+ end
21
+
22
+ attr_reader :name, :instance, :styles, :default_style, :convert_options, :queued_for_write, :options
23
+
24
+ # Creates an Attachment object. +name+ is the name of the attachment,
25
+ # +instance+ is the ActiveRecord object instance it's attached to, and
26
+ # +options+ is the same as the hash passed to +has_attached_file+.
27
+ def initialize name, instance, options = {}
28
+ @name = name
29
+ @instance = instance
30
+
31
+ options = self.class.default_options.merge(options)
32
+
33
+ @url = options[:url]
34
+ @url = @url.call(self) if @url.is_a?(Proc)
35
+ @path = options[:path]
36
+ @path = @path.call(self) if @path.is_a?(Proc)
37
+ @styles = options[:styles]
38
+ @styles = @styles.call(self) if @styles.is_a?(Proc)
39
+ @default_url = options[:default_url]
40
+ @default_style = options[:default_style]
41
+ @validations = options[:validations]
42
+ @storage = options[:storage]
43
+ @whiny = options[:whiny_thumbnails] || options[:whiny]
44
+ @hash_length = options[:hash_length]
45
+ @convert_options = options[:convert_options] || {}
46
+ @processors = options[:processors] || [:thumbnail]
47
+ @options = options
48
+ @queued_for_delete = []
49
+ @queued_for_write = {}
50
+ @errors = {}
51
+ @validation_errors = nil
52
+ @dirty = false
53
+
54
+ normalize_style_definition
55
+ initialize_storage
56
+ end
57
+
58
+ # What gets called when you call instance.attachment = File. It clears
59
+ # errors, assigns attributes, processes the file, and runs validations. It
60
+ # also queues up the previous file for deletion, to be flushed away on
61
+ # #save of its host. In addition to form uploads, you can also assign
62
+ # another Paperclip attachment:
63
+ # new_user.avatar = old_user.avatar
64
+ # If the file that is assigned is not valid, the processing (i.e.
65
+ # thumbnailing, etc) will NOT be run.
66
+ def assign uploaded_file
67
+ ensure_required_accessors!
68
+
69
+ if uploaded_file.is_a?(Paperclip::Attachment)
70
+ uploaded_file = uploaded_file.to_file(:original)
71
+ close_uploaded_file = uploaded_file.respond_to?(:close)
72
+ end
73
+
74
+ return nil unless valid_assignment?(uploaded_file)
75
+
76
+ uploaded_file.binmode if uploaded_file.respond_to? :binmode
77
+ self.clear
78
+
79
+ return nil if uploaded_file.nil?
80
+
81
+ @queued_for_write[:original] = uploaded_file.to_tempfile
82
+ instance_write(:file_name, uploaded_file.original_filename.strip.gsub(/[^A-Za-z\d\.\-_]+/, '_'))
83
+ instance_write(:content_type, uploaded_file.content_type.to_s.strip)
84
+ instance_write(:file_size, uploaded_file.size.to_i)
85
+ instance_write(:file_hash, uploaded_file.hash)
86
+ instance_write(:updated_at, Time.now)
87
+
88
+ @dirty = true
89
+
90
+ post_process if valid?
91
+
92
+ # Reset the file size and hash if the original file was reprocessed.
93
+ instance_write(:file_size, @queued_for_write[:original].size.to_i)
94
+ instance_write(:file_hash, @queued_for_write[:original].hash)
95
+ ensure
96
+ uploaded_file.close if close_uploaded_file
97
+ validate
98
+ end
99
+
100
+ # Returns the public URL of the attachment, with a given style. Note that
101
+ # this does not necessarily need to point to a file that your web server
102
+ # can access and can point to an action in your app, if you need fine
103
+ # grained security. This is not recommended if you don't need the
104
+ # security, however, for performance reasons. set
105
+ # include_updated_timestamp to false if you want to stop the attachment
106
+ # update time appended to the url
107
+ def url style = default_style, include_updated_timestamp = true
108
+ url = original_filename.nil? ? interpolate(@default_url, style) : interpolate(@url, style)
109
+ include_updated_timestamp && updated_at ? [url, updated_at].compact.join(url.include?("?") ? "&" : "?") : url
110
+ end
111
+
112
+ # Returns the path of the attachment as defined by the :path option. If the
113
+ # file is stored in the filesystem the path refers to the path of the file
114
+ # on disk. If the file is stored in S3, the path is the "key" part of the
115
+ # URL, and the :bucket option refers to the S3 bucket.
116
+ def path style = default_style
117
+ original_filename.nil? ? nil : interpolate(@path, style)
118
+ end
119
+
120
+ # Alias to +url+
121
+ def to_s style = nil
122
+ url(style)
123
+ end
124
+
125
+ # Returns true if there are no errors on this attachment.
126
+ def valid?
127
+ validate
128
+ errors.empty?
129
+ end
130
+
131
+ # Returns an array containing the errors on this attachment.
132
+ def errors
133
+ @errors
134
+ end
135
+
136
+ # Returns true if there are changes that need to be saved.
137
+ def dirty?
138
+ @dirty
139
+ end
140
+
141
+ # Saves the file, if there are no errors. If there are, it flushes them to
142
+ # the instance's errors and returns false, cancelling the save.
143
+ def save
144
+ if valid?
145
+ flush_deletes
146
+ flush_writes
147
+ @dirty = false
148
+ true
149
+ else
150
+ flush_errors
151
+ false
152
+ end
153
+ end
154
+
155
+ # Clears out the attachment. Has the same effect as previously assigning
156
+ # nil to the attachment. Does NOT save. If you wish to clear AND save,
157
+ # use #destroy.
158
+ def clear
159
+ queue_existing_for_delete
160
+ @errors = {}
161
+ @validation_errors = nil
162
+ end
163
+
164
+ # Destroys the attachment. Has the same effect as previously assigning
165
+ # nil to the attachment *and saving*. This is permanent. If you wish to
166
+ # wipe out the existing attachment but not save, use #clear.
167
+ def destroy
168
+ clear
169
+ save
170
+ end
171
+
172
+ # Returns the name of the file as originally assigned, and lives in the
173
+ # <attachment>_file_name attribute of the model.
174
+ def original_filename
175
+ instance_read(:file_name)
176
+ end
177
+
178
+ # Returns the size of the file as originally assigned, and lives in the
179
+ # <attachment>_file_size attribute of the model.
180
+ def size
181
+ instance_read(:file_size) || (@queued_for_write[:original] && @queued_for_write[:original].size)
182
+ end
183
+
184
+ # Returns the hash of the file as originally assigned, and lives in the
185
+ # <attachment>_file_hash attribute of the model.
186
+ def hash
187
+ instance_read(:file_hash) || (@queued_for_write[:original] && @queued_for_write[:original].hash)
188
+ end
189
+
190
+ # Returns the content_type of the file as originally assigned, and lives
191
+ # in the <attachment>_content_type attribute of the model.
192
+ def content_type
193
+ instance_read(:content_type)
194
+ end
195
+
196
+ # Returns the last modified time of the file as originally assigned, and
197
+ # lives in the <attachment>_updated_at attribute of the model.
198
+ def updated_at
199
+ time = instance_read(:updated_at)
200
+ time && time.to_f.to_i
201
+ end
202
+
203
+ # Paths and URLs can have a number of variables interpolated into them
204
+ # to vary the storage location based on name, id, style, class, etc.
205
+ # This method is a deprecated access into supplying and retrieving these
206
+ # interpolations. Future access should use either Paperclip.interpolates
207
+ # or extend the Paperclip::Interpolations module directly.
208
+ def self.interpolations
209
+ warn('[DEPRECATION] Paperclip::Attachment.interpolations is deprecated ' +
210
+ 'and will be removed from future versions. ' +
211
+ 'Use Paperclip.interpolates instead')
212
+ Paperclip::Interpolations
213
+ end
214
+
215
+ # This method really shouldn't be called that often. It's expected use is
216
+ # in the paperclip:refresh rake task and that's it. It will regenerate all
217
+ # thumbnails forcefully, by reobtaining the original file and going through
218
+ # the post-process again.
219
+ def reprocess!
220
+ new_original = Tempfile.new("paperclip-reprocess")
221
+ new_original.binmode
222
+ if old_original = to_file(:original)
223
+ new_original.write( old_original.read )
224
+ new_original.rewind
225
+
226
+ @queued_for_write = { :original => new_original }
227
+ post_process
228
+
229
+ old_original.close if old_original.respond_to?(:close)
230
+
231
+ save
232
+ else
233
+ true
234
+ end
235
+ end
236
+
237
+ # Returns true if a file has been assigned.
238
+ def file?
239
+ !original_filename.blank?
240
+ end
241
+
242
+ # Writes the attachment-specific attribute on the instance. For example,
243
+ # instance_write(:file_name, "me.jpg") will write "me.jpg" to the instance's
244
+ # "avatar_file_name" field (assuming the attachment is called avatar).
245
+ def instance_write(attr, value)
246
+ setter = :"#{name}_#{attr}="
247
+ responds = instance.respond_to?(setter)
248
+ self.instance_variable_set("@_#{setter.to_s.chop}", value)
249
+ instance.send(setter, value) if responds || attr.to_s == "file_name"
250
+ end
251
+
252
+ # Reads the attachment-specific attribute on the instance. See instance_write
253
+ # for more details.
254
+ def instance_read(attr)
255
+ getter = :"#{name}_#{attr}"
256
+ responds = instance.respond_to?(getter)
257
+ cached = self.instance_variable_get("@_#{getter}")
258
+ return cached if cached
259
+ instance.send(getter) if responds || attr.to_s == "file_name"
260
+ end
261
+
262
+ private
263
+
264
+ def ensure_required_accessors! #:nodoc:
265
+ %w(file_name).each do |field|
266
+ unless @instance.respond_to?("#{name}_#{field}") && @instance.respond_to?("#{name}_#{field}=")
267
+ raise PaperclipError.new("#{@instance.class} model missing required attr_accessor for '#{name}_#{field}'")
268
+ end
269
+ end
270
+ end
271
+
272
+ def log message #:nodoc:
273
+ Paperclip.log(message)
274
+ end
275
+
276
+ def valid_assignment? file #:nodoc:
277
+ file.nil? || (file.respond_to?(:original_filename) && file.respond_to?(:content_type))
278
+ end
279
+
280
+ def validate #:nodoc:
281
+ unless @validation_errors
282
+ @validation_errors = @validations.inject({}) do |errors, validation|
283
+ name, options = validation
284
+ errors[name] = send(:"validate_#{name}", options) if allow_validation?(options)
285
+ errors
286
+ end
287
+ @validation_errors.reject!{|k,v| v == nil }
288
+ @errors.merge!(@validation_errors)
289
+ end
290
+ @validation_errors
291
+ end
292
+
293
+ def allow_validation? options #:nodoc:
294
+ (options[:if].nil? || check_guard(options[:if])) && (options[:unless].nil? || !check_guard(options[:unless]))
295
+ end
296
+
297
+ def check_guard guard #:nodoc:
298
+ if guard.respond_to? :call
299
+ guard.call(instance)
300
+ elsif ! guard.blank?
301
+ instance.send(guard.to_s)
302
+ end
303
+ end
304
+
305
+ def validate_size options #:nodoc:
306
+ if file? && !options[:range].include?(size.to_i)
307
+ options[:message].gsub(/:min/, options[:min].to_s).gsub(/:max/, options[:max].to_s)
308
+ end
309
+ end
310
+
311
+ def validate_presence options #:nodoc:
312
+ options[:message] unless file?
313
+ end
314
+
315
+ def validate_content_type options #:nodoc:
316
+ valid_types = [options[:content_type]].flatten
317
+ unless original_filename.blank?
318
+ unless valid_types.blank?
319
+ content_type = instance_read(:content_type)
320
+ unless valid_types.any?{|t| content_type.nil? || t === content_type }
321
+ options[:message] || "is not one of the allowed file types."
322
+ end
323
+ end
324
+ end
325
+ end
326
+
327
+ def normalize_style_definition #:nodoc:
328
+ @styles.each do |name, args|
329
+ unless args.is_a? Hash
330
+ dimensions, format = [args, nil].flatten[0..1]
331
+ format = nil if format.blank?
332
+ @styles[name] = {
333
+ :processors => @processors,
334
+ :geometry => dimensions,
335
+ :format => format,
336
+ :whiny => @whiny,
337
+ :convert_options => extra_options_for(name)
338
+ }
339
+ else
340
+ @styles[name] = {
341
+ :processors => @processors,
342
+ :whiny => @whiny,
343
+ :convert_options => extra_options_for(name)
344
+ }.merge(@styles[name])
345
+ end
346
+ end
347
+ end
348
+
349
+ def solidify_style_definitions #:nodoc:
350
+ @styles.each do |name, args|
351
+ @styles[name][:geometry] = @styles[name][:geometry].call(instance) if @styles[name][:geometry].respond_to?(:call)
352
+ @styles[name][:processors] = @styles[name][:processors].call(instance) if @styles[name][:processors].respond_to?(:call)
353
+ end
354
+ end
355
+
356
+ def initialize_storage #:nodoc:
357
+ @storage_module = Paperclip::Storage.const_get(@storage.to_s.capitalize)
358
+ self.extend(@storage_module)
359
+ end
360
+
361
+ def extra_options_for(style) #:nodoc:
362
+ all_options = convert_options[:all]
363
+ all_options = all_options.call(instance) if all_options.respond_to?(:call)
364
+ style_options = convert_options[style]
365
+ style_options = style_options.call(instance) if style_options.respond_to?(:call)
366
+
367
+ [ style_options, all_options ].compact.join(" ")
368
+ end
369
+
370
+ def post_process #:nodoc:
371
+ return if @queued_for_write[:original].nil?
372
+ solidify_style_definitions
373
+ return if fire_events(:before)
374
+ post_process_styles
375
+ return if fire_events(:after)
376
+ end
377
+
378
+ def fire_events(which) #:nodoc:
379
+ return true if callback(:"#{which}_post_process") == false
380
+ return true if callback(:"#{which}_#{name}_post_process") == false
381
+ end
382
+
383
+ def callback which #:nodoc:
384
+ instance.run_callbacks(which, @queued_for_write){|result, obj| result == false }
385
+ end
386
+
387
+ def post_process_styles #:nodoc:
388
+ @styles.each do |name, args|
389
+ begin
390
+ raise RuntimeError.new("Style #{name} has no processors defined.") if args[:processors].blank?
391
+ @queued_for_write[name] = args[:processors].inject(@queued_for_write[:original]) do |file, processor|
392
+ Paperclip.processor(processor).make(file, args, self)
393
+ end
394
+ rescue PaperclipError => e
395
+ log("An error was received while processing: #{e.inspect}")
396
+ (@errors[:processing] ||= []) << e.message if @whiny
397
+ end
398
+ end
399
+ end
400
+
401
+ def interpolate pattern, style = default_style #:nodoc:
402
+ Paperclip::Interpolations.interpolate(pattern, self, style)
403
+ end
404
+
405
+ def queue_existing_for_delete #:nodoc:
406
+ return unless file?
407
+ @queued_for_delete += [:original, *@styles.keys].uniq.map do |style|
408
+ path(style) if exists?(style)
409
+ end.compact
410
+ instance_write(:file_name, nil)
411
+ instance_write(:content_type, nil)
412
+ instance_write(:file_size, nil)
413
+ instance_write(:file_hash, nil)
414
+ instance_write(:updated_at, nil)
415
+ end
416
+
417
+ def flush_errors #:nodoc:
418
+ @errors.each do |error, message|
419
+ [message].flatten.each {|m| instance.errors.add(name, m) }
420
+ end
421
+ end
422
+
423
+ end
424
+ end
425
+
@@ -0,0 +1,33 @@
1
+ module Paperclip
2
+ # This module is intended as a compatability shim for the differences in
3
+ # callbacks between Rails 2.0 and Rails 2.1.
4
+ module CallbackCompatability
5
+ def self.included(base)
6
+ base.extend(ClassMethods)
7
+ base.send(:include, InstanceMethods)
8
+ end
9
+
10
+ module ClassMethods
11
+ # The implementation of this method is taken from the Rails 1.2.6 source,
12
+ # from rails/activerecord/lib/active_record/callbacks.rb, line 192.
13
+ def define_callbacks(*args)
14
+ args.each do |method|
15
+ self.class_eval <<-"end_eval"
16
+ def self.#{method}(*callbacks, &block)
17
+ callbacks << block if block_given?
18
+ write_inheritable_array(#{method.to_sym.inspect}, callbacks)
19
+ end
20
+ end_eval
21
+ end
22
+ end
23
+ end
24
+
25
+ module InstanceMethods
26
+ # The callbacks in < 2.1 don't worry about the extra options or the
27
+ # block, so just run what we have available.
28
+ def run_callbacks(meth, opts = nil, &blk)
29
+ callback(meth)
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,115 @@
1
+ module Paperclip
2
+
3
+ # Defines the geometry of an image.
4
+ class Geometry
5
+ attr_accessor :height, :width, :modifier
6
+
7
+ # Gives a Geometry representing the given height and width
8
+ def initialize width = nil, height = nil, modifier = nil
9
+ @height = height.to_f
10
+ @width = width.to_f
11
+ @modifier = modifier
12
+ end
13
+
14
+ # Uses ImageMagick to determing the dimensions of a file, passed in as either a
15
+ # File or path.
16
+ def self.from_file file
17
+ file = file.path if file.respond_to? "path"
18
+ geometry = begin
19
+ Paperclip.run("identify", %Q[-format "%wx%h" "#{file}"[0]])
20
+ rescue PaperclipCommandLineError
21
+ ""
22
+ end
23
+ parse(geometry) ||
24
+ raise(NotIdentifiedByImageMagickError.new("#{file} is not recognized by the 'identify' command."))
25
+ end
26
+
27
+ # Parses a "WxH" formatted string, where W is the width and H is the height.
28
+ def self.parse string
29
+ if match = (string && string.match(/\b(\d*)x?(\d*)\b([\>\<\#\@\%^!])?/i))
30
+ Geometry.new(*match[1,3])
31
+ end
32
+ end
33
+
34
+ # True if the dimensions represent a square
35
+ def square?
36
+ height == width
37
+ end
38
+
39
+ # True if the dimensions represent a horizontal rectangle
40
+ def horizontal?
41
+ height < width
42
+ end
43
+
44
+ # True if the dimensions represent a vertical rectangle
45
+ def vertical?
46
+ height > width
47
+ end
48
+
49
+ # The aspect ratio of the dimensions.
50
+ def aspect
51
+ width / height
52
+ end
53
+
54
+ # Returns the larger of the two dimensions
55
+ def larger
56
+ [height, width].max
57
+ end
58
+
59
+ # Returns the smaller of the two dimensions
60
+ def smaller
61
+ [height, width].min
62
+ end
63
+
64
+ # Returns the width and height in a format suitable to be passed to Geometry.parse
65
+ def to_s
66
+ s = ""
67
+ s << width.to_i.to_s if width > 0
68
+ s << "x#{height.to_i}" if height > 0
69
+ s << modifier.to_s
70
+ s
71
+ end
72
+
73
+ # Same as to_s
74
+ def inspect
75
+ to_s
76
+ end
77
+
78
+ # Returns the scaling and cropping geometries (in string-based ImageMagick format)
79
+ # neccessary to transform this Geometry into the Geometry given. If crop is true,
80
+ # then it is assumed the destination Geometry will be the exact final resolution.
81
+ # In this case, the source Geometry is scaled so that an image containing the
82
+ # destination Geometry would be completely filled by the source image, and any
83
+ # overhanging image would be cropped. Useful for square thumbnail images. The cropping
84
+ # is weighted at the center of the Geometry.
85
+ def transformation_to dst, crop = false
86
+ if crop
87
+ ratio = Geometry.new( dst.width / self.width, dst.height / self.height )
88
+ scale_geometry, scale = scaling(dst, ratio)
89
+ crop_geometry = cropping(dst, ratio, scale)
90
+ else
91
+ scale_geometry = dst.to_s
92
+ end
93
+
94
+ [ scale_geometry, crop_geometry ]
95
+ end
96
+
97
+ private
98
+
99
+ def scaling dst, ratio
100
+ if ratio.horizontal? || ratio.square?
101
+ [ "%dx" % dst.width, ratio.width ]
102
+ else
103
+ [ "x%d" % dst.height, ratio.height ]
104
+ end
105
+ end
106
+
107
+ def cropping dst, ratio, scale
108
+ if ratio.horizontal? || ratio.square?
109
+ "%dx%d+%d+%d" % [ dst.width, dst.height, 0, (self.height * scale - dst.height) / 2 ]
110
+ else
111
+ "%dx%d+%d+%d" % [ dst.width, dst.height, (self.width * scale - dst.width) / 2, 0 ]
112
+ end
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,108 @@
1
+ module Paperclip
2
+ # This module contains all the methods that are available for interpolation
3
+ # in paths and urls. To add your own (or override an existing one), you
4
+ # can either open this module and define it, or call the
5
+ # Paperclip.interpolates method.
6
+ module Interpolations
7
+ extend self
8
+
9
+ # Hash assignment of interpolations. Included only for compatability,
10
+ # and is not intended for normal use.
11
+ def self.[]= name, block
12
+ define_method(name, &block)
13
+ end
14
+
15
+ # Hash access of interpolations. Included only for compatability,
16
+ # and is not intended for normal use.
17
+ def self.[] name
18
+ method(name)
19
+ end
20
+
21
+ # Returns a sorted list of all interpolations.
22
+ def self.all
23
+ self.instance_methods(false).sort
24
+ end
25
+
26
+ # Perform the actual interpolation. Takes the pattern to interpolate
27
+ # and the arguments to pass, which are the attachment and style name.
28
+ def self.interpolate pattern, *args
29
+ all.reverse.inject( pattern.dup ) do |result, tag|
30
+ result.gsub(/:#{tag}/) do |match|
31
+ send( tag, *args )
32
+ end
33
+ end
34
+ end
35
+
36
+ # Returns the filename, the same way as ":basename.:extension" would.
37
+ def filename attachment, style
38
+ "#{basename(attachment, style)}.#{extension(attachment, style)}"
39
+ end
40
+
41
+ # Returns the interpolated URL. Will raise an error if the url itself
42
+ # contains ":url" to prevent infinite recursion. This interpolation
43
+ # is used in the default :path to ease default specifications.
44
+ def url attachment, style
45
+ raise InfiniteInterpolationError if attachment.options[:url].include?(":url")
46
+ attachment.url(style, false)
47
+ end
48
+
49
+ # Returns the timestamp as defined by the <attachment>_updated_at field
50
+ def timestamp attachment, style
51
+ attachment.instance_read(:updated_at).to_s
52
+ end
53
+
54
+ # Returns the RAILS_ROOT constant.
55
+ def rails_root attachment, style
56
+ RAILS_ROOT
57
+ end
58
+
59
+ # Returns the RAILS_ENV constant.
60
+ def rails_env attachment, style
61
+ RAILS_ENV
62
+ end
63
+
64
+ # Returns the underscored, pluralized version of the class name.
65
+ # e.g. "users" for the User class.
66
+ # NOTE: The arguments need to be optional, because some tools fetch
67
+ # all class names. Calling #class will return the expected class.
68
+ def class attachment = nil, style = nil
69
+ return super() if attachment.nil? && style.nil?
70
+ attachment.instance.class.to_s.underscore.pluralize
71
+ end
72
+
73
+ # Returns the basename of the file. e.g. "file" for "file.jpg"
74
+ def basename attachment, style
75
+ attachment.original_filename.gsub(/#{File.extname(attachment.original_filename)}$/, "")
76
+ end
77
+
78
+ # Returns the extension of the file. e.g. "jpg" for "file.jpg"
79
+ # If the style has a format defined, it will return the format instead
80
+ # of the actual extension.
81
+ def extension attachment, style
82
+ ((style = attachment.styles[style]) && style[:format]) ||
83
+ File.extname(attachment.original_filename).gsub(/^\.+/, "")
84
+ end
85
+
86
+ # Returns the id of the instance.
87
+ def id attachment, style
88
+ attachment.instance.id
89
+ end
90
+
91
+ # Returns the id of the instance in a split path form. e.g. returns
92
+ # 000/001/234 for an id of 1234.
93
+ def id_partition attachment, style
94
+ ("%09d" % attachment.instance.id).scan(/\d{3}/).join("/")
95
+ end
96
+
97
+ # Returns the pluralized form of the attachment name. e.g.
98
+ # "avatars" for an attachment of :avatar
99
+ def attachment attachment, style
100
+ attachment.name.to_s.downcase.pluralize
101
+ end
102
+
103
+ # Returns the style, or the default style if nil is supplied.
104
+ def style attachment, style
105
+ style || attachment.default_style
106
+ end
107
+ end
108
+ end