radiant-paperclipped-extension 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +3 -0
- data/HELP_admin.markdown +69 -0
- data/LICENSE +21 -0
- data/README.md +137 -0
- data/Rakefile +110 -0
- data/VERSION +1 -0
- data/app/controllers/admin/assets_controller.rb +124 -0
- data/app/helpers/admin/assets_helper.rb +5 -0
- data/app/models/asset.rb +279 -0
- data/app/models/asset_page_tags.rb +101 -0
- data/app/models/asset_tags.rb +272 -0
- data/app/models/old_page_attachment.rb +26 -0
- data/app/models/page_attachment.rb +8 -0
- data/app/views/admin/assets/_asset.html.haml +19 -0
- data/app/views/admin/assets/_asset_table.html.haml +49 -0
- data/app/views/admin/assets/_assets_bucket.html.haml +8 -0
- data/app/views/admin/assets/_assets_container.html.haml +72 -0
- data/app/views/admin/assets/_bucket.html.haml +11 -0
- data/app/views/admin/assets/_bucket_asset.html.haml +9 -0
- data/app/views/admin/assets/_errors.html.haml +3 -0
- data/app/views/admin/assets/_form.html.haml +20 -0
- data/app/views/admin/assets/_page_assets.html.haml +12 -0
- data/app/views/admin/assets/_search_results.html.haml +17 -0
- data/app/views/admin/assets/_show_bucket_link.html.haml +4 -0
- data/app/views/admin/assets/_upload_to_page.html.haml +16 -0
- data/app/views/admin/assets/edit.html.haml +53 -0
- data/app/views/admin/assets/index.html.haml +43 -0
- data/app/views/admin/assets/new.html.haml +27 -0
- data/app/views/admin/assets/remove.html.haml +21 -0
- data/app/views/admin/bucket/_iframe.html.haml +1 -0
- data/config/locales/en.yml +60 -0
- data/config/locales/nl.yml +60 -0
- data/config/locales/pl.yml +60 -0
- data/config/routes.rb +20 -0
- data/db/migrate/001_create_assets.rb +12 -0
- data/db/migrate/002_create_paperclip_attributes.rb +13 -0
- data/db/migrate/003_create_user_observer.rb +13 -0
- data/db/migrate/004_create_page_attachments.rb +19 -0
- data/db/migrate/005_rename_users.rb +13 -0
- data/db/migrate/006_add_default_configs.rb +29 -0
- data/db/migrate/007_add_default_content_types.rb +29 -0
- data/db/migrate/20090316132151_disable_file_types.rb +20 -0
- data/lib/assets_admin_ui.rb +38 -0
- data/lib/mime_type_ext.rb +7 -0
- data/lib/tasks/assets_extension_tasks.rake +123 -0
- data/lib/tasks/paperclip_tasks.rake +79 -0
- data/lib/url_additions.rb +10 -0
- data/paperclipped_extension.rb +56 -0
- data/psds/file_type_icons.psd +0 -0
- data/psds/file_type_icons_.psd +0 -0
- data/public/images/assets/_page_assets.html.haml +26 -0
- data/public/images/assets/add-to-bucket.png +0 -0
- data/public/images/assets/add.png +0 -0
- data/public/images/assets/audio_icon.png +0 -0
- data/public/images/assets/audio_thumbnail.png +0 -0
- data/public/images/assets/delete.png +0 -0
- data/public/images/assets/doc_icon.png +0 -0
- data/public/images/assets/doc_thumbnail.png +0 -0
- data/public/images/assets/edit.png +0 -0
- data/public/images/assets/movie_icon.png +0 -0
- data/public/images/assets/movie_thumbnail.png +0 -0
- data/public/images/assets/new-asset.png +0 -0
- data/public/images/assets/page_edit.png +0 -0
- data/public/images/assets/pdf_icon.png +0 -0
- data/public/images/assets/pdf_thumbnail.png +0 -0
- data/public/images/assets/reorder_assets.png +0 -0
- data/public/javascripts/admin/assets.js +173 -0
- data/public/stylesheets/admin/assets.css +163 -0
- data/spec/controllers/admin/assets_controller_spec.rb +10 -0
- data/spec/models/asset_spec.rb +68 -0
- data/spec/spec.opts +6 -0
- data/spec/spec_helper.rb +27 -0
- data/vendor/plugins/acts_as_list/README +23 -0
- data/vendor/plugins/acts_as_list/init.rb +3 -0
- data/vendor/plugins/acts_as_list/lib/active_record/acts/list.rb +256 -0
- data/vendor/plugins/acts_as_list/test/list_test.rb +332 -0
- data/vendor/plugins/paperclip/LICENSE +26 -0
- data/vendor/plugins/paperclip/README.rdoc +179 -0
- data/vendor/plugins/paperclip/Rakefile +76 -0
- data/vendor/plugins/paperclip/cucumber/paperclip_steps.rb +6 -0
- data/vendor/plugins/paperclip/generators/paperclip/USAGE +5 -0
- data/vendor/plugins/paperclip/generators/paperclip/paperclip_generator.rb +27 -0
- data/vendor/plugins/paperclip/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
- data/vendor/plugins/paperclip/init.rb +1 -0
- data/vendor/plugins/paperclip/lib/generators/paperclip/USAGE +8 -0
- data/vendor/plugins/paperclip/lib/generators/paperclip/paperclip_generator.rb +31 -0
- data/vendor/plugins/paperclip/lib/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
- data/vendor/plugins/paperclip/lib/paperclip.rb +397 -0
- data/vendor/plugins/paperclip/lib/paperclip/attachment.rb +326 -0
- data/vendor/plugins/paperclip/lib/paperclip/callback_compatability.rb +61 -0
- data/vendor/plugins/paperclip/lib/paperclip/geometry.rb +115 -0
- data/vendor/plugins/paperclip/lib/paperclip/interpolations.rb +108 -0
- data/vendor/plugins/paperclip/lib/paperclip/iostream.rb +59 -0
- data/vendor/plugins/paperclip/lib/paperclip/matchers.rb +33 -0
- data/vendor/plugins/paperclip/lib/paperclip/matchers/have_attached_file_matcher.rb +57 -0
- data/vendor/plugins/paperclip/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +74 -0
- data/vendor/plugins/paperclip/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +54 -0
- data/vendor/plugins/paperclip/lib/paperclip/matchers/validate_attachment_size_matcher.rb +95 -0
- data/vendor/plugins/paperclip/lib/paperclip/processor.rb +49 -0
- data/vendor/plugins/paperclip/lib/paperclip/railtie.rb +24 -0
- data/vendor/plugins/paperclip/lib/paperclip/storage.rb +247 -0
- data/vendor/plugins/paperclip/lib/paperclip/style.rb +90 -0
- data/vendor/plugins/paperclip/lib/paperclip/thumbnail.rb +78 -0
- data/vendor/plugins/paperclip/lib/paperclip/upfile.rb +52 -0
- data/vendor/plugins/paperclip/lib/paperclip/version.rb +3 -0
- data/vendor/plugins/paperclip/lib/tasks/paperclip.rake +79 -0
- data/vendor/plugins/paperclip/paperclip.gemspec +34 -0
- data/vendor/plugins/paperclip/rails/init.rb +2 -0
- data/vendor/plugins/paperclip/shoulda_macros/paperclip.rb +119 -0
- data/vendor/plugins/paperclip/test/.gitignore +1 -0
- data/vendor/plugins/paperclip/test/attachment_test.rb +758 -0
- data/vendor/plugins/paperclip/test/database.yml +4 -0
- data/vendor/plugins/paperclip/test/fixtures/12k.png +0 -0
- data/vendor/plugins/paperclip/test/fixtures/50x50.png +0 -0
- data/vendor/plugins/paperclip/test/fixtures/5k.png +0 -0
- data/vendor/plugins/paperclip/test/fixtures/bad.png +1 -0
- data/vendor/plugins/paperclip/test/fixtures/s3.yml +8 -0
- data/vendor/plugins/paperclip/test/fixtures/text.txt +0 -0
- data/vendor/plugins/paperclip/test/fixtures/twopage.pdf +0 -0
- data/vendor/plugins/paperclip/test/geometry_test.rb +177 -0
- data/vendor/plugins/paperclip/test/helper.rb +148 -0
- data/vendor/plugins/paperclip/test/integration_test.rb +483 -0
- data/vendor/plugins/paperclip/test/interpolations_test.rb +124 -0
- data/vendor/plugins/paperclip/test/iostream_test.rb +78 -0
- data/vendor/plugins/paperclip/test/matchers/have_attached_file_matcher_test.rb +24 -0
- data/vendor/plugins/paperclip/test/matchers/validate_attachment_content_type_matcher_test.rb +37 -0
- data/vendor/plugins/paperclip/test/matchers/validate_attachment_presence_matcher_test.rb +26 -0
- data/vendor/plugins/paperclip/test/matchers/validate_attachment_size_matcher_test.rb +51 -0
- data/vendor/plugins/paperclip/test/paperclip_test.rb +317 -0
- data/vendor/plugins/paperclip/test/processor_test.rb +10 -0
- data/vendor/plugins/paperclip/test/storage_test.rb +343 -0
- data/vendor/plugins/paperclip/test/style_test.rb +141 -0
- data/vendor/plugins/paperclip/test/thumbnail_test.rb +227 -0
- data/vendor/plugins/paperclip/test/upfile_test.rb +36 -0
- data/vendor/plugins/responds_to_parent/MIT-LICENSE +20 -0
- data/vendor/plugins/responds_to_parent/README +42 -0
- data/vendor/plugins/responds_to_parent/Rakefile +22 -0
- data/vendor/plugins/responds_to_parent/init.rb +2 -0
- data/vendor/plugins/responds_to_parent/lib/parent_selector_assertion.rb +144 -0
- data/vendor/plugins/responds_to_parent/lib/responds_to_parent.rb +46 -0
- data/vendor/plugins/responds_to_parent/test/assert_select_parent_test.rb +318 -0
- data/vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb +115 -0
- metadata +226 -0
@@ -0,0 +1,326 @@
|
|
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
|
+
:processors => [:thumbnail],
|
14
|
+
:convert_options => {},
|
15
|
+
:default_url => "/:attachment/:style/missing.png",
|
16
|
+
:default_style => :original,
|
17
|
+
:storage => :filesystem,
|
18
|
+
:whiny => Paperclip.options[:whiny] || Paperclip.options[:whiny_thumbnails]
|
19
|
+
}
|
20
|
+
end
|
21
|
+
|
22
|
+
attr_reader :name, :instance, :default_style, :convert_options, :queued_for_write, :whiny, :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
|
+
@normalized_styles = nil
|
39
|
+
@default_url = options[:default_url]
|
40
|
+
@default_style = options[:default_style]
|
41
|
+
@storage = options[:storage]
|
42
|
+
@whiny = options[:whiny_thumbnails] || options[:whiny]
|
43
|
+
@convert_options = options[:convert_options]
|
44
|
+
@processors = options[:processors]
|
45
|
+
@options = options
|
46
|
+
@queued_for_delete = []
|
47
|
+
@queued_for_write = {}
|
48
|
+
@errors = {}
|
49
|
+
@dirty = false
|
50
|
+
|
51
|
+
initialize_storage
|
52
|
+
end
|
53
|
+
|
54
|
+
def styles
|
55
|
+
unless @normalized_styles
|
56
|
+
@normalized_styles = {}
|
57
|
+
(@styles.respond_to?(:call) ? @styles.call(self) : @styles).each do |name, args|
|
58
|
+
@normalized_styles[name] = Paperclip::Style.new(name, args, self)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
@normalized_styles
|
62
|
+
end
|
63
|
+
|
64
|
+
def processors
|
65
|
+
@processors.respond_to?(:call) ? @processors.call(instance) : @processors
|
66
|
+
end
|
67
|
+
|
68
|
+
# What gets called when you call instance.attachment = File. It clears
|
69
|
+
# errors, assigns attributes, and processes the file. It
|
70
|
+
# also queues up the previous file for deletion, to be flushed away on
|
71
|
+
# #save of its host. In addition to form uploads, you can also assign
|
72
|
+
# another Paperclip attachment:
|
73
|
+
# new_user.avatar = old_user.avatar
|
74
|
+
def assign uploaded_file
|
75
|
+
ensure_required_accessors!
|
76
|
+
|
77
|
+
if uploaded_file.is_a?(Paperclip::Attachment)
|
78
|
+
uploaded_file = uploaded_file.to_file(:original)
|
79
|
+
close_uploaded_file = uploaded_file.respond_to?(:close)
|
80
|
+
end
|
81
|
+
|
82
|
+
return nil unless valid_assignment?(uploaded_file)
|
83
|
+
|
84
|
+
uploaded_file.binmode if uploaded_file.respond_to? :binmode
|
85
|
+
self.clear
|
86
|
+
|
87
|
+
return nil if uploaded_file.nil?
|
88
|
+
|
89
|
+
@queued_for_write[:original] = uploaded_file.to_tempfile
|
90
|
+
instance_write(:file_name, uploaded_file.original_filename.strip)
|
91
|
+
instance_write(:content_type, uploaded_file.content_type.to_s.strip)
|
92
|
+
instance_write(:file_size, uploaded_file.size.to_i)
|
93
|
+
instance_write(:updated_at, Time.now)
|
94
|
+
|
95
|
+
@dirty = true
|
96
|
+
|
97
|
+
post_process
|
98
|
+
|
99
|
+
# Reset the file size if the original file was reprocessed.
|
100
|
+
instance_write(:file_size, @queued_for_write[:original].size.to_i)
|
101
|
+
ensure
|
102
|
+
uploaded_file.close if close_uploaded_file
|
103
|
+
end
|
104
|
+
|
105
|
+
# Returns the public URL of the attachment, with a given style. Note that
|
106
|
+
# this does not necessarily need to point to a file that your web server
|
107
|
+
# can access and can point to an action in your app, if you need fine
|
108
|
+
# grained security. This is not recommended if you don't need the
|
109
|
+
# security, however, for performance reasons. set
|
110
|
+
# include_updated_timestamp to false if you want to stop the attachment
|
111
|
+
# update time appended to the url
|
112
|
+
def url style_name = default_style, include_updated_timestamp = true
|
113
|
+
url = original_filename.nil? ? interpolate(@default_url, style_name) : interpolate(@url, style_name)
|
114
|
+
include_updated_timestamp && updated_at ? [url, updated_at].compact.join(url.include?("?") ? "&" : "?") : url
|
115
|
+
end
|
116
|
+
|
117
|
+
# Returns the path of the attachment as defined by the :path option. If the
|
118
|
+
# file is stored in the filesystem the path refers to the path of the file
|
119
|
+
# on disk. If the file is stored in S3, the path is the "key" part of the
|
120
|
+
# URL, and the :bucket option refers to the S3 bucket.
|
121
|
+
def path style_name = default_style
|
122
|
+
original_filename.nil? ? nil : interpolate(@path, style_name)
|
123
|
+
end
|
124
|
+
|
125
|
+
# Alias to +url+
|
126
|
+
def to_s style_name = nil
|
127
|
+
url(style_name)
|
128
|
+
end
|
129
|
+
|
130
|
+
# Returns an array containing the errors on this attachment.
|
131
|
+
def errors
|
132
|
+
@errors
|
133
|
+
end
|
134
|
+
|
135
|
+
# Returns true if there are changes that need to be saved.
|
136
|
+
def dirty?
|
137
|
+
@dirty
|
138
|
+
end
|
139
|
+
|
140
|
+
# Saves the file, if there are no errors. If there are, it flushes them to
|
141
|
+
# the instance's errors and returns false, cancelling the save.
|
142
|
+
def save
|
143
|
+
flush_deletes
|
144
|
+
flush_writes
|
145
|
+
@dirty = false
|
146
|
+
true
|
147
|
+
end
|
148
|
+
|
149
|
+
# Clears out the attachment. Has the same effect as previously assigning
|
150
|
+
# nil to the attachment. Does NOT save. If you wish to clear AND save,
|
151
|
+
# use #destroy.
|
152
|
+
def clear
|
153
|
+
queue_existing_for_delete
|
154
|
+
@errors = {}
|
155
|
+
end
|
156
|
+
|
157
|
+
# Destroys the attachment. Has the same effect as previously assigning
|
158
|
+
# nil to the attachment *and saving*. This is permanent. If you wish to
|
159
|
+
# wipe out the existing attachment but not save, use #clear.
|
160
|
+
def destroy
|
161
|
+
clear
|
162
|
+
save
|
163
|
+
end
|
164
|
+
|
165
|
+
# Returns the name of the file as originally assigned, and lives in the
|
166
|
+
# <attachment>_file_name attribute of the model.
|
167
|
+
def original_filename
|
168
|
+
instance_read(:file_name)
|
169
|
+
end
|
170
|
+
|
171
|
+
# Returns the size of the file as originally assigned, and lives in the
|
172
|
+
# <attachment>_file_size attribute of the model.
|
173
|
+
def size
|
174
|
+
instance_read(:file_size) || (@queued_for_write[:original] && @queued_for_write[:original].size)
|
175
|
+
end
|
176
|
+
|
177
|
+
# Returns the content_type of the file as originally assigned, and lives
|
178
|
+
# in the <attachment>_content_type attribute of the model.
|
179
|
+
def content_type
|
180
|
+
instance_read(:content_type)
|
181
|
+
end
|
182
|
+
|
183
|
+
# Returns the last modified time of the file as originally assigned, and
|
184
|
+
# lives in the <attachment>_updated_at attribute of the model.
|
185
|
+
def updated_at
|
186
|
+
time = instance_read(:updated_at)
|
187
|
+
time && time.to_f.to_i
|
188
|
+
end
|
189
|
+
|
190
|
+
# Paths and URLs can have a number of variables interpolated into them
|
191
|
+
# to vary the storage location based on name, id, style, class, etc.
|
192
|
+
# This method is a deprecated access into supplying and retrieving these
|
193
|
+
# interpolations. Future access should use either Paperclip.interpolates
|
194
|
+
# or extend the Paperclip::Interpolations module directly.
|
195
|
+
def self.interpolations
|
196
|
+
warn('[DEPRECATION] Paperclip::Attachment.interpolations is deprecated ' +
|
197
|
+
'and will be removed from future versions. ' +
|
198
|
+
'Use Paperclip.interpolates instead')
|
199
|
+
Paperclip::Interpolations
|
200
|
+
end
|
201
|
+
|
202
|
+
# This method really shouldn't be called that often. It's expected use is
|
203
|
+
# in the paperclip:refresh rake task and that's it. It will regenerate all
|
204
|
+
# thumbnails forcefully, by reobtaining the original file and going through
|
205
|
+
# the post-process again.
|
206
|
+
def reprocess!
|
207
|
+
new_original = Tempfile.new("paperclip-reprocess")
|
208
|
+
new_original.binmode
|
209
|
+
if old_original = to_file(:original)
|
210
|
+
new_original.write( old_original.read )
|
211
|
+
new_original.rewind
|
212
|
+
|
213
|
+
@queued_for_write = { :original => new_original }
|
214
|
+
post_process
|
215
|
+
|
216
|
+
old_original.close if old_original.respond_to?(:close)
|
217
|
+
|
218
|
+
save
|
219
|
+
else
|
220
|
+
true
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
# Returns true if a file has been assigned.
|
225
|
+
def file?
|
226
|
+
!original_filename.blank?
|
227
|
+
end
|
228
|
+
|
229
|
+
# Writes the attachment-specific attribute on the instance. For example,
|
230
|
+
# instance_write(:file_name, "me.jpg") will write "me.jpg" to the instance's
|
231
|
+
# "avatar_file_name" field (assuming the attachment is called avatar).
|
232
|
+
def instance_write(attr, value)
|
233
|
+
setter = :"#{name}_#{attr}="
|
234
|
+
responds = instance.respond_to?(setter)
|
235
|
+
self.instance_variable_set("@_#{setter.to_s.chop}", value)
|
236
|
+
instance.send(setter, value) if responds || attr.to_s == "file_name"
|
237
|
+
end
|
238
|
+
|
239
|
+
# Reads the attachment-specific attribute on the instance. See instance_write
|
240
|
+
# for more details.
|
241
|
+
def instance_read(attr)
|
242
|
+
getter = :"#{name}_#{attr}"
|
243
|
+
responds = instance.respond_to?(getter)
|
244
|
+
cached = self.instance_variable_get("@_#{getter}")
|
245
|
+
return cached if cached
|
246
|
+
instance.send(getter) if responds || attr.to_s == "file_name"
|
247
|
+
end
|
248
|
+
|
249
|
+
private
|
250
|
+
|
251
|
+
def ensure_required_accessors! #:nodoc:
|
252
|
+
%w(file_name).each do |field|
|
253
|
+
unless @instance.respond_to?("#{name}_#{field}") && @instance.respond_to?("#{name}_#{field}=")
|
254
|
+
raise PaperclipError.new("#{@instance.class} model missing required attr_accessor for '#{name}_#{field}'")
|
255
|
+
end
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
def log message #:nodoc:
|
260
|
+
Paperclip.log(message)
|
261
|
+
end
|
262
|
+
|
263
|
+
def valid_assignment? file #:nodoc:
|
264
|
+
file.nil? || (file.respond_to?(:original_filename) && file.respond_to?(:content_type))
|
265
|
+
end
|
266
|
+
|
267
|
+
def initialize_storage #:nodoc:
|
268
|
+
@storage_module = Paperclip::Storage.const_get(@storage.to_s.capitalize)
|
269
|
+
self.extend(@storage_module)
|
270
|
+
end
|
271
|
+
|
272
|
+
def extra_options_for(style) #:nodoc:
|
273
|
+
all_options = convert_options[:all]
|
274
|
+
all_options = all_options.call(instance) if all_options.respond_to?(:call)
|
275
|
+
style_options = convert_options[style]
|
276
|
+
style_options = style_options.call(instance) if style_options.respond_to?(:call)
|
277
|
+
|
278
|
+
[ style_options, all_options ].compact.join(" ")
|
279
|
+
end
|
280
|
+
|
281
|
+
def post_process #:nodoc:
|
282
|
+
return if @queued_for_write[:original].nil?
|
283
|
+
instance.run_paperclip_callbacks(:post_process) do
|
284
|
+
instance.run_paperclip_callbacks(:"#{name}_post_process") do
|
285
|
+
post_process_styles
|
286
|
+
end
|
287
|
+
end
|
288
|
+
end
|
289
|
+
|
290
|
+
def post_process_styles #:nodoc:
|
291
|
+
styles.each do |name, style|
|
292
|
+
begin
|
293
|
+
raise RuntimeError.new("Style #{name} has no processors defined.") if style.processors.blank?
|
294
|
+
@queued_for_write[name] = style.processors.inject(@queued_for_write[:original]) do |file, processor|
|
295
|
+
Paperclip.processor(processor).make(file, style.processor_options, self)
|
296
|
+
end
|
297
|
+
rescue PaperclipError => e
|
298
|
+
log("An error was received while processing: #{e.inspect}")
|
299
|
+
(@errors[:processing] ||= []) << e.message if @whiny
|
300
|
+
end
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
def interpolate pattern, style_name = default_style #:nodoc:
|
305
|
+
Paperclip::Interpolations.interpolate(pattern, self, style_name)
|
306
|
+
end
|
307
|
+
|
308
|
+
def queue_existing_for_delete #:nodoc:
|
309
|
+
return unless file?
|
310
|
+
@queued_for_delete += [:original, *styles.keys].uniq.map do |style|
|
311
|
+
path(style) if exists?(style)
|
312
|
+
end.compact
|
313
|
+
instance_write(:file_name, nil)
|
314
|
+
instance_write(:content_type, nil)
|
315
|
+
instance_write(:file_size, nil)
|
316
|
+
instance_write(:updated_at, nil)
|
317
|
+
end
|
318
|
+
|
319
|
+
def flush_errors #:nodoc:
|
320
|
+
@errors.each do |error, message|
|
321
|
+
[message].flatten.each {|m| instance.errors.add(name, m) }
|
322
|
+
end
|
323
|
+
end
|
324
|
+
|
325
|
+
end
|
326
|
+
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,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", "-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
|