joshpuetz-paperclip 2.3.0
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.
- data/LICENSE +26 -0
- data/README.rdoc +174 -0
- data/Rakefile +99 -0
- data/generators/paperclip/USAGE +5 -0
- data/generators/paperclip/paperclip_generator.rb +27 -0
- data/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
- data/init.rb +1 -0
- data/lib/paperclip/attachment.rb +414 -0
- data/lib/paperclip/callback_compatability.rb +33 -0
- data/lib/paperclip/geometry.rb +115 -0
- data/lib/paperclip/interpolations.rb +105 -0
- data/lib/paperclip/iostream.rb +58 -0
- data/lib/paperclip/matchers/have_attached_file_matcher.rb +49 -0
- data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +66 -0
- data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +48 -0
- data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +83 -0
- data/lib/paperclip/matchers.rb +4 -0
- data/lib/paperclip/processor.rb +49 -0
- data/lib/paperclip/storage.rb +236 -0
- data/lib/paperclip/thumbnail.rb +70 -0
- data/lib/paperclip/upfile.rb +48 -0
- data/lib/paperclip.rb +350 -0
- data/shoulda_macros/paperclip.rb +68 -0
- data/tasks/paperclip_tasks.rake +79 -0
- data/test/attachment_test.rb +767 -0
- data/test/database.yml +4 -0
- data/test/fixtures/12k.png +0 -0
- data/test/fixtures/50x50.png +0 -0
- data/test/fixtures/5k.png +0 -0
- data/test/fixtures/bad.png +1 -0
- data/test/fixtures/s3.yml +4 -0
- data/test/fixtures/text.txt +0 -0
- data/test/fixtures/twopage.pdf +0 -0
- data/test/geometry_test.rb +177 -0
- data/test/helper.rb +99 -0
- data/test/integration_test.rb +481 -0
- data/test/interpolations_test.rb +120 -0
- data/test/iostream_test.rb +71 -0
- data/test/matchers/have_attached_file_matcher_test.rb +21 -0
- data/test/matchers/validate_attachment_content_type_matcher_test.rb +30 -0
- data/test/matchers/validate_attachment_presence_matcher_test.rb +21 -0
- data/test/matchers/validate_attachment_size_matcher_test.rb +50 -0
- data/test/paperclip_test.rb +291 -0
- data/test/processor_test.rb +10 -0
- data/test/storage_test.rb +282 -0
- data/test/thumbnail_test.rb +177 -0
- metadata +125 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
module Paperclip
|
2
|
+
# The Upfile module is a convenience module for adding uploaded-file-type methods
|
3
|
+
# to the +File+ class. Useful for testing.
|
4
|
+
# user.avatar = File.new("test/test_avatar.jpg")
|
5
|
+
module Upfile
|
6
|
+
|
7
|
+
# Infer the MIME-type of the file from the extension.
|
8
|
+
def content_type
|
9
|
+
type = (self.path.match(/\.(\w+)$/)[1] rescue "octet-stream").downcase
|
10
|
+
case type
|
11
|
+
when %r"jpe?g" then "image/jpeg"
|
12
|
+
when %r"tiff?" then "image/tiff"
|
13
|
+
when %r"png", "gif", "bmp" then "image/#{type}"
|
14
|
+
when "txt" then "text/plain"
|
15
|
+
when %r"html?" then "text/html"
|
16
|
+
when "csv", "xml", "css", "js" then "text/#{type}"
|
17
|
+
else "application/x-#{type}"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# Returns the file's normal name.
|
22
|
+
def original_filename
|
23
|
+
File.basename(self.path)
|
24
|
+
end
|
25
|
+
|
26
|
+
# Returns the size of the file.
|
27
|
+
def size
|
28
|
+
File.size(self)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
if defined? StringIO
|
34
|
+
class StringIO
|
35
|
+
attr_accessor :original_filename, :content_type
|
36
|
+
def original_filename
|
37
|
+
@original_filename ||= "stringio.txt"
|
38
|
+
end
|
39
|
+
def content_type
|
40
|
+
@content_type ||= "text/plain"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
class File #:nodoc:
|
46
|
+
include Paperclip::Upfile
|
47
|
+
end
|
48
|
+
|
data/lib/paperclip.rb
ADDED
@@ -0,0 +1,350 @@
|
|
1
|
+
# Paperclip allows file attachments that are stored in the filesystem. All graphical
|
2
|
+
# transformations are done using the Graphics/ImageMagick command line utilities and
|
3
|
+
# are stored in Tempfiles until the record is saved. Paperclip does not require a
|
4
|
+
# separate model for storing the attachment's information, instead adding a few simple
|
5
|
+
# columns to your table.
|
6
|
+
#
|
7
|
+
# Author:: Jon Yurek
|
8
|
+
# Copyright:: Copyright (c) 2008-2009 thoughtbot, inc.
|
9
|
+
# License:: MIT License (http://www.opensource.org/licenses/mit-license.php)
|
10
|
+
#
|
11
|
+
# Paperclip defines an attachment as any file, though it makes special considerations
|
12
|
+
# for image files. You can declare that a model has an attached file with the
|
13
|
+
# +has_attached_file+ method:
|
14
|
+
#
|
15
|
+
# class User < ActiveRecord::Base
|
16
|
+
# has_attached_file :avatar, :styles => { :thumb => "100x100" }
|
17
|
+
# end
|
18
|
+
#
|
19
|
+
# user = User.new
|
20
|
+
# user.avatar = params[:user][:avatar]
|
21
|
+
# user.avatar.url
|
22
|
+
# # => "/users/avatars/4/original_me.jpg"
|
23
|
+
# user.avatar.url(:thumb)
|
24
|
+
# # => "/users/avatars/4/thumb_me.jpg"
|
25
|
+
#
|
26
|
+
# See the +has_attached_file+ documentation for more details.
|
27
|
+
|
28
|
+
require 'tempfile'
|
29
|
+
require 'paperclip/upfile'
|
30
|
+
require 'paperclip/iostream'
|
31
|
+
require 'paperclip/geometry'
|
32
|
+
require 'paperclip/processor'
|
33
|
+
require 'paperclip/thumbnail'
|
34
|
+
require 'paperclip/storage'
|
35
|
+
require 'paperclip/interpolations'
|
36
|
+
require 'paperclip/attachment'
|
37
|
+
if defined? RAILS_ROOT
|
38
|
+
Dir.glob(File.join(File.expand_path(RAILS_ROOT), "lib", "paperclip_processors", "*.rb")).each do |processor|
|
39
|
+
require processor
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# The base module that gets included in ActiveRecord::Base. See the
|
44
|
+
# documentation for Paperclip::ClassMethods for more useful information.
|
45
|
+
module Paperclip
|
46
|
+
|
47
|
+
VERSION = "2.2.9.2"
|
48
|
+
|
49
|
+
class << self
|
50
|
+
# Provides configurability to Paperclip. There are a number of options available, such as:
|
51
|
+
# * whiny: Will raise an error if Paperclip cannot process thumbnails of
|
52
|
+
# an uploaded image. Defaults to true.
|
53
|
+
# * log: Logs progress to the Rails log. Uses ActiveRecord's logger, so honors
|
54
|
+
# log levels, etc. Defaults to true.
|
55
|
+
# * command_path: Defines the path at which to find the command line
|
56
|
+
# programs if they are not visible to Rails the system's search path. Defaults to
|
57
|
+
# nil, which uses the first executable found in the user's search path.
|
58
|
+
# * image_magick_path: Deprecated alias of command_path.
|
59
|
+
def options
|
60
|
+
@options ||= {
|
61
|
+
:whiny => true,
|
62
|
+
:image_magick_path => nil,
|
63
|
+
:command_path => nil,
|
64
|
+
:log => true,
|
65
|
+
:log_command => false,
|
66
|
+
:swallow_stderr => true
|
67
|
+
}
|
68
|
+
end
|
69
|
+
|
70
|
+
def path_for_command command #:nodoc:
|
71
|
+
if options[:image_magick_path]
|
72
|
+
warn("[DEPRECATION] :image_magick_path is deprecated and will be removed. Use :command_path instead")
|
73
|
+
end
|
74
|
+
path = [options[:command_path] || options[:image_magick_path], command].compact
|
75
|
+
File.join(*path)
|
76
|
+
end
|
77
|
+
|
78
|
+
def interpolates key, &block
|
79
|
+
Paperclip::Interpolations[key] = block
|
80
|
+
end
|
81
|
+
|
82
|
+
# The run method takes a command to execute and a string of parameters
|
83
|
+
# that get passed to it. The command is prefixed with the :command_path
|
84
|
+
# option from Paperclip.options. If you have many commands to run and
|
85
|
+
# they are in different paths, the suggested course of action is to
|
86
|
+
# symlink them so they are all in the same directory.
|
87
|
+
#
|
88
|
+
# If the command returns with a result code that is not one of the
|
89
|
+
# expected_outcodes, a PaperclipCommandLineError will be raised. Generally
|
90
|
+
# a code of 0 is expected, but a list of codes may be passed if necessary.
|
91
|
+
#
|
92
|
+
# This method can log the command being run when
|
93
|
+
# Paperclip.options[:log_command] is set to true (defaults to false). This
|
94
|
+
# will only log if logging in general is set to true as well.
|
95
|
+
def run cmd, params = "", expected_outcodes = 0
|
96
|
+
command = %Q<#{%Q[#{path_for_command(cmd)} #{params}].gsub(/\s+/, " ")}>
|
97
|
+
command = "#{command} 2>#{bit_bucket}" if Paperclip.options[:swallow_stderr]
|
98
|
+
Paperclip.log(command) if Paperclip.options[:log_command]
|
99
|
+
output = `#{command}`
|
100
|
+
unless [expected_outcodes].flatten.include?($?.exitstatus)
|
101
|
+
raise PaperclipCommandLineError, "Error while running #{cmd}"
|
102
|
+
end
|
103
|
+
output
|
104
|
+
end
|
105
|
+
|
106
|
+
def bit_bucket #:nodoc:
|
107
|
+
File.exists?("/dev/null") ? "/dev/null" : "NUL"
|
108
|
+
end
|
109
|
+
|
110
|
+
def included base #:nodoc:
|
111
|
+
base.extend ClassMethods
|
112
|
+
unless base.respond_to?(:define_callbacks)
|
113
|
+
base.send(:include, Paperclip::CallbackCompatability)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
def processor name #:nodoc:
|
118
|
+
name = name.to_s.camelize
|
119
|
+
processor = Paperclip.const_get(name)
|
120
|
+
unless processor.ancestors.include?(Paperclip::Processor)
|
121
|
+
raise PaperclipError.new("Processor #{name} was not found")
|
122
|
+
end
|
123
|
+
processor
|
124
|
+
end
|
125
|
+
|
126
|
+
# Log a paperclip-specific line. Uses ActiveRecord::Base.logger
|
127
|
+
# by default. Set Paperclip.options[:log] to false to turn off.
|
128
|
+
def log message
|
129
|
+
logger.info("[paperclip] #{message}") if logging?
|
130
|
+
end
|
131
|
+
|
132
|
+
def logger #:nodoc:
|
133
|
+
ActiveRecord::Base.logger
|
134
|
+
end
|
135
|
+
|
136
|
+
def logging? #:nodoc:
|
137
|
+
options[:log]
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
class PaperclipError < StandardError #:nodoc:
|
142
|
+
end
|
143
|
+
|
144
|
+
class PaperclipCommandLineError < StandardError #:nodoc:
|
145
|
+
end
|
146
|
+
|
147
|
+
class NotIdentifiedByImageMagickError < PaperclipError #:nodoc:
|
148
|
+
end
|
149
|
+
|
150
|
+
class InfiniteInterpolationError < PaperclipError #:nodoc:
|
151
|
+
end
|
152
|
+
|
153
|
+
module ClassMethods
|
154
|
+
# +has_attached_file+ gives the class it is called on an attribute that maps to a file. This
|
155
|
+
# is typically a file stored somewhere on the filesystem and has been uploaded by a user.
|
156
|
+
# The attribute returns a Paperclip::Attachment object which handles the management of
|
157
|
+
# that file. The intent is to make the attachment as much like a normal attribute. The
|
158
|
+
# thumbnails will be created when the new file is assigned, but they will *not* be saved
|
159
|
+
# until +save+ is called on the record. Likewise, if the attribute is set to +nil+ is
|
160
|
+
# called on it, the attachment will *not* be deleted until +save+ is called. See the
|
161
|
+
# Paperclip::Attachment documentation for more specifics. There are a number of options
|
162
|
+
# you can set to change the behavior of a Paperclip attachment:
|
163
|
+
# * +url+: The full URL of where the attachment is publically accessible. This can just
|
164
|
+
# as easily point to a directory served directly through Apache as it can to an action
|
165
|
+
# that can control permissions. You can specify the full domain and path, but usually
|
166
|
+
# just an absolute path is sufficient. The leading slash *must* be included manually for
|
167
|
+
# absolute paths. The default value is
|
168
|
+
# "/system/:attachment/:id/:style/:filename". See
|
169
|
+
# Paperclip::Attachment#interpolate for more information on variable interpolaton.
|
170
|
+
# :url => "/:class/:attachment/:id/:style_:filename"
|
171
|
+
# :url => "http://some.other.host/stuff/:class/:id_:extension"
|
172
|
+
# * +default_url+: The URL that will be returned if there is no attachment assigned.
|
173
|
+
# This field is interpolated just as the url is. The default value is
|
174
|
+
# "/:attachment/:style/missing.png"
|
175
|
+
# has_attached_file :avatar, :default_url => "/images/default_:style_avatar.png"
|
176
|
+
# User.new.avatar_url(:small) # => "/images/default_small_avatar.png"
|
177
|
+
# * +styles+: A hash of thumbnail styles and their geometries. You can find more about
|
178
|
+
# geometry strings at the ImageMagick website
|
179
|
+
# (http://www.imagemagick.org/script/command-line-options.php#resize). Paperclip
|
180
|
+
# also adds the "#" option (e.g. "50x50#"), which will resize the image to fit maximally
|
181
|
+
# inside the dimensions and then crop the rest off (weighted at the center). The
|
182
|
+
# default value is to generate no thumbnails.
|
183
|
+
# * +default_style+: The thumbnail style that will be used by default URLs.
|
184
|
+
# Defaults to +original+.
|
185
|
+
# has_attached_file :avatar, :styles => { :normal => "100x100#" },
|
186
|
+
# :default_style => :normal
|
187
|
+
# user.avatar.url # => "/avatars/23/normal_me.png"
|
188
|
+
# * +whiny+: Will raise an error if Paperclip cannot post_process an uploaded file due
|
189
|
+
# to a command line error. This will override the global setting for this attachment.
|
190
|
+
# Defaults to true. This option used to be called :whiny_thumbanils, but this is
|
191
|
+
# deprecated.
|
192
|
+
# * +convert_options+: When creating thumbnails, use this free-form options
|
193
|
+
# field to pass in various convert command options. Typical options are "-strip" to
|
194
|
+
# remove all Exif data from the image (save space for thumbnails and avatars) or
|
195
|
+
# "-depth 8" to specify the bit depth of the resulting conversion. See ImageMagick
|
196
|
+
# convert documentation for more options: (http://www.imagemagick.org/script/convert.php)
|
197
|
+
# Note that this option takes a hash of options, each of which correspond to the style
|
198
|
+
# of thumbnail being generated. You can also specify :all as a key, which will apply
|
199
|
+
# to all of the thumbnails being generated. If you specify options for the :original,
|
200
|
+
# it would be best if you did not specify destructive options, as the intent of keeping
|
201
|
+
# the original around is to regenerate all the thumbnails when requirements change.
|
202
|
+
# has_attached_file :avatar, :styles => { :large => "300x300", :negative => "100x100" }
|
203
|
+
# :convert_options => {
|
204
|
+
# :all => "-strip",
|
205
|
+
# :negative => "-negate"
|
206
|
+
# }
|
207
|
+
# NOTE: While not deprecated yet, it is not recommended to specify options this way.
|
208
|
+
# It is recommended that :convert_options option be included in the hash passed to each
|
209
|
+
# :styles for compatability with future versions.
|
210
|
+
# * +storage+: Chooses the storage backend where the files will be stored. The current
|
211
|
+
# choices are :filesystem and :s3. The default is :filesystem. Make sure you read the
|
212
|
+
# documentation for Paperclip::Storage::Filesystem and Paperclip::Storage::S3
|
213
|
+
# for backend-specific options.
|
214
|
+
def has_attached_file name, options = {}
|
215
|
+
include InstanceMethods
|
216
|
+
|
217
|
+
write_inheritable_attribute(:attachment_definitions, {}) if attachment_definitions.nil?
|
218
|
+
attachment_definitions[name] = {:validations => []}.merge(options)
|
219
|
+
|
220
|
+
after_save :save_attached_files
|
221
|
+
before_destroy :destroy_attached_files
|
222
|
+
|
223
|
+
define_callbacks :before_post_process, :after_post_process
|
224
|
+
define_callbacks :"before_#{name}_post_process", :"after_#{name}_post_process"
|
225
|
+
|
226
|
+
define_method name do |*args|
|
227
|
+
a = attachment_for(name)
|
228
|
+
(args.length > 0) ? a.to_s(args.first) : a
|
229
|
+
end
|
230
|
+
|
231
|
+
define_method "#{name}=" do |file|
|
232
|
+
attachment_for(name).assign(file)
|
233
|
+
end
|
234
|
+
|
235
|
+
define_method "#{name}?" do
|
236
|
+
attachment_for(name).file?
|
237
|
+
end
|
238
|
+
|
239
|
+
validates_each(name) do |record, attr, value|
|
240
|
+
attachment = record.attachment_for(name)
|
241
|
+
attachment.send(:flush_errors) unless attachment.valid?
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
# Places ActiveRecord-style validations on the size of the file assigned. The
|
246
|
+
# possible options are:
|
247
|
+
# * +in+: a Range of bytes (i.e. +1..1.megabyte+),
|
248
|
+
# * +less_than+: equivalent to :in => 0..options[:less_than]
|
249
|
+
# * +greater_than+: equivalent to :in => options[:greater_than]..Infinity
|
250
|
+
# * +message+: error message to display, use :min and :max as replacements
|
251
|
+
# * +if+: A lambda or name of a method on the instance. Validation will only
|
252
|
+
# be run is this lambda or method returns true.
|
253
|
+
# * +unless+: Same as +if+ but validates if lambda or method returns false.
|
254
|
+
def validates_attachment_size name, options = {}
|
255
|
+
min = options[:greater_than] || (options[:in] && options[:in].first) || 0
|
256
|
+
max = options[:less_than] || (options[:in] && options[:in].last) || (1.0/0)
|
257
|
+
range = (min..max)
|
258
|
+
message = options[:message] || "file size must be between :min and :max bytes."
|
259
|
+
|
260
|
+
attachment_definitions[name][:validations] << [:size, {:range => range,
|
261
|
+
:message => message,
|
262
|
+
:if => options[:if],
|
263
|
+
:unless => options[:unless]}]
|
264
|
+
end
|
265
|
+
|
266
|
+
# Adds errors if thumbnail creation fails. The same as specifying :whiny_thumbnails => true.
|
267
|
+
def validates_attachment_thumbnails name, options = {}
|
268
|
+
warn('[DEPRECATION] validates_attachment_thumbnail is deprecated. ' +
|
269
|
+
'This validation is on by default and will be removed from future versions. ' +
|
270
|
+
'If you wish to turn it off, supply :whiny => false in your definition.')
|
271
|
+
attachment_definitions[name][:whiny_thumbnails] = true
|
272
|
+
end
|
273
|
+
|
274
|
+
# Places ActiveRecord-style validations on the presence of a file.
|
275
|
+
# Options:
|
276
|
+
# * +if+: A lambda or name of a method on the instance. Validation will only
|
277
|
+
# be run is this lambda or method returns true.
|
278
|
+
# * +unless+: Same as +if+ but validates if lambda or method returns false.
|
279
|
+
def validates_attachment_presence name, options = {}
|
280
|
+
message = options[:message] || "must be set."
|
281
|
+
attachment_definitions[name][:validations] << [:presence, {:message => message,
|
282
|
+
:if => options[:if],
|
283
|
+
:unless => options[:unless]}]
|
284
|
+
end
|
285
|
+
|
286
|
+
# Places ActiveRecord-style validations on the content type of the file
|
287
|
+
# assigned. The possible options are:
|
288
|
+
# * +content_type+: Allowed content types. Can be a single content type
|
289
|
+
# or an array. Each type can be a String or a Regexp. It should be
|
290
|
+
# noted that Internet Explorer upload files with content_types that you
|
291
|
+
# may not expect. For example, JPEG images are given image/pjpeg and
|
292
|
+
# PNGs are image/x-png, so keep that in mind when determining how you
|
293
|
+
# match. Allows all by default.
|
294
|
+
# * +message+: The message to display when the uploaded file has an invalid
|
295
|
+
# content type.
|
296
|
+
# * +if+: A lambda or name of a method on the instance. Validation will only
|
297
|
+
# be run is this lambda or method returns true.
|
298
|
+
# * +unless+: Same as +if+ but validates if lambda or method returns false.
|
299
|
+
# NOTE: If you do not specify an [attachment]_content_type field on your
|
300
|
+
# model, content_type validation will work _ONLY upon assignment_ and
|
301
|
+
# re-validation after the instance has been reloaded will always succeed.
|
302
|
+
def validates_attachment_content_type name, options = {}
|
303
|
+
attachment_definitions[name][:validations] << [:content_type, {:content_type => options[:content_type],
|
304
|
+
:message => options[:message],
|
305
|
+
:if => options[:if],
|
306
|
+
:unless => options[:unless]}]
|
307
|
+
end
|
308
|
+
|
309
|
+
# Returns the attachment definitions defined by each call to
|
310
|
+
# has_attached_file.
|
311
|
+
def attachment_definitions
|
312
|
+
read_inheritable_attribute(:attachment_definitions)
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
module InstanceMethods #:nodoc:
|
317
|
+
def attachment_for name
|
318
|
+
@_paperclip_attachments ||= {}
|
319
|
+
@_paperclip_attachments[name] ||= Attachment.new(name, self, self.class.attachment_definitions[name])
|
320
|
+
end
|
321
|
+
|
322
|
+
def each_attachment
|
323
|
+
self.class.attachment_definitions.each do |name, definition|
|
324
|
+
yield(name, attachment_for(name))
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
328
|
+
def save_attached_files
|
329
|
+
logger.info("[paperclip] Saving attachments.")
|
330
|
+
each_attachment do |name, attachment|
|
331
|
+
attachment.send(:save)
|
332
|
+
end
|
333
|
+
end
|
334
|
+
|
335
|
+
def destroy_attached_files
|
336
|
+
logger.info("[paperclip] Deleting attachments.")
|
337
|
+
each_attachment do |name, attachment|
|
338
|
+
attachment.send(:queue_existing_for_delete)
|
339
|
+
attachment.send(:flush_deletes)
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
end
|
345
|
+
|
346
|
+
# Set it all up.
|
347
|
+
if Object.const_defined?("ActiveRecord")
|
348
|
+
ActiveRecord::Base.send(:include, Paperclip)
|
349
|
+
File.send(:include, Paperclip::Upfile)
|
350
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'paperclip/matchers'
|
2
|
+
|
3
|
+
module Paperclip
|
4
|
+
# =Paperclip Shoulda Macros
|
5
|
+
#
|
6
|
+
# These macros are intended for use with shoulda, and will be included into
|
7
|
+
# your tests automatically. All of the macros use the standard shoulda
|
8
|
+
# assumption that the name of the test is based on the name of the model
|
9
|
+
# you're testing (that is, UserTest is the test for the User model), and
|
10
|
+
# will load that class for testing purposes.
|
11
|
+
module Shoulda
|
12
|
+
include Matchers
|
13
|
+
# This will test whether you have defined your attachment correctly by
|
14
|
+
# checking for all the required fields exist after the definition of the
|
15
|
+
# attachment.
|
16
|
+
def should_have_attached_file name
|
17
|
+
klass = self.name.gsub(/Test$/, '').constantize
|
18
|
+
matcher = have_attached_file name
|
19
|
+
should matcher.description do
|
20
|
+
assert_accepts(matcher, klass)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# Tests for validations on the presence of the attachment.
|
25
|
+
def should_validate_attachment_presence name
|
26
|
+
klass = self.name.gsub(/Test$/, '').constantize
|
27
|
+
matcher = validate_attachment_presence name
|
28
|
+
should matcher.description do
|
29
|
+
assert_accepts(matcher, klass)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# Tests that you have content_type validations specified. There are two
|
34
|
+
# options, :valid and :invalid. Both accept an array of strings. The
|
35
|
+
# strings should be a list of content types which will pass and fail
|
36
|
+
# validation, respectively.
|
37
|
+
def should_validate_attachment_content_type name, options = {}
|
38
|
+
klass = self.name.gsub(/Test$/, '').constantize
|
39
|
+
valid = [options[:valid]].flatten
|
40
|
+
invalid = [options[:invalid]].flatten
|
41
|
+
matcher = validate_attachment_content_type(name).allowing(valid).rejecting(invalid)
|
42
|
+
should matcher.description do
|
43
|
+
assert_accepts(matcher, klass)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# Tests to ensure that you have file size validations turned on. You
|
48
|
+
# can pass the same options to this that you can to
|
49
|
+
# validate_attachment_file_size - :less_than, :greater_than, and :in.
|
50
|
+
# :less_than checks that a file is less than a certain size, :greater_than
|
51
|
+
# checks that a file is more than a certain size, and :in takes a Range or
|
52
|
+
# Array which specifies the lower and upper limits of the file size.
|
53
|
+
def should_validate_attachment_size name, options = {}
|
54
|
+
klass = self.name.gsub(/Test$/, '').constantize
|
55
|
+
min = options[:greater_than] || (options[:in] && options[:in].first) || 0
|
56
|
+
max = options[:less_than] || (options[:in] && options[:in].last) || (1.0/0)
|
57
|
+
range = (min..max)
|
58
|
+
matcher = validate_attachment_size(name).in(range)
|
59
|
+
should matcher.description do
|
60
|
+
assert_accepts(matcher, klass)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
class Test::Unit::TestCase #:nodoc:
|
67
|
+
extend Paperclip::Shoulda
|
68
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
def obtain_class
|
2
|
+
class_name = ENV['CLASS'] || ENV['class']
|
3
|
+
raise "Must specify CLASS" unless class_name
|
4
|
+
@klass = Object.const_get(class_name)
|
5
|
+
end
|
6
|
+
|
7
|
+
def obtain_attachments
|
8
|
+
name = ENV['ATTACHMENT'] || ENV['attachment']
|
9
|
+
raise "Class #{@klass.name} has no attachments specified" unless @klass.respond_to?(:attachment_definitions)
|
10
|
+
if !name.blank? && @klass.attachment_definitions.keys.include?(name)
|
11
|
+
[ name ]
|
12
|
+
else
|
13
|
+
@klass.attachment_definitions.keys
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def for_all_attachments
|
18
|
+
klass = obtain_class
|
19
|
+
names = obtain_attachments
|
20
|
+
ids = klass.connection.select_values(klass.send(:construct_finder_sql, :select => 'id'))
|
21
|
+
|
22
|
+
ids.each do |id|
|
23
|
+
instance = klass.find(id)
|
24
|
+
names.each do |name|
|
25
|
+
result = if instance.send("#{ name }?")
|
26
|
+
yield(instance, name)
|
27
|
+
else
|
28
|
+
true
|
29
|
+
end
|
30
|
+
print result ? "." : "x"; $stdout.flush
|
31
|
+
end
|
32
|
+
end
|
33
|
+
puts " Done."
|
34
|
+
end
|
35
|
+
|
36
|
+
namespace :paperclip do
|
37
|
+
desc "Refreshes both metadata and thumbnails."
|
38
|
+
task :refresh => ["paperclip:refresh:metadata", "paperclip:refresh:thumbnails"]
|
39
|
+
|
40
|
+
namespace :refresh do
|
41
|
+
desc "Regenerates thumbnails for a given CLASS (and optional ATTACHMENT)."
|
42
|
+
task :thumbnails => :environment do
|
43
|
+
errors = []
|
44
|
+
for_all_attachments do |instance, name|
|
45
|
+
result = instance.send(name).reprocess!
|
46
|
+
errors << [instance.id, instance.errors] unless instance.errors.blank?
|
47
|
+
result
|
48
|
+
end
|
49
|
+
errors.each{|e| puts "#{e.first}: #{e.last.full_messages.inspect}" }
|
50
|
+
end
|
51
|
+
|
52
|
+
desc "Regenerates content_type/size metadata for a given CLASS (and optional ATTACHMENT)."
|
53
|
+
task :metadata => :environment do
|
54
|
+
for_all_attachments do |instance, name|
|
55
|
+
if file = instance.send(name).to_file
|
56
|
+
instance.send("#{name}_file_name=", instance.send("#{name}_file_name").strip)
|
57
|
+
instance.send("#{name}_content_type=", file.content_type.strip)
|
58
|
+
instance.send("#{name}_file_size=", file.size) if instance.respond_to?("#{name}_file_size")
|
59
|
+
instance.save(false)
|
60
|
+
else
|
61
|
+
true
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
desc "Cleans out invalid attachments. Useful after you've added new validations."
|
68
|
+
task :clean => :environment do
|
69
|
+
for_all_attachments do |instance, name|
|
70
|
+
instance.send(name).send(:validate)
|
71
|
+
if instance.send(name).valid?
|
72
|
+
true
|
73
|
+
else
|
74
|
+
instance.send("#{name}=", nil)
|
75
|
+
instance.save
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|