cemeng-paperclip 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +182 -0
  3. data/Rakefile +80 -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 +19 -0
  7. data/init.rb +1 -0
  8. data/lib/generators/paperclip/USAGE +8 -0
  9. data/lib/generators/paperclip/paperclip_generator.rb +31 -0
  10. data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
  11. data/lib/paperclip.rb +402 -0
  12. data/lib/paperclip/attachment.rb +347 -0
  13. data/lib/paperclip/callback_compatability.rb +61 -0
  14. data/lib/paperclip/command_line.rb +80 -0
  15. data/lib/paperclip/geometry.rb +115 -0
  16. data/lib/paperclip/interpolations.rb +114 -0
  17. data/lib/paperclip/iostream.rb +45 -0
  18. data/lib/paperclip/matchers.rb +33 -0
  19. data/lib/paperclip/matchers/have_attached_file_matcher.rb +57 -0
  20. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +75 -0
  21. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +54 -0
  22. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +95 -0
  23. data/lib/paperclip/processor.rb +58 -0
  24. data/lib/paperclip/railtie.rb +25 -0
  25. data/lib/paperclip/storage.rb +3 -0
  26. data/lib/paperclip/storage/database.rb +204 -0
  27. data/lib/paperclip/storage/filesystem.rb +73 -0
  28. data/lib/paperclip/storage/s3.rb +192 -0
  29. data/lib/paperclip/style.rb +91 -0
  30. data/lib/paperclip/thumbnail.rb +79 -0
  31. data/lib/paperclip/upfile.rb +55 -0
  32. data/lib/paperclip/version.rb +3 -0
  33. data/lib/tasks/paperclip.rake +79 -0
  34. data/rails/init.rb +2 -0
  35. data/shoulda_macros/paperclip.rb +118 -0
  36. data/test/attachment_test.rb +804 -0
  37. data/test/command_line_test.rb +133 -0
  38. data/test/database.yml +4 -0
  39. data/test/database_storage_test.rb +267 -0
  40. data/test/fixtures/12k.png +0 -0
  41. data/test/fixtures/50x50.png +0 -0
  42. data/test/fixtures/5k.png +0 -0
  43. data/test/fixtures/bad.png +1 -0
  44. data/test/fixtures/s3.yml +8 -0
  45. data/test/fixtures/text.txt +0 -0
  46. data/test/fixtures/twopage.pdf +0 -0
  47. data/test/geometry_test.rb +177 -0
  48. data/test/helper.rb +146 -0
  49. data/test/integration_test.rb +482 -0
  50. data/test/interpolations_test.rb +127 -0
  51. data/test/iostream_test.rb +71 -0
  52. data/test/matchers/have_attached_file_matcher_test.rb +24 -0
  53. data/test/matchers/validate_attachment_content_type_matcher_test.rb +47 -0
  54. data/test/matchers/validate_attachment_presence_matcher_test.rb +26 -0
  55. data/test/matchers/validate_attachment_size_matcher_test.rb +51 -0
  56. data/test/paperclip_test.rb +254 -0
  57. data/test/processor_test.rb +10 -0
  58. data/test/storage_test.rb +363 -0
  59. data/test/style_test.rb +141 -0
  60. data/test/thumbnail_test.rb +227 -0
  61. data/test/upfile_test.rb +36 -0
  62. metadata +186 -0
@@ -0,0 +1,347 @@
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
+ include IOStream
8
+
9
+ def self.default_options
10
+ @default_options ||= {
11
+ :url => "/system/:attachment/:id/:style/:filename",
12
+ :path => ":rails_root/public:url",
13
+ :styles => {},
14
+ :processors => [:thumbnail],
15
+ :convert_options => {},
16
+ :default_url => "/:attachment/:style/missing.png",
17
+ :default_style => :original,
18
+ :storage => :filesystem,
19
+ :use_timestamp => true,
20
+ :whiny => Paperclip.options[:whiny] || Paperclip.options[:whiny_thumbnails]
21
+ }
22
+ end
23
+
24
+ attr_reader :name, :instance, :default_style, :convert_options, :queued_for_write, :whiny, :options
25
+
26
+ # Creates an Attachment object. +name+ is the name of the attachment,
27
+ # +instance+ is the ActiveRecord object instance it's attached to, and
28
+ # +options+ is the same as the hash passed to +has_attached_file+.
29
+ def initialize name, instance, options = {}
30
+ @name = name
31
+ @instance = instance
32
+
33
+ options = self.class.default_options.merge(options)
34
+
35
+ @url = options[:url]
36
+ @url = @url.call(self) if @url.is_a?(Proc)
37
+ @path = options[:path]
38
+ @path = @path.call(self) if @path.is_a?(Proc)
39
+ @styles = options[:styles]
40
+ @normalized_styles = nil
41
+ @default_url = options[:default_url]
42
+ @default_style = options[:default_style]
43
+ @storage = options[:storage]
44
+ @use_timestamp = options[:use_timestamp]
45
+ @whiny = options[:whiny_thumbnails] || options[:whiny]
46
+ @convert_options = options[:convert_options]
47
+ @processors = options[:processors]
48
+ @options = options
49
+ @queued_for_delete = []
50
+ @queued_for_write = {}
51
+ @errors = {}
52
+ @dirty = false
53
+
54
+ initialize_storage
55
+ end
56
+
57
+ def styles
58
+ unless @normalized_styles
59
+ @normalized_styles = {}
60
+ (@styles.respond_to?(:call) ? @styles.call(self) : @styles).each do |name, args|
61
+ @normalized_styles[name] = Paperclip::Style.new(name, args.dup, self)
62
+ end
63
+ end
64
+ @normalized_styles
65
+ end
66
+
67
+ def processors
68
+ @processors.respond_to?(:call) ? @processors.call(instance) : @processors
69
+ end
70
+
71
+ # What gets called when you call instance.attachment = File. It clears
72
+ # errors, assigns attributes, and processes the file. It
73
+ # also queues up the previous file for deletion, to be flushed away on
74
+ # #save of its host. In addition to form uploads, you can also assign
75
+ # another Paperclip attachment:
76
+ # new_user.avatar = old_user.avatar
77
+ def assign uploaded_file
78
+ ensure_required_accessors!
79
+
80
+ if uploaded_file.is_a?(Paperclip::Attachment)
81
+ uploaded_file = uploaded_file.to_file(:original)
82
+ close_uploaded_file = uploaded_file.respond_to?(:close)
83
+ end
84
+
85
+ return nil unless valid_assignment?(uploaded_file)
86
+
87
+ uploaded_file.binmode if uploaded_file.respond_to? :binmode
88
+ self.clear
89
+
90
+ return nil if uploaded_file.nil?
91
+
92
+ @queued_for_write[:original] = to_tempfile(uploaded_file)
93
+ instance_write(:file_name, uploaded_file.original_filename.strip)
94
+ instance_write(:content_type, uploaded_file.content_type.to_s.strip)
95
+ instance_write(:file_size, uploaded_file.size.to_i)
96
+ instance_write(:fingerprint, generate_fingerprint(uploaded_file))
97
+ instance_write(:updated_at, Time.now)
98
+
99
+ @dirty = true
100
+
101
+ post_process
102
+
103
+ # Reset the file size if the original file was reprocessed.
104
+ instance_write(:file_size, @queued_for_write[:original].size.to_i)
105
+ instance_write(:fingerprint, generate_fingerprint(@queued_for_write[:original]))
106
+ ensure
107
+ uploaded_file.close if close_uploaded_file
108
+ end
109
+
110
+ # Returns the public URL of the attachment, with a given style. Note that
111
+ # this does not necessarily need to point to a file that your web server
112
+ # can access and can point to an action in your app, if you need fine
113
+ # grained security. This is not recommended if you don't need the
114
+ # security, however, for performance reasons. Set use_timestamp to false
115
+ # if you want to stop the attachment update time appended to the url
116
+ def url(style_name = default_style, use_timestamp = @use_timestamp)
117
+ url = original_filename.nil? ? interpolate(@default_url, style_name) : interpolate(@url, style_name)
118
+ use_timestamp && updated_at ? [url, updated_at].compact.join(url.include?("?") ? "&" : "?") : url
119
+ end
120
+
121
+ # Returns the path of the attachment as defined by the :path option. If the
122
+ # file is stored in the filesystem the path refers to the path of the file
123
+ # on disk. If the file is stored in S3, the path is the "key" part of the
124
+ # URL, and the :bucket option refers to the S3 bucket.
125
+ def path style_name = default_style
126
+ original_filename.nil? ? nil : interpolate(@path, style_name)
127
+ end
128
+
129
+ # Alias to +url+
130
+ def to_s style_name = nil
131
+ url(style_name)
132
+ end
133
+
134
+ # Returns an array containing the errors on this attachment.
135
+ def errors
136
+ @errors
137
+ end
138
+
139
+ # Returns true if there are changes that need to be saved.
140
+ def dirty?
141
+ @dirty
142
+ end
143
+
144
+ # Saves the file, if there are no errors. If there are, it flushes them to
145
+ # the instance's errors and returns false, cancelling the save.
146
+ def save
147
+ flush_deletes
148
+ flush_writes
149
+ @dirty = false
150
+ true
151
+ end
152
+
153
+ # Clears out the attachment. Has the same effect as previously assigning
154
+ # nil to the attachment. Does NOT save. If you wish to clear AND save,
155
+ # use #destroy.
156
+ def clear
157
+ queue_existing_for_delete
158
+ @errors = {}
159
+ end
160
+
161
+ # Destroys the attachment. Has the same effect as previously assigning
162
+ # nil to the attachment *and saving*. This is permanent. If you wish to
163
+ # wipe out the existing attachment but not save, use #clear.
164
+ def destroy
165
+ clear
166
+ save
167
+ end
168
+
169
+ # Returns the name of the file as originally assigned, and lives in the
170
+ # <attachment>_file_name attribute of the model.
171
+ def original_filename
172
+ instance_read(:file_name)
173
+ end
174
+
175
+ # Returns the size of the file as originally assigned, and lives in the
176
+ # <attachment>_file_size attribute of the model.
177
+ def size
178
+ instance_read(:file_size) || (@queued_for_write[:original] && @queued_for_write[:original].size)
179
+ end
180
+
181
+ # Returns the hash of the file as originally assigned, and lives in the
182
+ # <attachment>_fingerprint attribute of the model.
183
+ def fingerprint
184
+ instance_read(:fingerprint) || (@queued_for_write[:original] && generate_fingerprint(@queued_for_write[:original]))
185
+ end
186
+
187
+ # Returns the content_type of the file as originally assigned, and lives
188
+ # in the <attachment>_content_type attribute of the model.
189
+ def content_type
190
+ instance_read(:content_type)
191
+ end
192
+
193
+ # Returns the last modified time of the file as originally assigned, and
194
+ # lives in the <attachment>_updated_at attribute of the model.
195
+ def updated_at
196
+ time = instance_read(:updated_at)
197
+ time && time.to_f.to_i
198
+ end
199
+
200
+ def generate_fingerprint(source)
201
+ data = source.read
202
+ source.rewind if source.respond_to?(:rewind)
203
+ Digest::MD5.hexdigest(data)
204
+ end
205
+
206
+ # Paths and URLs can have a number of variables interpolated into them
207
+ # to vary the storage location based on name, id, style, class, etc.
208
+ # This method is a deprecated access into supplying and retrieving these
209
+ # interpolations. Future access should use either Paperclip.interpolates
210
+ # or extend the Paperclip::Interpolations module directly.
211
+ def self.interpolations
212
+ warn('[DEPRECATION] Paperclip::Attachment.interpolations is deprecated ' +
213
+ 'and will be removed from future versions. ' +
214
+ 'Use Paperclip.interpolates instead')
215
+ Paperclip::Interpolations
216
+ end
217
+
218
+ # This method really shouldn't be called that often. It's expected use is
219
+ # in the paperclip:refresh rake task and that's it. It will regenerate all
220
+ # thumbnails forcefully, by reobtaining the original file and going through
221
+ # the post-process again.
222
+ def reprocess!
223
+ new_original = Tempfile.new("paperclip-reprocess")
224
+ new_original.binmode
225
+ if old_original = to_file(:original)
226
+ new_original.write( old_original.respond_to?(:get) ? old_original.get : old_original.read )
227
+ new_original.rewind
228
+
229
+ @queued_for_write = { :original => new_original }
230
+ post_process
231
+
232
+ old_original.close if old_original.respond_to?(:close)
233
+
234
+ save
235
+ else
236
+ true
237
+ end
238
+ end
239
+
240
+ # Returns true if a file has been assigned.
241
+ def file?
242
+ !original_filename.blank?
243
+ end
244
+
245
+ # Writes the attachment-specific attribute on the instance. For example,
246
+ # instance_write(:file_name, "me.jpg") will write "me.jpg" to the instance's
247
+ # "avatar_file_name" field (assuming the attachment is called avatar).
248
+ def instance_write(attr, value)
249
+ setter = :"#{name}_#{attr}="
250
+ responds = instance.respond_to?(setter)
251
+ self.instance_variable_set("@_#{setter.to_s.chop}", value)
252
+ instance.send(setter, value) if responds || attr.to_s == "file_name"
253
+ end
254
+
255
+ # Reads the attachment-specific attribute on the instance. See instance_write
256
+ # for more details.
257
+ def instance_read(attr)
258
+ getter = :"#{name}_#{attr}"
259
+ responds = instance.respond_to?(getter)
260
+ cached = self.instance_variable_get("@_#{getter}")
261
+ return cached if cached
262
+ instance.send(getter) if responds || attr.to_s == "file_name"
263
+ end
264
+
265
+ private
266
+
267
+ def ensure_required_accessors! #:nodoc:
268
+ %w(file_name).each do |field|
269
+ unless @instance.respond_to?("#{name}_#{field}") && @instance.respond_to?("#{name}_#{field}=")
270
+ raise PaperclipError.new("#{@instance.class} model missing required attr_accessor for '#{name}_#{field}'")
271
+ end
272
+ end
273
+ end
274
+
275
+ def log message #:nodoc:
276
+ Paperclip.log(message)
277
+ end
278
+
279
+ def valid_assignment? file #:nodoc:
280
+ file.nil? || (file.respond_to?(:original_filename) && file.respond_to?(:content_type))
281
+ end
282
+
283
+ def initialize_storage #:nodoc:
284
+ storage_class_name = @storage.to_s.capitalize
285
+ begin
286
+ @storage_module = Paperclip::Storage.const_get(storage_class_name)
287
+ rescue NameError
288
+ raise StorageMethodNotFound, "Cannot load storage module '#{storage_class_name}'"
289
+ end
290
+ self.extend(@storage_module)
291
+ end
292
+
293
+ def extra_options_for(style) #:nodoc:
294
+ all_options = convert_options[:all]
295
+ all_options = all_options.call(instance) if all_options.respond_to?(:call)
296
+ style_options = convert_options[style]
297
+ style_options = style_options.call(instance) if style_options.respond_to?(:call)
298
+
299
+ [ style_options, all_options ].compact.join(" ")
300
+ end
301
+
302
+ def post_process #:nodoc:
303
+ return if @queued_for_write[:original].nil?
304
+ instance.run_paperclip_callbacks(:post_process) do
305
+ instance.run_paperclip_callbacks(:"#{name}_post_process") do
306
+ post_process_styles
307
+ end
308
+ end
309
+ end
310
+
311
+ def post_process_styles #:nodoc:
312
+ styles.each do |name, style|
313
+ begin
314
+ raise RuntimeError.new("Style #{name} has no processors defined.") if style.processors.blank?
315
+ @queued_for_write[name] = style.processors.inject(@queued_for_write[:original]) do |file, processor|
316
+ Paperclip.processor(processor).make(file, style.processor_options, self)
317
+ end
318
+ rescue PaperclipError => e
319
+ log("An error was received while processing: #{e.inspect}")
320
+ (@errors[:processing] ||= []) << e.message if @whiny
321
+ end
322
+ end
323
+ end
324
+
325
+ def interpolate pattern, style_name = default_style #:nodoc:
326
+ Paperclip::Interpolations.interpolate(pattern, self, style_name)
327
+ end
328
+
329
+ def queue_existing_for_delete #:nodoc:
330
+ return unless file?
331
+ @queued_for_delete += [:original, *styles.keys].uniq.map do |style|
332
+ path(style) if exists?(style)
333
+ end.compact
334
+ instance_write(:file_name, nil)
335
+ instance_write(:content_type, nil)
336
+ instance_write(:file_size, nil)
337
+ instance_write(:updated_at, nil)
338
+ end
339
+
340
+ def flush_errors #:nodoc:
341
+ @errors.each do |error, message|
342
+ [message].flatten.each {|m| instance.errors.add(name, m) }
343
+ end
344
+ end
345
+
346
+ end
347
+ end
@@ -0,0 +1,61 @@
1
+ module Paperclip
2
+ module CallbackCompatability
3
+ module Rails21
4
+ def self.included(base)
5
+ base.extend(Defining)
6
+ base.send(:include, Running)
7
+ end
8
+
9
+ module Defining
10
+ def define_paperclip_callbacks(*args)
11
+ args.each do |callback|
12
+ define_callbacks("before_#{callback}")
13
+ define_callbacks("after_#{callback}")
14
+ end
15
+ end
16
+ end
17
+
18
+ module Running
19
+ def run_paperclip_callbacks(callback, opts = nil, &blk)
20
+ # The overall structure of this isn't ideal since after callbacks run even if
21
+ # befores return false. But this is how rails 3's callbacks work, unfortunately.
22
+ if run_callbacks(:"before_#{callback}"){ |result, object| result == false } != false
23
+ blk.call
24
+ end
25
+ run_callbacks(:"after_#{callback}"){ |result, object| result == false }
26
+ end
27
+ end
28
+ end
29
+
30
+ module Rails3
31
+ def self.included(base)
32
+ base.extend(Defining)
33
+ base.send(:include, Running)
34
+ end
35
+
36
+ module Defining
37
+ def define_paperclip_callbacks(*callbacks)
38
+ define_callbacks *[callbacks, {:terminator => "result == false"}].flatten
39
+ callbacks.each do |callback|
40
+ eval <<-end_callbacks
41
+ def before_#{callback}(*args, &blk)
42
+ set_callback(:#{callback}, :before, *args, &blk)
43
+ end
44
+ def after_#{callback}(*args, &blk)
45
+ set_callback(:#{callback}, :after, *args, &blk)
46
+ end
47
+ end_callbacks
48
+ end
49
+ end
50
+ end
51
+
52
+ module Running
53
+ def run_paperclip_callbacks(callback, opts = nil, &block)
54
+ run_callbacks(callback, opts, &block)
55
+ end
56
+ end
57
+
58
+ end
59
+
60
+ end
61
+ end
@@ -0,0 +1,80 @@
1
+ module Paperclip
2
+ class CommandLine
3
+ class << self
4
+ attr_accessor :path
5
+ end
6
+
7
+ def initialize(binary, params = "", options = {})
8
+ @binary = binary.dup
9
+ @params = params.dup
10
+ @options = options.dup
11
+ @swallow_stderr = @options.has_key?(:swallow_stderr) ? @options.delete(:swallow_stderr) : Paperclip.options[:swallow_stderr]
12
+ @expected_outcodes = @options.delete(:expected_outcodes)
13
+ @expected_outcodes ||= [0]
14
+ end
15
+
16
+ def command
17
+ cmd = []
18
+ cmd << full_path(@binary)
19
+ cmd << interpolate(@params, @options)
20
+ cmd << bit_bucket if @swallow_stderr
21
+ cmd.join(" ")
22
+ end
23
+
24
+ def run
25
+ Paperclip.log(command)
26
+ begin
27
+ output = self.class.send(:'`', command)
28
+ rescue Errno::ENOENT
29
+ raise Paperclip::CommandNotFoundError
30
+ end
31
+ if $?.exitstatus == 127
32
+ raise Paperclip::CommandNotFoundError
33
+ end
34
+ unless @expected_outcodes.include?($?.exitstatus)
35
+ raise Paperclip::PaperclipCommandLineError, "Command '#{command}' returned #{$?.exitstatus}. Expected #{@expected_outcodes.join(", ")}"
36
+ end
37
+ output
38
+ end
39
+
40
+ private
41
+
42
+ def full_path(binary)
43
+ [self.class.path, binary].compact.join("/")
44
+ end
45
+
46
+ def interpolate(pattern, vars)
47
+ # interpolates :variables and :{variables}
48
+ pattern.gsub(%r#:(?:\w+|\{\w+\})#) do |match|
49
+ key = match[1..-1]
50
+ key = key[1..-2] if key[0,1] == '{'
51
+ if invalid_variables.include?(key)
52
+ raise PaperclipCommandLineError,
53
+ "Interpolation of #{key} isn't allowed."
54
+ end
55
+ shell_quote(vars[key.to_sym])
56
+ end
57
+ end
58
+
59
+ def invalid_variables
60
+ %w(expected_outcodes swallow_stderr)
61
+ end
62
+
63
+ def shell_quote(string)
64
+ return "" if string.nil? or string.blank?
65
+ if self.class.unix?
66
+ string.split("'").map{|m| "'#{m}'" }.join("\\'")
67
+ else
68
+ %{"#{string}"}
69
+ end
70
+ end
71
+
72
+ def bit_bucket
73
+ self.class.unix? ? "2>/dev/null" : "2>NUL"
74
+ end
75
+
76
+ def self.unix?
77
+ File.exist?("/dev/null")
78
+ end
79
+ end
80
+ end