path-paperclip 2.3.3

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 (57) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +198 -0
  3. data/Rakefile +76 -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 +440 -0
  12. data/lib/paperclip/attachment.rb +401 -0
  13. data/lib/paperclip/callback_compatability.rb +61 -0
  14. data/lib/paperclip/geometry.rb +150 -0
  15. data/lib/paperclip/interpolations.rb +113 -0
  16. data/lib/paperclip/iostream.rb +59 -0
  17. data/lib/paperclip/matchers.rb +33 -0
  18. data/lib/paperclip/matchers/have_attached_file_matcher.rb +57 -0
  19. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +75 -0
  20. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +54 -0
  21. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +95 -0
  22. data/lib/paperclip/processor.rb +49 -0
  23. data/lib/paperclip/railtie.rb +20 -0
  24. data/lib/paperclip/storage.rb +258 -0
  25. data/lib/paperclip/style.rb +90 -0
  26. data/lib/paperclip/thumbnail.rb +78 -0
  27. data/lib/paperclip/upfile.rb +52 -0
  28. data/lib/paperclip/version.rb +3 -0
  29. data/lib/tasks/paperclip.rake +95 -0
  30. data/rails/init.rb +2 -0
  31. data/shoulda_macros/paperclip.rb +119 -0
  32. data/test/attachment_test.rb +796 -0
  33. data/test/database.yml +4 -0
  34. data/test/fixtures/12k.png +0 -0
  35. data/test/fixtures/50x50.png +0 -0
  36. data/test/fixtures/5k.png +0 -0
  37. data/test/fixtures/bad.png +1 -0
  38. data/test/fixtures/ceedub.gif +0 -0
  39. data/test/fixtures/s3.yml +8 -0
  40. data/test/fixtures/text.txt +1 -0
  41. data/test/fixtures/twopage.pdf +0 -0
  42. data/test/geometry_test.rb +177 -0
  43. data/test/helper.rb +152 -0
  44. data/test/integration_test.rb +610 -0
  45. data/test/interpolations_test.rb +135 -0
  46. data/test/iostream_test.rb +78 -0
  47. data/test/matchers/have_attached_file_matcher_test.rb +24 -0
  48. data/test/matchers/validate_attachment_content_type_matcher_test.rb +54 -0
  49. data/test/matchers/validate_attachment_presence_matcher_test.rb +26 -0
  50. data/test/matchers/validate_attachment_size_matcher_test.rb +51 -0
  51. data/test/paperclip_test.rb +389 -0
  52. data/test/processor_test.rb +10 -0
  53. data/test/storage_test.rb +407 -0
  54. data/test/style_test.rb +141 -0
  55. data/test/thumbnail_test.rb +227 -0
  56. data/test/upfile_test.rb +36 -0
  57. metadata +221 -0
@@ -0,0 +1,54 @@
1
+ module Paperclip
2
+ module Shoulda
3
+ module Matchers
4
+ # Ensures that the given instance or class validates the presence of the
5
+ # given attachment.
6
+ #
7
+ # describe User do
8
+ # it { should validate_attachment_presence(:avatar) }
9
+ # end
10
+ def validate_attachment_presence name
11
+ ValidateAttachmentPresenceMatcher.new(name)
12
+ end
13
+
14
+ class ValidateAttachmentPresenceMatcher
15
+ def initialize attachment_name
16
+ @attachment_name = attachment_name
17
+ end
18
+
19
+ def matches? subject
20
+ @subject = subject
21
+ @subject = @subject.class unless Class === @subject
22
+ error_when_not_valid? && no_error_when_valid?
23
+ end
24
+
25
+ def failure_message
26
+ "Attachment #{@attachment_name} should be required"
27
+ end
28
+
29
+ def negative_failure_message
30
+ "Attachment #{@attachment_name} should not be required"
31
+ end
32
+
33
+ def description
34
+ "require presence of attachment #{@attachment_name}"
35
+ end
36
+
37
+ protected
38
+
39
+ def error_when_not_valid?
40
+ (subject = @subject.new).send(@attachment_name).assign(nil)
41
+ subject.valid?
42
+ not subject.errors[:"#{@attachment_name}_file_name"].blank?
43
+ end
44
+
45
+ def no_error_when_valid?
46
+ @file = StringIO.new(".")
47
+ (subject = @subject.new).send(@attachment_name).assign(@file)
48
+ subject.valid?
49
+ subject.errors[:"#{@attachment_name}_file_name"].blank?
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,95 @@
1
+ module Paperclip
2
+ module Shoulda
3
+ module Matchers
4
+ # Ensures that the given instance or class validates the size of the
5
+ # given attachment as specified.
6
+ #
7
+ # Examples:
8
+ # it { should validate_attachment_size(:avatar).
9
+ # less_than(2.megabytes) }
10
+ # it { should validate_attachment_size(:icon).
11
+ # greater_than(1024) }
12
+ # it { should validate_attachment_size(:icon).
13
+ # in(0..100) }
14
+ def validate_attachment_size name
15
+ ValidateAttachmentSizeMatcher.new(name)
16
+ end
17
+
18
+ class ValidateAttachmentSizeMatcher
19
+ def initialize attachment_name
20
+ @attachment_name = attachment_name
21
+ @low, @high = 0, (1.0/0)
22
+ end
23
+
24
+ def less_than size
25
+ @high = size
26
+ self
27
+ end
28
+
29
+ def greater_than size
30
+ @low = size
31
+ self
32
+ end
33
+
34
+ def in range
35
+ @low, @high = range.first, range.last
36
+ self
37
+ end
38
+
39
+ def matches? subject
40
+ @subject = subject
41
+ @subject = @subject.class unless Class === @subject
42
+ lower_than_low? && higher_than_low? && lower_than_high? && higher_than_high?
43
+ end
44
+
45
+ def failure_message
46
+ "Attachment #{@attachment_name} must be between #{@low} and #{@high} bytes"
47
+ end
48
+
49
+ def negative_failure_message
50
+ "Attachment #{@attachment_name} cannot be between #{@low} and #{@high} bytes"
51
+ end
52
+
53
+ def description
54
+ "validate the size of attachment #{@attachment_name}"
55
+ end
56
+
57
+ protected
58
+
59
+ def override_method object, method, &replacement
60
+ (class << object; self; end).class_eval do
61
+ define_method(method, &replacement)
62
+ end
63
+ end
64
+
65
+ def passes_validation_with_size(new_size)
66
+ file = StringIO.new(".")
67
+ override_method(file, :size){ new_size }
68
+ override_method(file, :to_tempfile){ file }
69
+
70
+ (subject = @subject.new).send(@attachment_name).assign(file)
71
+ subject.valid?
72
+ subject.errors[:"#{@attachment_name}_file_size"].blank?
73
+ end
74
+
75
+ def lower_than_low?
76
+ not passes_validation_with_size(@low - 1)
77
+ end
78
+
79
+ def higher_than_low?
80
+ passes_validation_with_size(@low + 1)
81
+ end
82
+
83
+ def lower_than_high?
84
+ return true if @high == (1.0/0)
85
+ passes_validation_with_size(@high - 1)
86
+ end
87
+
88
+ def higher_than_high?
89
+ return true if @high == (1.0/0)
90
+ not passes_validation_with_size(@high + 1)
91
+ end
92
+ end
93
+ end
94
+ end
95
+ end
@@ -0,0 +1,49 @@
1
+ module Paperclip
2
+ # Paperclip processors allow you to modify attached files when they are
3
+ # attached in any way you are able. Paperclip itself uses command-line
4
+ # programs for its included Thumbnail processor, but custom processors
5
+ # are not required to follow suit.
6
+ #
7
+ # Processors are required to be defined inside the Paperclip module and
8
+ # are also required to be a subclass of Paperclip::Processor. There is
9
+ # only one method you *must* implement to properly be a subclass:
10
+ # #make, but #initialize may also be of use. Both methods accept 3
11
+ # arguments: the file that will be operated on (which is an instance of
12
+ # File), a hash of options that were defined in has_attached_file's
13
+ # style hash, and the Paperclip::Attachment itself.
14
+ #
15
+ # All #make needs to return is an instance of File (Tempfile is
16
+ # acceptable) which contains the results of the processing.
17
+ #
18
+ # See Paperclip.run for more information about using command-line
19
+ # utilities from within Processors.
20
+ class Processor
21
+ attr_accessor :file, :options, :attachment
22
+
23
+ def initialize file, options = {}, attachment = nil
24
+ @file = file
25
+ @options = options
26
+ @attachment = attachment
27
+ end
28
+
29
+ def make
30
+ end
31
+
32
+ def self.make file, options = {}, attachment = nil
33
+ new(file, options, attachment).make
34
+ end
35
+ end
36
+
37
+ # Due to how ImageMagick handles its image format conversion and how Tempfile
38
+ # handles its naming scheme, it is necessary to override how Tempfile makes
39
+ # its names so as to allow for file extensions. Idea taken from the comments
40
+ # on this blog post:
41
+ # http://marsorange.com/archives/of-mogrify-ruby-tempfile-dynamic-class-definitions
42
+ class Tempfile < ::Tempfile
43
+ # Replaces Tempfile's +make_tmpname+ with one that honors file extensions.
44
+ def make_tmpname(basename, n)
45
+ extension = File.extname(basename)
46
+ sprintf("%s,%d,%d%s", File.basename(basename, extension), $$, n.to_i, extension)
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,20 @@
1
+ require 'paperclip'
2
+
3
+ module Paperclip
4
+ if defined? Rails::Railtie
5
+ require 'rails'
6
+ class Railtie < Rails::Railtie
7
+ initializer 'paperclip.insert_into_active_record' do
8
+ ActiveSupport.on_load :rails do
9
+ File.send(:include, Paperclip::Upfile)
10
+ end
11
+ ActiveSupport.on_load :active_record do
12
+ ActiveRecord::Base.send(:include, Paperclip)
13
+ end
14
+ end
15
+ rake_tasks do
16
+ load "tasks/paperclip.rake"
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,258 @@
1
+ module Paperclip
2
+ module Storage
3
+
4
+ # The default place to store attachments is in the filesystem. Files on the local
5
+ # filesystem can be very easily served by Apache without requiring a hit to your app.
6
+ # They also can be processed more easily after they've been saved, as they're just
7
+ # normal files. There is one Filesystem-specific option for has_attached_file.
8
+ # * +path+: The location of the repository of attachments on disk. This can (and, in
9
+ # almost all cases, should) be coordinated with the value of the +url+ option to
10
+ # allow files to be saved into a place where Apache can serve them without
11
+ # hitting your app. Defaults to
12
+ # ":rails_root/public/:attachment/:id/:style/:basename.:extension"
13
+ # By default this places the files in the app's public directory which can be served
14
+ # directly. If you are using capistrano for deployment, a good idea would be to
15
+ # make a symlink to the capistrano-created system directory from inside your app's
16
+ # public directory.
17
+ # See Paperclip::Attachment#interpolate for more information on variable interpolaton.
18
+ # :path => "/var/app/attachments/:class/:id/:style/:basename.:extension"
19
+ module Filesystem
20
+ def self.extended base
21
+ end
22
+
23
+ def exists?(style_name = default_style)
24
+ if original_filename
25
+ File.exist?(path(style_name))
26
+ else
27
+ false
28
+ end
29
+ end
30
+
31
+ # Returns representation of the data of the file assigned to the given
32
+ # style, in the format most representative of the current storage.
33
+ def to_file style_name = default_style
34
+ @queued_for_write[style_name] || (File.new(path(style_name), 'rb') if exists?(style_name))
35
+ end
36
+
37
+ def flush_writes #:nodoc:
38
+ @queued_for_write.each do |style_name, file|
39
+ file.close
40
+ FileUtils.mkdir_p(File.dirname(path(style_name)))
41
+ log("saving #{path(style_name)}")
42
+ FileUtils.mv(file.path, path(style_name))
43
+ FileUtils.chmod(0644, path(style_name))
44
+ end
45
+ @queued_for_write = {}
46
+ end
47
+
48
+ def flush_deletes #:nodoc:
49
+ unless delete_files?
50
+ @queued_for_delete = []
51
+ return
52
+ end
53
+ @queued_for_delete.each do |path|
54
+ begin
55
+ log("deleting #{path}")
56
+ FileUtils.rm(path) if File.exist?(path)
57
+ rescue Errno::ENOENT => e
58
+ # ignore file-not-found, let everything else pass
59
+ end
60
+ begin
61
+ while(true)
62
+ path = File.dirname(path)
63
+ FileUtils.rmdir(path)
64
+ end
65
+ rescue Errno::EEXIST, Errno::ENOTEMPTY, Errno::ENOENT, Errno::EINVAL, Errno::ENOTDIR
66
+ # Stop trying to remove parent directories
67
+ rescue SystemCallError => e
68
+ log("There was an unexpected error while deleting directories: #{e.class}")
69
+ # Ignore it
70
+ end
71
+ end
72
+ @queued_for_delete = []
73
+ end
74
+ end
75
+
76
+ # Amazon's S3 file hosting service is a scalable, easy place to store files for
77
+ # distribution. You can find out more about it at http://aws.amazon.com/s3
78
+ # There are a few S3-specific options for has_attached_file:
79
+ # * +s3_credentials+: Takes a path, a File, or a Hash. The path (or File) must point
80
+ # to a YAML file containing the +access_key_id+ and +secret_access_key+ that Amazon
81
+ # gives you. You can 'environment-space' this just like you do to your
82
+ # database.yml file, so different environments can use different accounts:
83
+ # development:
84
+ # access_key_id: 123...
85
+ # secret_access_key: 123...
86
+ # test:
87
+ # access_key_id: abc...
88
+ # secret_access_key: abc...
89
+ # production:
90
+ # access_key_id: 456...
91
+ # secret_access_key: 456...
92
+ # This is not required, however, and the file may simply look like this:
93
+ # access_key_id: 456...
94
+ # secret_access_key: 456...
95
+ # In which case, those access keys will be used in all environments. You can also
96
+ # put your bucket name in this file, instead of adding it to the code directly.
97
+ # This is useful when you want the same account but a different bucket for
98
+ # development versus production.
99
+ # * +s3_permissions+: This is a String that should be one of the "canned" access
100
+ # policies that S3 provides (more information can be found here:
101
+ # http://docs.amazonwebservices.com/AmazonS3/2006-03-01/RESTAccessPolicy.html#RESTCannedAccessPolicies)
102
+ # The default for Paperclip is :public_read.
103
+ # * +s3_protocol+: The protocol for the URLs generated to your S3 assets. Can be either
104
+ # 'http' or 'https'. Defaults to 'http' when your :s3_permissions are :public_read (the
105
+ # default), and 'https' when your :s3_permissions are anything else.
106
+ # * +s3_headers+: A hash of headers such as {'Expires' => 1.year.from_now.httpdate}
107
+ # * +bucket+: This is the name of the S3 bucket that will store your files. Remember
108
+ # that the bucket must be unique across all of Amazon S3. If the bucket does not exist
109
+ # Paperclip will attempt to create it. The bucket name will not be interpolated.
110
+ # You can define the bucket as a Proc if you want to determine it's name at runtime.
111
+ # Paperclip will call that Proc with attachment as the only argument.
112
+ # * +s3_host_alias+: The fully-qualified domain name (FQDN) that is the alias to the
113
+ # S3 domain of your bucket. Used with the :s3_alias_url url interpolation. See the
114
+ # link in the +url+ entry for more information about S3 domains and buckets.
115
+ # * +url+: There are three options for the S3 url. You can choose to have the bucket's name
116
+ # placed domain-style (bucket.s3.amazonaws.com) or path-style (s3.amazonaws.com/bucket).
117
+ # Lastly, you can specify a CNAME (which requires the CNAME to be specified as
118
+ # :s3_alias_url. You can read more about CNAMEs and S3 at
119
+ # http://docs.amazonwebservices.com/AmazonS3/latest/index.html?VirtualHosting.html
120
+ # Normally, this won't matter in the slightest and you can leave the default (which is
121
+ # path-style, or :s3_path_url). But in some cases paths don't work and you need to use
122
+ # the domain-style (:s3_domain_url). Anything else here will be treated like path-style.
123
+ # NOTE: If you use a CNAME for use with CloudFront, you can NOT specify https as your
124
+ # :s3_protocol; This is *not supported* by S3/CloudFront. Finally, when using the host
125
+ # alias, the :bucket parameter is ignored, as the hostname is used as the bucket name
126
+ # by S3.
127
+ # * +path+: This is the key under the bucket in which the file will be stored. The
128
+ # URL will be constructed from the bucket and the path. This is what you will want
129
+ # to interpolate. Keys should be unique, like filenames, and despite the fact that
130
+ # S3 (strictly speaking) does not support directories, you can still use a / to
131
+ # separate parts of your file name.
132
+ module S3
133
+ def self.extended base
134
+ begin
135
+ require 'aws/s3'
136
+ rescue LoadError => e
137
+ e.message << " (You may need to install the aws-s3 gem)"
138
+ raise e
139
+ end
140
+
141
+ base.instance_eval do
142
+ @s3_credentials = parse_credentials(@options[:s3_credentials])
143
+ @bucket = @options[:bucket] || @s3_credentials[:bucket]
144
+ @bucket = @bucket.call(self) if @bucket.is_a?(Proc)
145
+ @s3_options = @options[:s3_options] || {}
146
+ @s3_permissions = @options[:s3_permissions] || :public_read
147
+ @s3_protocol = @options[:s3_protocol] || (@s3_permissions == :public_read ? 'http' : 'https')
148
+ @s3_headers = @options[:s3_headers] || {}
149
+ @s3_host_alias = @options[:s3_host_alias]
150
+ @url = ":s3_path_url" unless @url.to_s.match(/^:s3.*url$/)
151
+ AWS::S3::Base.establish_connection!( @s3_options.merge(
152
+ :access_key_id => @s3_credentials[:access_key_id],
153
+ :secret_access_key => @s3_credentials[:secret_access_key]
154
+ ))
155
+ end
156
+ Paperclip.interpolates(:s3_alias_url) do |attachment, style|
157
+ "#{attachment.s3_protocol}://#{attachment.s3_host_alias}/#{attachment.path(style).gsub(%r{^/}, "")}"
158
+ end
159
+ Paperclip.interpolates(:s3_path_url) do |attachment, style|
160
+ "#{attachment.s3_protocol}://s3.amazonaws.com/#{attachment.bucket_name}/#{attachment.path(style).gsub(%r{^/}, "")}"
161
+ end
162
+ Paperclip.interpolates(:s3_domain_url) do |attachment, style|
163
+ "#{attachment.s3_protocol}://#{attachment.bucket_name}.s3.amazonaws.com/#{attachment.path(style).gsub(%r{^/}, "")}"
164
+ end
165
+ Paperclip.interpolates(:s3_simple_url) do |attachment, style|
166
+ "/#{attachment.path(style).gsub(%r{^/}, "")}"
167
+ end
168
+ end
169
+
170
+ def expiring_url(time = 3600)
171
+ AWS::S3::S3Object.url_for(path, bucket_name, :expires_in => time )
172
+ end
173
+
174
+ def bucket_name
175
+ @bucket
176
+ end
177
+
178
+ def s3_host_alias
179
+ @s3_host_alias
180
+ end
181
+
182
+ def parse_credentials creds
183
+ creds = find_credentials(creds).stringify_keys
184
+ (creds[Rails.env] || creds).symbolize_keys
185
+ end
186
+
187
+ def exists?(style = default_style)
188
+ if original_filename
189
+ AWS::S3::S3Object.exists?(path(style), bucket_name)
190
+ else
191
+ false
192
+ end
193
+ end
194
+
195
+ def s3_protocol
196
+ @s3_protocol
197
+ end
198
+
199
+ # Returns representation of the data of the file assigned to the given
200
+ # style, in the format most representative of the current storage.
201
+ def to_file style = default_style
202
+ return @queued_for_write[style] if @queued_for_write[style]
203
+ file = Tempfile.new(path(style))
204
+ file.write(AWS::S3::S3Object.value(path(style), bucket_name))
205
+ file.rewind
206
+ return file
207
+ end
208
+
209
+ def flush_writes #:nodoc:
210
+ @queued_for_write.each do |style, file|
211
+ begin
212
+ log("saving #{path(style)}")
213
+ AWS::S3::S3Object.store(path(style),
214
+ file,
215
+ bucket_name,
216
+ {:content_type => instance_read(:content_type),
217
+ :access => @s3_permissions,
218
+ }.merge(@s3_headers))
219
+ rescue AWS::S3::ResponseError => e
220
+ raise
221
+ end
222
+ end
223
+ @queued_for_write = {}
224
+ end
225
+
226
+ def flush_deletes #:nodoc:
227
+ unless delete_files?
228
+ @queued_for_delete = []
229
+ return
230
+ end
231
+ @queued_for_delete.each do |path|
232
+ begin
233
+ log("deleting #{path}")
234
+ AWS::S3::S3Object.delete(path, bucket_name)
235
+ rescue AWS::S3::ResponseError
236
+ # Ignore this.
237
+ end
238
+ end
239
+ @queued_for_delete = []
240
+ end
241
+
242
+ def find_credentials creds
243
+ case creds
244
+ when File
245
+ YAML::load(ERB.new(File.read(creds.path)).result)
246
+ when String, Pathname
247
+ YAML::load(ERB.new(File.read(creds)).result)
248
+ when Hash
249
+ creds
250
+ else
251
+ raise ArgumentError, "Credentials are not a path, file, or hash."
252
+ end
253
+ end
254
+ private :find_credentials
255
+
256
+ end
257
+ end
258
+ end