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,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,58 @@
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
+ # This is Ruby 1.8.7's implementation.
44
+ if RUBY_VERSION <= "1.8.6"
45
+ def make_tmpname(basename, n)
46
+ case basename
47
+ when Array
48
+ prefix, suffix = *basename
49
+ else
50
+ prefix, suffix = basename, ''
51
+ end
52
+
53
+ t = Time.now.strftime("%y%m%d")
54
+ path = "#{prefix}#{t}-#{$$}-#{rand(0x100000000).to_s(36)}-#{n}#{suffix}"
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,25 @@
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 :active_record do
9
+ Paperclip::Railtie.insert
10
+ end
11
+ end
12
+ rake_tasks do
13
+ load "tasks/paperclip.rake"
14
+ end
15
+ end
16
+ end
17
+
18
+ class Railtie
19
+ def self.insert
20
+ ActiveRecord::Base.send(:include, Paperclip::Glue)
21
+ File.send(:include, Paperclip::Upfile)
22
+ ActionController::Base.send(:include, Paperclip::Storage::Database::ControllerClassMethods)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ require "paperclip/storage/filesystem"
2
+ require "paperclip/storage/s3"
3
+ require "paperclip/storage/database"
@@ -0,0 +1,204 @@
1
+ module Paperclip
2
+ module Storage
3
+
4
+ # Store files in a database.
5
+ #
6
+ # Usage is identical to the file system storage version, except:
7
+ #
8
+ # 1. In your model specify the "database" storage option; for example:
9
+ # has_attached_file :avatar, :storage => :database
10
+ #
11
+ # 2. The file will be stored in a column called [attachment name]_file (e.g. "avatar_file") by default.
12
+ #
13
+ # To specify a different column name, use :column, like this:
14
+ # has_attached_file :avatar, :storage => :database, :column => 'avatar_data'
15
+ #
16
+ # If you have defined different styles, these files will be stored in additional columns called
17
+ # [attachment name]_[style name]_file (e.g. "avatar_thumb_file") by default.
18
+ #
19
+ # To specify different column names for styles, use :column in the style definition, like this:
20
+ # has_attached_file :avatar,
21
+ # :storage => :database,
22
+ # :styles => {
23
+ # :medium => {:geometry => "300x300>", :column => 'medium_file'},
24
+ # :thumb => {:geometry => "100x100>", :column => 'thumb_file'}
25
+ # }
26
+ #
27
+ # 3. You need to create these new columns in your migrations or you'll get an exception. Example:
28
+ # add_column :users, :avatar_file, :binary
29
+ # add_column :users, :avatar_medium_file, :binary
30
+ # add_column :users, :avatar_thumb_file, :binary
31
+ #
32
+ # Note the "binary" migration will not work for the LONGBLOB type in MySQL for the
33
+ # file_contents column. You may need to craft a SQL statement for your migration,
34
+ # depending on which database server you are using. Here's an example migration for MySQL:
35
+ # execute 'ALTER TABLE users ADD COLUMN avatar_file LONGBLOB'
36
+ # execute 'ALTER TABLE users ADD COLUMN avatar_medium_file LONGBLOB'
37
+ # execute 'ALTER TABLE users ADD COLUMN avatar_thumb_file LONGBLOB'
38
+ #
39
+ # 4. To avoid performance problems loading all of the BLOB columns every time you access
40
+ # your ActiveRecord object, a class method is provided on your model called
41
+ # “select_without_file_columns_for.” This is set to a :select scope hash that will
42
+ # instruct ActiveRecord::Base.find to load all of the columns except the BLOB/file data columns.
43
+ #
44
+ # If you’re using Rails 2.3, you can specify this as a default scope:
45
+ # default_scope select_without_file_columns_for(:avatar)
46
+ #
47
+ # Or if you’re using Rails 2.1 or 2.2 you can use it to create a named scope:
48
+ # named_scope :without_file_data, select_without_file_columns_for(:avatar)
49
+ #
50
+ # 5. By default, URLs will be set to this pattern:
51
+ # /:relative_root/:class/:attachment/:id?style=:style
52
+ #
53
+ # Example:
54
+ # /app-root-url/users/avatars/23?style=original
55
+ #
56
+ # The idea here is that to retrieve a file from the database storage, you will need some
57
+ # controller's code to be executed.
58
+ #
59
+ # Once you pick a controller to use for downloading, you can add this line
60
+ # to generate the download action for the default URL/action (the plural attachment name),
61
+ # "avatars" in this example:
62
+ # downloads_files_for :user, :avatar
63
+ #
64
+ # Or you can write a download method manually if there are security, logging or other
65
+ # requirements.
66
+ #
67
+ # If you prefer a different URL for downloading files you can specify that in the model; e.g.:
68
+ # has_attached_file :avatar, :storage => :database, :url => '/users/show_avatar/:id/:style'
69
+ #
70
+ # 6. Add a route for the download to the controller which will handle downloads, if necessary.
71
+ #
72
+ # The default URL, /:relative_root/:class/:attachment/:id?style=:style, will be matched by
73
+ # the default route: :controller/:action/:id
74
+ #
75
+ module Database
76
+ def self.extended base
77
+ base.instance_eval do
78
+ @file_columns = @options[:file_columns]
79
+ if @url == base.class.default_options[:url]
80
+ @url = "/:class/:attachment/:id?style=:style"
81
+ end
82
+ end
83
+ Paperclip.interpolates(:relative_root) do |attachment, style|
84
+ begin
85
+ if ActionController::AbstractRequest.respond_to?(:relative_url_root)
86
+ relative_url_root = ActionController::AbstractRequest.relative_url_root
87
+ end
88
+ rescue NameError
89
+ end
90
+ if !relative_url_root && ActionController::Base.respond_to?(:relative_url_root)
91
+ relative_url_root = ActionController::Base.relative_url_root
92
+ end
93
+ relative_url_root
94
+ end
95
+ ActiveRecord::Base.logger.info("[paperclip] Database Storage Initalized.")
96
+ end
97
+
98
+ def column_for_style style
99
+ @file_columns[style.to_sym]
100
+ end
101
+
102
+ def instance_read_file(style)
103
+ column = column_for_style(style)
104
+ responds = instance.respond_to?(column)
105
+ cached = self.instance_variable_get("@_#{column}")
106
+ return cached if cached
107
+ # The blob attribute will not be present if select_without_file_columns_for was used
108
+ instance.reload :select => column if !instance.attribute_present?(column) && !instance.new_record?
109
+ instance.send(column) if responds
110
+ end
111
+
112
+ def instance_write_file(style, value)
113
+ setter = :"#{column_for_style(style)}="
114
+ responds = instance.respond_to?(setter)
115
+ self.instance_variable_set("@_#{setter.to_s.chop}", value)
116
+ instance.send(setter, value) if responds
117
+ end
118
+
119
+ def file_contents(style = default_style)
120
+ instance_read_file(style)
121
+ end
122
+ alias_method :data, :file_contents
123
+
124
+ def exists?(style = default_style)
125
+ !file_contents(style).nil?
126
+ end
127
+
128
+ # Returns representation of the data of the file assigned to the given
129
+ # style, in the format most representative of the current storage.
130
+ def to_file style = default_style
131
+
132
+ if @queued_for_write[style]
133
+ @queued_for_write[style]
134
+ elsif exists?(style)
135
+ tempfile = Tempfile.new instance_read(:file_name)
136
+ tempfile.write file_contents(style)
137
+ tempfile
138
+ else
139
+ nil
140
+ end
141
+ end
142
+ alias_method :to_io, :to_file
143
+
144
+ def path style = default_style
145
+ original_filename.nil? ? nil : column_for_style(style)
146
+ end
147
+
148
+ def assign uploaded_file
149
+
150
+ # Assign standard metadata attributes and perform post processing as usual
151
+ super
152
+
153
+ # Save the file contents for all styles in ActiveRecord immediately (before save)
154
+ @queued_for_write.each do |style, file|
155
+ file.rewind
156
+ instance_write_file(style, file.read)
157
+ end
158
+
159
+ # If we are assigning another Paperclip attachment, then fixup the
160
+ # filename and content type; necessary since Tempfile is used in to_file
161
+ if uploaded_file.is_a?(Paperclip::Attachment)
162
+ instance_write(:file_name, uploaded_file.instance_read(:file_name))
163
+ instance_write(:content_type, uploaded_file.instance_read(:content_type))
164
+ end
165
+ end
166
+
167
+ def queue_existing_for_delete
168
+ [:original, *@styles.keys].uniq.each do |style|
169
+ instance_write_file(style, nil)
170
+ end
171
+ instance_write(:file_name, nil)
172
+ instance_write(:content_type, nil)
173
+ instance_write(:file_size, nil)
174
+ instance_write(:updated_at, nil)
175
+ end
176
+
177
+ def flush_writes
178
+ @queued_for_write = {}
179
+ end
180
+
181
+ def flush_deletes
182
+ @queued_for_delete = []
183
+ end
184
+
185
+ module ControllerClassMethods
186
+ def self.included(base)
187
+ base.extend(self)
188
+ end
189
+ def downloads_files_for(model, attachment)
190
+ define_method("#{attachment.to_s.pluralize}") do
191
+ user_id = params[:id]
192
+ user_id ||= params[:user_id]
193
+ model_record = Object.const_get(model.to_s.camelize.to_sym).find(user_id)
194
+ style = params[:style] ? params[:style] : 'original'
195
+ send_data model_record.send(attachment).file_contents(style),
196
+ :filename => model_record.send("#{attachment}_file_name".to_sym),
197
+ :type => model_record.send("#{attachment}_content_type".to_sym)
198
+ end
199
+ end
200
+ end
201
+ end
202
+
203
+ end
204
+ end
@@ -0,0 +1,73 @@
1
+ module Paperclip
2
+ module Storage
3
+ # The default place to store attachments is in the filesystem. Files on the local
4
+ # filesystem can be very easily served by Apache without requiring a hit to your app.
5
+ # They also can be processed more easily after they've been saved, as they're just
6
+ # normal files. There is one Filesystem-specific option for has_attached_file.
7
+ # * +path+: The location of the repository of attachments on disk. This can (and, in
8
+ # almost all cases, should) be coordinated with the value of the +url+ option to
9
+ # allow files to be saved into a place where Apache can serve them without
10
+ # hitting your app. Defaults to
11
+ # ":rails_root/public/:attachment/:id/:style/:basename.:extension"
12
+ # By default this places the files in the app's public directory which can be served
13
+ # directly. If you are using capistrano for deployment, a good idea would be to
14
+ # make a symlink to the capistrano-created system directory from inside your app's
15
+ # public directory.
16
+ # See Paperclip::Attachment#interpolate for more information on variable interpolaton.
17
+ # :path => "/var/app/attachments/:class/:id/:style/:basename.:extension"
18
+ module Filesystem
19
+ def self.extended base
20
+ end
21
+
22
+ def exists?(style_name = default_style)
23
+ if original_filename
24
+ File.exist?(path(style_name))
25
+ else
26
+ false
27
+ end
28
+ end
29
+
30
+ # Returns representation of the data of the file assigned to the given
31
+ # style, in the format most representative of the current storage.
32
+ def to_file style_name = default_style
33
+ @queued_for_write[style_name] || (File.new(path(style_name), 'rb') if exists?(style_name))
34
+ end
35
+
36
+ def flush_writes #:nodoc:
37
+ @queued_for_write.each do |style_name, file|
38
+ file.close
39
+ FileUtils.mkdir_p(File.dirname(path(style_name)))
40
+ log("saving #{path(style_name)}")
41
+ FileUtils.mv(file.path, path(style_name))
42
+ FileUtils.chmod(0644, path(style_name))
43
+ end
44
+ @queued_for_write = {}
45
+ end
46
+
47
+ def flush_deletes #:nodoc:
48
+ @queued_for_delete.each do |path|
49
+ begin
50
+ log("deleting #{path}")
51
+ FileUtils.rm(path) if File.exist?(path)
52
+ rescue Errno::ENOENT => e
53
+ # ignore file-not-found, let everything else pass
54
+ end
55
+ begin
56
+ while(true)
57
+ path = File.dirname(path)
58
+ FileUtils.rmdir(path)
59
+ break if File.exists?(path) # Ruby 1.9.2 does not raise if the removal failed.
60
+ end
61
+ rescue Errno::EEXIST, Errno::ENOTEMPTY, Errno::ENOENT, Errno::EINVAL, Errno::ENOTDIR
62
+ # Stop trying to remove parent directories
63
+ rescue SystemCallError => e
64
+ log("There was an unexpected error while deleting directories: #{e.class}")
65
+ # Ignore it
66
+ end
67
+ end
68
+ @queued_for_delete = []
69
+ end
70
+ end
71
+
72
+ end
73
+ end