winton-attachment_fu 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. metadata +16 -14
  2. data/CHANGELOG +0 -35
  3. data/README +0 -186
  4. data/Rakefile +0 -22
  5. data/amazon_s3.yml.tpl +0 -14
  6. data/init.rb +0 -17
  7. data/install.rb +0 -5
  8. data/lib/geometry.rb +0 -93
  9. data/lib/technoweenie/attachment_fu.rb +0 -473
  10. data/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +0 -39
  11. data/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +0 -101
  12. data/lib/technoweenie/attachment_fu/backends/s3_backend.rb +0 -303
  13. data/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +0 -59
  14. data/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +0 -54
  15. data/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +0 -61
  16. data/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +0 -59
  17. data/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +0 -54
  18. data/test/backends/db_file_test.rb +0 -16
  19. data/test/backends/file_system_test.rb +0 -80
  20. data/test/backends/remote/s3_test.rb +0 -119
  21. data/test/base_attachment_tests.rb +0 -77
  22. data/test/basic_test.rb +0 -70
  23. data/test/database.yml +0 -18
  24. data/test/extra_attachment_test.rb +0 -67
  25. data/test/fixtures/attachment.rb +0 -148
  26. data/test/fixtures/files/fake/rails.png +0 -0
  27. data/test/fixtures/files/foo.txt +0 -1
  28. data/test/fixtures/files/rails.png +0 -0
  29. data/test/geometry_test.rb +0 -101
  30. data/test/processors/core_image_test.rb +0 -37
  31. data/test/processors/gd2_test.rb +0 -31
  32. data/test/processors/image_science_test.rb +0 -31
  33. data/test/processors/mini_magick_test.rb +0 -31
  34. data/test/processors/rmagick_test.rb +0 -255
  35. data/test/schema.rb +0 -108
  36. data/test/test_helper.rb +0 -150
  37. data/test/validation_test.rb +0 -55
  38. data/vendor/red_artisan/core_image/filters/color.rb +0 -27
  39. data/vendor/red_artisan/core_image/filters/effects.rb +0 -31
  40. data/vendor/red_artisan/core_image/filters/perspective.rb +0 -25
  41. data/vendor/red_artisan/core_image/filters/quality.rb +0 -25
  42. data/vendor/red_artisan/core_image/filters/scale.rb +0 -47
  43. data/vendor/red_artisan/core_image/filters/watermark.rb +0 -32
  44. data/vendor/red_artisan/core_image/processor.rb +0 -123
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: winton-attachment_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Olson
@@ -22,12 +22,11 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - CHANGELOG
26
- - README
27
- - Rakefile
28
25
  - amazon_s3.yml.tpl
26
+ - CHANGELOG
29
27
  - init.rb
30
28
  - install.rb
29
+ - lib/attachment_fu.rb
31
30
  - lib/geometry.rb
32
31
  - lib/technoweenie
33
32
  - lib/technoweenie/attachment_fu.rb
@@ -42,16 +41,9 @@ files:
42
41
  - lib/technoweenie/attachment_fu/backends/db_file_backend.rb
43
42
  - lib/technoweenie/attachment_fu/backends/file_system_backend.rb
44
43
  - lib/technoweenie/attachment_fu/backends/s3_backend.rb
45
- - vendor/red_artisan
46
- - vendor/red_artisan/core_image
47
- - vendor/red_artisan/core_image/processor.rb
48
- - vendor/red_artisan/core_image/filters
49
- - vendor/red_artisan/core_image/filters/scale.rb
50
- - vendor/red_artisan/core_image/filters/color.rb
51
- - vendor/red_artisan/core_image/filters/perspective.rb
52
- - vendor/red_artisan/core_image/filters/quality.rb
53
- - vendor/red_artisan/core_image/filters/watermark.rb
54
- - vendor/red_artisan/core_image/filters/effects.rb
44
+ - rails/init.rb
45
+ - Rakefile
46
+ - README
55
47
  - test/basic_test.rb
56
48
  - test/schema.rb
57
49
  - test/base_attachment_tests.rb
@@ -78,6 +70,16 @@ files:
78
70
  - test/database.yml
79
71
  - test/test_helper.rb
80
72
  - test/geometry_test.rb
73
+ - vendor/red_artisan
74
+ - vendor/red_artisan/core_image
75
+ - vendor/red_artisan/core_image/processor.rb
76
+ - vendor/red_artisan/core_image/filters
77
+ - vendor/red_artisan/core_image/filters/scale.rb
78
+ - vendor/red_artisan/core_image/filters/color.rb
79
+ - vendor/red_artisan/core_image/filters/perspective.rb
80
+ - vendor/red_artisan/core_image/filters/quality.rb
81
+ - vendor/red_artisan/core_image/filters/watermark.rb
82
+ - vendor/red_artisan/core_image/filters/effects.rb
81
83
  has_rdoc: false
82
84
  homepage: http://github.com/winton/attachment_fu
83
85
  post_install_message:
data/CHANGELOG DELETED
@@ -1,35 +0,0 @@
1
- * Apr 17 2008 *
2
- * amazon_s3.yml is now passed through ERB before being passed to AWS::S3 [François Beausoleil]
3
-
4
- * Mar 22 2008 *
5
- * Some tweaks to support Rails 2.0 and Rails 2.1 due to ActiveSupport::Callback changes.
6
- Thanks to http://blog.methodmissing.com/2008/1/19/edge-callback-refactorings-attachment_fu/
7
-
8
- * Feb. 26, 2008 *
9
- * remove breakpoint from test_helper, makes test suite crazy (at least Rails 2+) [Rob Sanheim]
10
- * make S3 test really optional [Rob Sanheim]
11
-
12
- * Nov 27, 2007 *
13
- * Handle properly ImageScience thumbnails resized from a gif file [Matt Aimonetti]
14
- * Save thumbnails file size properly when using ImageScience [Matt Aimonetti]
15
- * fixed s3 config file loading with latest versions of Rails [Matt Aimonetti]
16
-
17
- * April 2, 2007 *
18
-
19
- * don't copy the #full_filename to the default #temp_paths array if it doesn't exist
20
- * add default ID partitioning for attachments
21
- * add #binmode call to Tempfile (note: ruby should be doing this!) [Eric Beland]
22
- * Check for current type of :thumbnails option.
23
- * allow customization of the S3 configuration file path with the :s3_config_path option.
24
- * Don't try to remove thumbnails if there aren't any. Closes #3 [ben stiglitz]
25
-
26
- * BC * (before changelog)
27
-
28
- * add default #temp_paths entry [mattly]
29
- * add MiniMagick support to attachment_fu [Isacc]
30
- * update #destroy_file to clear out any empty directories too [carlivar]
31
- * fix references to S3Backend module [Hunter Hillegas]
32
- * make #current_data public with db_file and s3 backends [ebryn]
33
- * oops, actually svn add the files for s3 backend. [Jeffrey Hardy]
34
- * experimental s3 support, egad, no tests.... [Jeffrey Hardy]
35
- * doh, fix a few bad references to ActsAsAttachment [sixty4bit]
data/README DELETED
@@ -1,186 +0,0 @@
1
- attachment-fu
2
- =============
3
-
4
- attachment_fu is a plugin by Rick Olson (aka technoweenie <http://techno-weenie.net>) and is the successor to acts_as_attachment. To get a basic run-through of its capabilities, check out Mike Clark's tutorial <http://clarkware.com/cgi/blosxom/2007/02/24#FileUploadFu>.
5
-
6
-
7
- attachment_fu functionality
8
- ===========================
9
-
10
- attachment_fu facilitates file uploads in Ruby on Rails. There are a few storage options for the actual file data, but the plugin always at a minimum stores metadata for each file in the database.
11
-
12
- There are three storage options for files uploaded through attachment_fu:
13
- File system
14
- Database file
15
- Amazon S3
16
-
17
- Each method of storage many options associated with it that will be covered in the following section. Something to note, however, is that the Amazon S3 storage requires you to modify config/amazon_s3.yml and the Database file storage requires an extra table.
18
-
19
-
20
- attachment_fu models
21
- ====================
22
-
23
- For all three of these storage options a table of metadata is required. This table will contain information about the file (hence the 'meta') and its location. This table has no restrictions on naming, unlike the extra table required for database storage, which must have a table name of db_files (and by convention a model of DbFile).
24
-
25
- In the model there are two methods made available by this plugins: has_attachment and validates_as_attachment.
26
-
27
- has_attachment(options = {})
28
- This method accepts the options in a hash:
29
- :content_type # Allowed content types.
30
- # Allows all by default. Use :image to allow all standard image types.
31
- :min_size # Minimum size allowed.
32
- # 1 byte is the default.
33
- :max_size # Maximum size allowed.
34
- # 1.megabyte is the default.
35
- :size # Range of sizes allowed.
36
- # (1..1.megabyte) is the default. This overrides the :min_size and :max_size options.
37
- :resize_to # Used by RMagick to resize images.
38
- # Pass either an array of width/height, or a geometry string.
39
- :thumbnails # Specifies a set of thumbnails to generate.
40
- # This accepts a hash of filename suffixes and RMagick resizing options.
41
- # This option need only be included if you want thumbnailing.
42
- :thumbnail_class # Set which model class to use for thumbnails.
43
- # This current attachment class is used by default.
44
- :path_prefix # path to store the uploaded files.
45
- # Uses public/#{table_name} by default for the filesystem, and just #{table_name} for the S3 backend.
46
- # Setting this sets the :storage to :file_system.
47
- :partition # Partiton files in directories like /0000/0001/image.jpg. Default is true.
48
- :storage # Specifies the storage system to use..
49
- # Defaults to :db_file. Options are :file_system, :db_file, and :s3.
50
- :processor # Sets the image processor to use for resizing of the attached image.
51
- # Options include ImageScience, Rmagick, and MiniMagick. Default is whatever is installed.
52
-
53
-
54
- Examples:
55
- has_attachment :max_size => 1.kilobyte
56
- has_attachment :size => 1.megabyte..2.megabytes
57
- has_attachment :content_type => 'application/pdf'
58
- has_attachment :content_type => ['application/pdf', 'application/msword', 'text/plain']
59
- has_attachment :content_type => :image, :resize_to => [50,50]
60
- has_attachment :content_type => ['application/pdf', :image], :resize_to => 'x50'
61
- has_attachment :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
62
- has_attachment :storage => :file_system, :path_prefix => 'public/files'
63
- has_attachment :storage => :file_system, :path_prefix => 'public/files',
64
- :content_type => :image, :resize_to => [50,50], :partition => false
65
- has_attachment :storage => :file_system, :path_prefix => 'public/files',
66
- :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
67
- has_attachment :storage => :s3
68
-
69
- validates_as_attachment
70
- This method prevents files outside of the valid range (:min_size to :max_size, or the :size range) from being saved. It does not however, halt the upload of such files. They will be uploaded into memory regardless of size before validation.
71
-
72
- Example:
73
- validates_as_attachment
74
-
75
-
76
- attachment_fu migrations
77
- ========================
78
-
79
- Fields for attachment_fu metadata tables...
80
- in general:
81
- size, :integer # file size in bytes
82
- content_type, :string # mime type, ex: application/mp3
83
- filename, :string # sanitized filename
84
- that reference images:
85
- height, :integer # in pixels
86
- width, :integer # in pixels
87
- that reference images that will be thumbnailed:
88
- parent_id, :integer # id of parent image (on the same table, a self-referencing foreign-key).
89
- # Only populated if the current object is a thumbnail.
90
- thumbnail, :string # the 'type' of thumbnail this attachment record describes.
91
- # Only populated if the current object is a thumbnail.
92
- # Usage:
93
- # [ In Model 'Avatar' ]
94
- # has_attachment :content_type => :image,
95
- # :storage => :file_system,
96
- # :max_size => 500.kilobytes,
97
- # :resize_to => '320x200>',
98
- # :thumbnails => { :small => '10x10>',
99
- # :thumb => '100x100>' }
100
- # [ Elsewhere ]
101
- # @user.avatar.thumbnails.first.thumbnail #=> 'small'
102
- that reference files stored in the database (:db_file):
103
- db_file_id, :integer # id of the file in the database (foreign key)
104
-
105
- Field for attachment_fu db_files table:
106
- data, :binary # binary file data, for use in database file storage
107
-
108
-
109
- attachment_fu views
110
- ===================
111
-
112
- There are two main views tasks that will be directly affected by attachment_fu: upload forms and displaying uploaded images.
113
-
114
- There are two parts of the upload form that differ from typical usage.
115
- 1. Include ':multipart => true' in the html options of the form_for tag.
116
- Example:
117
- <% form_for(:attachment_metadata, :url => { :action => "create" }, :html => { :multipart => true }) do |form| %>
118
-
119
- 2. Use the file_field helper with :uploaded_data as the field name.
120
- Example:
121
- <%= form.file_field :uploaded_data %>
122
-
123
- Displaying uploaded images is made easy by the public_filename method of the ActiveRecord attachment objects using file system and s3 storage.
124
-
125
- public_filename(thumbnail = nil)
126
- Returns the public path to the file. If a thumbnail prefix is specified it will return the public file path to the corresponding thumbnail.
127
- Examples:
128
- attachment_obj.public_filename #=> /attachments/2/file.jpg
129
- attachment_obj.public_filename(:thumb) #=> /attachments/2/file_thumb.jpg
130
- attachment_obj.public_filename(:small) #=> /attachments/2/file_small.jpg
131
-
132
- When serving files from database storage, doing more than simply downloading the file is beyond the scope of this document.
133
-
134
-
135
- attachment_fu controllers
136
- =========================
137
-
138
- There are two considerations to take into account when using attachment_fu in controllers.
139
-
140
- The first is when the files have no publicly accessible path and need to be downloaded through an action.
141
-
142
- Example:
143
- def readme
144
- send_file '/path/to/readme.txt', :type => 'plain/text', :disposition => 'inline'
145
- end
146
-
147
- See the possible values for send_file for reference.
148
-
149
-
150
- The second is when saving the file when submitted from a form.
151
- Example in view:
152
- <%= form.file_field :attachable, :uploaded_data %>
153
-
154
- Example in controller:
155
- def create
156
- @attachable_file = AttachmentMetadataModel.new(params[:attachable])
157
- if @attachable_file.save
158
- flash[:notice] = 'Attachment was successfully created.'
159
- redirect_to attachable_url(@attachable_file)
160
- else
161
- render :action => :new
162
- end
163
- end
164
-
165
- attachement_fu scripting
166
- ====================================
167
-
168
- You may wish to import a large number of images or attachments.
169
- The following example shows how to upload a file from a script.
170
-
171
- #!/usr/bin/env ./script/runner
172
-
173
- # required to use ActionController::TestUploadedFile
174
- require 'action_controller'
175
- require 'action_controller/test_process.rb'
176
-
177
- path = "./public/images/x.jpg"
178
-
179
- # mimetype is a string like "image/jpeg". One way to get the mimetype for a given file on a UNIX system
180
- # mimetype = `file -ib #{path}`.gsub(/\n/,"")
181
-
182
- mimetype = "image/jpeg"
183
-
184
- # This will "upload" the file at path and create the new model.
185
- @attachable = AttachmentMetadataModel.new(:uploaded_data => ActionController::TestUploadedFile.new(path, mimetype))
186
- @attachable.save
data/Rakefile DELETED
@@ -1,22 +0,0 @@
1
- require 'rake'
2
- require 'rake/testtask'
3
- require 'rake/rdoctask'
4
-
5
- desc 'Default: run unit tests.'
6
- task :default => :test
7
-
8
- desc 'Test the attachment_fu plugin.'
9
- Rake::TestTask.new(:test) do |t|
10
- t.libs << 'lib'
11
- t.pattern = 'test/**/*_test.rb'
12
- t.verbose = true
13
- end
14
-
15
- desc 'Generate documentation for the attachment_fu plugin.'
16
- Rake::RDocTask.new(:rdoc) do |rdoc|
17
- rdoc.rdoc_dir = 'rdoc'
18
- rdoc.title = 'ActsAsAttachment'
19
- rdoc.options << '--line-numbers --inline-source'
20
- rdoc.rdoc_files.include('README')
21
- rdoc.rdoc_files.include('lib/**/*.rb')
22
- end
@@ -1,14 +0,0 @@
1
- development:
2
- bucket_name: appname_development
3
- access_key_id:
4
- secret_access_key:
5
-
6
- test:
7
- bucket_name: appname_test
8
- access_key_id:
9
- secret_access_key:
10
-
11
- production:
12
- bucket_name: appname
13
- access_key_id:
14
- secret_access_key:
data/init.rb DELETED
@@ -1,17 +0,0 @@
1
- require 'tempfile'
2
-
3
- Tempfile.class_eval do
4
- # overwrite so tempfiles use the extension of the basename. important for rmagick and image science
5
- def make_tmpname(basename, n)
6
- ext = nil
7
- sprintf("%s%d-%d%s", basename.to_s.gsub(/\.\w+$/) { |s| ext = s; '' }, $$, n, ext)
8
- end
9
- end
10
-
11
- require 'geometry'
12
- require 'attachment_fu'
13
- ActiveRecord::Base.send(:extend, Technoweenie::AttachmentFu::ActMethods)
14
- Technoweenie::AttachmentFu.tempfile_path = ATTACHMENT_FU_TEMPFILE_PATH if Object.const_defined?(:ATTACHMENT_FU_TEMPFILE_PATH)
15
- FileUtils.mkdir_p Technoweenie::AttachmentFu.tempfile_path
16
-
17
- $:.unshift(File.dirname(__FILE__) + '/vendor')
data/install.rb DELETED
@@ -1,5 +0,0 @@
1
- require 'fileutils'
2
-
3
- s3_config = File.dirname(__FILE__) + '/../../../config/amazon_s3.yml'
4
- FileUtils.cp File.dirname(__FILE__) + '/amazon_s3.yml.tpl', s3_config unless File.exist?(s3_config)
5
- puts IO.read(File.join(File.dirname(__FILE__), 'README'))
@@ -1,93 +0,0 @@
1
- # This Geometry class was yanked from RMagick. However, it lets ImageMagick handle the actual change_geometry.
2
- # Use #new_dimensions_for to get new dimensons
3
- # Used so I can use spiffy RMagick geometry strings with ImageScience
4
- class Geometry
5
- # ! and @ are removed until support for them is added
6
- FLAGS = ['', '%', '<', '>']#, '!', '@']
7
- RFLAGS = { '%' => :percent,
8
- '!' => :aspect,
9
- '<' => :>,
10
- '>' => :<,
11
- '@' => :area }
12
-
13
- attr_accessor :width, :height, :x, :y, :flag
14
-
15
- def initialize(width=nil, height=nil, x=nil, y=nil, flag=nil)
16
- # Support floating-point width and height arguments so Geometry
17
- # objects can be used to specify Image#density= arguments.
18
- raise ArgumentError, "width must be >= 0: #{width}" if width < 0
19
- raise ArgumentError, "height must be >= 0: #{height}" if height < 0
20
- @width = width.to_f
21
- @height = height.to_f
22
- @x = x.to_i
23
- @y = y.to_i
24
- @flag = flag
25
- end
26
-
27
- # Construct an object from a geometry string
28
- RE = /\A(\d*)(?:x(\d+))?([-+]\d+)?([-+]\d+)?([%!<>@]?)\Z/
29
-
30
- def self.from_s(str)
31
- raise(ArgumentError, "no geometry string specified") unless str
32
-
33
- if m = RE.match(str)
34
- new(m[1].to_i, m[2].to_i, m[3].to_i, m[4].to_i, RFLAGS[m[5]])
35
- else
36
- raise ArgumentError, "invalid geometry format"
37
- end
38
- end
39
-
40
- # Convert object to a geometry string
41
- def to_s
42
- str = ''
43
- str << "%g" % @width if @width > 0
44
- str << 'x' if (@width > 0 || @height > 0)
45
- str << "%g" % @height if @height > 0
46
- str << "%+d%+d" % [@x, @y] if (@x != 0 || @y != 0)
47
- str << FLAGS[@flag.to_i]
48
- end
49
-
50
- # attempts to get new dimensions for the current geometry string given these old dimensions.
51
- # This doesn't implement the aspect flag (!) or the area flag (@). PDI
52
- def new_dimensions_for(orig_width, orig_height)
53
- new_width = orig_width
54
- new_height = orig_height
55
-
56
- case @flag
57
- when :percent
58
- scale_x = @width.zero? ? 100 : @width
59
- scale_y = @height.zero? ? @width : @height
60
- new_width = scale_x.to_f * (orig_width.to_f / 100.0)
61
- new_height = scale_y.to_f * (orig_height.to_f / 100.0)
62
- when :<, :>, nil
63
- scale_factor =
64
- if new_width.zero? || new_height.zero?
65
- 1.0
66
- else
67
- if @width.nonzero? && @height.nonzero?
68
- [@width.to_f / new_width.to_f, @height.to_f / new_height.to_f].min
69
- else
70
- @width.nonzero? ? (@width.to_f / new_width.to_f) : (@height.to_f / new_height.to_f)
71
- end
72
- end
73
- new_width = scale_factor * new_width.to_f
74
- new_height = scale_factor * new_height.to_f
75
- new_width = orig_width if @flag && orig_width.send(@flag, new_width)
76
- new_height = orig_height if @flag && orig_height.send(@flag, new_height)
77
- end
78
-
79
- [new_width, new_height].collect! { |v| v.round }
80
- end
81
- end
82
-
83
- class Array
84
- # allows you to get new dimensions for the current array of dimensions with a given geometry string
85
- #
86
- # [50, 64] / '40>' # => [40, 51]
87
- def /(geometry)
88
- raise ArgumentError, "Only works with a [width, height] pair" if size != 2
89
- raise ArgumentError, "Must pass a valid geometry string or object" unless geometry.is_a?(String) || geometry.is_a?(Geometry)
90
- geometry = Geometry.from_s(geometry) if geometry.is_a?(String)
91
- geometry.new_dimensions_for first, last
92
- end
93
- end
@@ -1,473 +0,0 @@
1
- module Technoweenie # :nodoc:
2
- module AttachmentFu # :nodoc:
3
- @@default_processors = %w(ImageScience Rmagick MiniMagick Gd2 CoreImage)
4
- @@tempfile_path = File.join(RAILS_ROOT, 'tmp', 'attachment_fu')
5
- @@content_types = ['image/jpeg', 'image/pjpeg', 'image/gif', 'image/png', 'image/x-png', 'image/jpg']
6
- mattr_reader :content_types, :tempfile_path, :default_processors
7
- mattr_writer :tempfile_path
8
-
9
- class ThumbnailError < StandardError; end
10
- class AttachmentError < StandardError; end
11
-
12
- module ActMethods
13
- # Options:
14
- # * <tt>:content_type</tt> - Allowed content types. Allows all by default. Use :image to allow all standard image types.
15
- # * <tt>:min_size</tt> - Minimum size allowed. 1 byte is the default.
16
- # * <tt>:max_size</tt> - Maximum size allowed. 1.megabyte is the default.
17
- # * <tt>:size</tt> - Range of sizes allowed. (1..1.megabyte) is the default. This overrides the :min_size and :max_size options.
18
- # * <tt>:resize_to</tt> - Used by RMagick to resize images. Pass either an array of width/height, or a geometry string.
19
- # * <tt>:thumbnails</tt> - Specifies a set of thumbnails to generate. This accepts a hash of filename suffixes and RMagick resizing options.
20
- # * <tt>:thumbnail_class</tt> - Set what class to use for thumbnails. This attachment class is used by default.
21
- # * <tt>:path_prefix</tt> - path to store the uploaded files. Uses public/#{table_name} by default for the filesystem, and just #{table_name}
22
- # for the S3 backend. Setting this sets the :storage to :file_system.
23
- # * <tt>:storage</tt> - Use :file_system to specify the attachment data is stored with the file system. Defaults to :db_system.
24
-
25
- # * <tt>:keep_profile</tt> By default image EXIF data will be stripped to minimize image size. For small thumbnails this proivides important savings. Picture quality is not affected. Set to false if you want to keep the image profile as is. ImageScience will allways keep EXIF data.
26
- #
27
- # Examples:
28
- # has_attachment :max_size => 1.kilobyte
29
- # has_attachment :size => 1.megabyte..2.megabytes
30
- # has_attachment :content_type => 'application/pdf'
31
- # has_attachment :content_type => ['application/pdf', 'application/msword', 'text/plain']
32
- # has_attachment :content_type => :image, :resize_to => [50,50]
33
- # has_attachment :content_type => ['application/pdf', :image], :resize_to => 'x50'
34
- # has_attachment :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
35
- # has_attachment :storage => :file_system, :path_prefix => 'public/files'
36
- # has_attachment :storage => :file_system, :path_prefix => 'public/files',
37
- # :content_type => :image, :resize_to => [50,50]
38
- # has_attachment :storage => :file_system, :path_prefix => 'public/files',
39
- # :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
40
- # has_attachment :storage => :s3
41
- def has_attachment(options = {})
42
- # this allows you to redefine the acts' options for each subclass, however
43
- options[:min_size] ||= 1
44
- options[:max_size] ||= 1.megabyte
45
- options[:size] ||= (options[:min_size]..options[:max_size])
46
- options[:thumbnails] ||= {}
47
- options[:thumbnail_class] ||= self
48
- options[:s3_access] ||= :public_read
49
- options[:content_type] = [options[:content_type]].flatten.collect! { |t| t == :image ? Technoweenie::AttachmentFu.content_types : t }.flatten unless options[:content_type].nil?
50
-
51
- unless options[:thumbnails].is_a?(Hash)
52
- raise ArgumentError, ":thumbnails option should be a hash: e.g. :thumbnails => { :foo => '50x50' }"
53
- end
54
-
55
- extend ClassMethods unless (class << self; included_modules; end).include?(ClassMethods)
56
- include InstanceMethods unless included_modules.include?(InstanceMethods)
57
-
58
- parent_options = attachment_options || {}
59
- # doing these shenanigans so that #attachment_options is available to processors and backends
60
- self.attachment_options = options
61
-
62
- attr_accessor :thumbnail_resize_options
63
-
64
- attachment_options[:storage] ||= (attachment_options[:file_system_path] || attachment_options[:path_prefix]) ? :file_system : :db_file
65
- attachment_options[:storage] ||= parent_options[:storage]
66
- attachment_options[:path_prefix] ||= attachment_options[:file_system_path]
67
- if attachment_options[:path_prefix].nil?
68
- attachment_options[:path_prefix] = attachment_options[:storage] == :s3 ? table_name : File.join("public", table_name)
69
- end
70
- attachment_options[:path_prefix] = attachment_options[:path_prefix][1..-1] if options[:path_prefix].first == '/'
71
-
72
- with_options :foreign_key => 'parent_id' do |m|
73
- m.has_many :thumbnails, :class_name => "::#{attachment_options[:thumbnail_class]}"
74
- m.belongs_to :parent, :class_name => "::#{base_class}" unless options[:thumbnails].empty?
75
- end
76
-
77
- storage_mod = Technoweenie::AttachmentFu::Backends.const_get("#{options[:storage].to_s.classify}Backend")
78
- include storage_mod unless included_modules.include?(storage_mod)
79
-
80
- case attachment_options[:processor]
81
- when :none, nil
82
- processors = Technoweenie::AttachmentFu.default_processors.dup
83
- begin
84
- if processors.any?
85
- attachment_options[:processor] = "#{processors.first}Processor"
86
- processor_mod = Technoweenie::AttachmentFu::Processors.const_get(attachment_options[:processor])
87
- include processor_mod unless included_modules.include?(processor_mod)
88
- end
89
- rescue Object, Exception
90
- raise unless load_related_exception?($!)
91
-
92
- processors.shift
93
- retry
94
- end
95
- else
96
- begin
97
- processor_mod = Technoweenie::AttachmentFu::Processors.const_get("#{attachment_options[:processor].to_s.classify}Processor")
98
- include processor_mod unless included_modules.include?(processor_mod)
99
- rescue Object, Exception
100
- raise unless load_related_exception?($!)
101
-
102
- puts "Problems loading #{options[:processor]}Processor: #{$!}"
103
- end
104
- end unless parent_options[:processor] # Don't let child override processor
105
- end
106
-
107
- def load_related_exception?(e) #:nodoc: implementation specific
108
- case
109
- when e.kind_of?(LoadError), e.kind_of?(MissingSourceFile), $!.class.name == "CompilationError"
110
- # We can't rescue CompilationError directly, as it is part of the RubyInline library.
111
- # We must instead rescue RuntimeError, and check the class' name.
112
- true
113
- else
114
- false
115
- end
116
- end
117
- private :load_related_exception?
118
- end
119
-
120
- module ClassMethods
121
- delegate :content_types, :to => Technoweenie::AttachmentFu
122
-
123
- # Performs common validations for attachment models.
124
- def validates_as_attachment
125
- validates_presence_of :size, :content_type, :filename
126
- validate :attachment_attributes_valid?
127
- end
128
-
129
- # Returns true or false if the given content type is recognized as an image.
130
- def image?(content_type)
131
- content_types.include?(content_type)
132
- end
133
-
134
- def self.extended(base)
135
- base.class_inheritable_accessor :attachment_options
136
- base.before_destroy :destroy_thumbnails
137
- base.before_validation :set_size_from_temp_path
138
- base.after_save :after_process_attachment
139
- base.after_destroy :destroy_file
140
- base.after_validation :process_attachment
141
- if defined?(::ActiveSupport::Callbacks)
142
- base.define_callbacks :after_resize, :after_attachment_saved, :before_thumbnail_saved
143
- end
144
- end
145
-
146
- unless defined?(::ActiveSupport::Callbacks)
147
- # Callback after an image has been resized.
148
- #
149
- # class Foo < ActiveRecord::Base
150
- # acts_as_attachment
151
- # after_resize do |record, img|
152
- # record.aspect_ratio = img.columns.to_f / img.rows.to_f
153
- # end
154
- # end
155
- def after_resize(&block)
156
- write_inheritable_array(:after_resize, [block])
157
- end
158
-
159
- # Callback after an attachment has been saved either to the file system or the DB.
160
- # Only called if the file has been changed, not necessarily if the record is updated.
161
- #
162
- # class Foo < ActiveRecord::Base
163
- # acts_as_attachment
164
- # after_attachment_saved do |record|
165
- # ...
166
- # end
167
- # end
168
- def after_attachment_saved(&block)
169
- write_inheritable_array(:after_attachment_saved, [block])
170
- end
171
-
172
- # Callback before a thumbnail is saved. Use this to pass any necessary extra attributes that may be required.
173
- #
174
- # class Foo < ActiveRecord::Base
175
- # acts_as_attachment
176
- # before_thumbnail_saved do |thumbnail|
177
- # record = thumbnail.parent
178
- # ...
179
- # end
180
- # end
181
- def before_thumbnail_saved(&block)
182
- write_inheritable_array(:before_thumbnail_saved, [block])
183
- end
184
- end
185
-
186
- # Get the thumbnail class, which is the current attachment class by default.
187
- # Configure this with the :thumbnail_class option.
188
- def thumbnail_class
189
- attachment_options[:thumbnail_class] = attachment_options[:thumbnail_class].constantize unless attachment_options[:thumbnail_class].is_a?(Class)
190
- attachment_options[:thumbnail_class]
191
- end
192
-
193
- # Copies the given file path to a new tempfile, returning the closed tempfile.
194
- def copy_to_temp_file(file, temp_base_name)
195
- returning Tempfile.new(temp_base_name, Technoweenie::AttachmentFu.tempfile_path) do |tmp|
196
- tmp.close
197
- FileUtils.cp file, tmp.path
198
- end
199
- end
200
-
201
- # Writes the given data to a new tempfile, returning the closed tempfile.
202
- def write_to_temp_file(data, temp_base_name)
203
- returning Tempfile.new(temp_base_name, Technoweenie::AttachmentFu.tempfile_path) do |tmp|
204
- tmp.binmode
205
- tmp.write data
206
- tmp.close
207
- end
208
- end
209
- end
210
-
211
- module InstanceMethods
212
- def self.included(base)
213
- base.define_callbacks *[:after_resize, :after_attachment_saved, :before_thumbnail_saved] if base.respond_to?(:define_callbacks)
214
- end
215
-
216
- # Checks whether the attachment's content type is an image content type
217
- def image?
218
- self.class.image?(content_type)
219
- end
220
-
221
- # Returns true/false if an attachment is thumbnailable. A thumbnailable attachment has an image content type and the parent_id attribute.
222
- def thumbnailable?
223
- image? && respond_to?(:parent_id) && parent_id.nil?
224
- end
225
-
226
- # Returns the class used to create new thumbnails for this attachment.
227
- def thumbnail_class
228
- self.class.thumbnail_class
229
- end
230
-
231
- # Gets the thumbnail name for a filename. 'foo.jpg' becomes 'foo_thumbnail.jpg'
232
- def thumbnail_name_for(thumbnail = nil)
233
- return filename if thumbnail.blank?
234
- ext = nil
235
- basename = filename.gsub /\.\w+$/ do |s|
236
- ext = s; ''
237
- end
238
- # ImageScience doesn't create gif thumbnails, only pngs
239
- ext.sub!(/gif$/, 'png') if attachment_options[:processor] == "ImageScience"
240
- "#{basename}_#{thumbnail}#{ext}"
241
- end
242
-
243
- # Creates or updates the thumbnail for the current attachment.
244
- def create_or_update_thumbnail(temp_file, file_name_suffix, *size)
245
- thumbnailable? || raise(ThumbnailError.new("Can't create a thumbnail if the content type is not an image or there is no parent_id column"))
246
- returning find_or_initialize_thumbnail(file_name_suffix) do |thumb|
247
- thumb.attributes = {
248
- :content_type => content_type,
249
- :filename => thumbnail_name_for(file_name_suffix),
250
- :temp_path => temp_file,
251
- :thumbnail_resize_options => size
252
- }
253
- callback_with_args :before_thumbnail_saved, thumb
254
- thumb.save!
255
- end
256
- end
257
-
258
- # Sets the content type.
259
- def content_type=(new_type)
260
- write_attribute :content_type, new_type.to_s.strip
261
- end
262
-
263
- # Sanitizes a filename.
264
- def filename=(new_name)
265
- write_attribute :filename, sanitize_filename(new_name)
266
- end
267
-
268
- # Returns the width/height in a suitable format for the image_tag helper: (100x100)
269
- def image_size
270
- [width.to_s, height.to_s] * 'x'
271
- end
272
-
273
- # Returns true if the attachment data will be written to the storage system on the next save
274
- def save_attachment?
275
- File.file?(temp_path.to_s)
276
- end
277
-
278
- # nil placeholder in case this field is used in a form.
279
- def uploaded_data() nil; end
280
-
281
- # This method handles the uploaded file object. If you set the field name to uploaded_data, you don't need
282
- # any special code in your controller.
283
- #
284
- # <% form_for :attachment, :html => { :multipart => true } do |f| -%>
285
- # <p><%= f.file_field :uploaded_data %></p>
286
- # <p><%= submit_tag :Save %>
287
- # <% end -%>
288
- #
289
- # @attachment = Attachment.create! params[:attachment]
290
- #
291
- # TODO: Allow it to work with Merb tempfiles too.
292
- def uploaded_data=(file_data)
293
- if file_data.respond_to?(:content_type)
294
- return nil if file_data.size == 0
295
- self.content_type = file_data.content_type
296
- self.filename = file_data.original_filename if respond_to?(:filename)
297
- else
298
- return nil if file_data.blank? || file_data['size'] == 0
299
- self.content_type = file_data['content_type']
300
- self.filename = file_data['filename']
301
- file_data = file_data['tempfile']
302
- end
303
- if file_data.is_a?(StringIO)
304
- file_data.rewind
305
- self.temp_data = file_data.read
306
- else
307
- self.temp_path = file_data
308
- end
309
- end
310
-
311
- # Gets the latest temp path from the collection of temp paths. While working with an attachment,
312
- # multiple Tempfile objects may be created for various processing purposes (resizing, for example).
313
- # An array of all the tempfile objects is stored so that the Tempfile instance is held on to until
314
- # it's not needed anymore. The collection is cleared after saving the attachment.
315
- def temp_path
316
- p = temp_paths.first
317
- p.respond_to?(:path) ? p.path : p.to_s
318
- end
319
-
320
- # Gets an array of the currently used temp paths. Defaults to a copy of #full_filename.
321
- def temp_paths
322
- @temp_paths ||= (new_record? || !respond_to?(:full_filename) || !File.exist?(full_filename) ?
323
- [] : [copy_to_temp_file(full_filename)])
324
- end
325
-
326
- # Adds a new temp_path to the array. This should take a string or a Tempfile. This class makes no
327
- # attempt to remove the files, so Tempfiles should be used. Tempfiles remove themselves when they go out of scope.
328
- # You can also use string paths for temporary files, such as those used for uploaded files in a web server.
329
- def temp_path=(value)
330
- temp_paths.unshift value
331
- temp_path
332
- end
333
-
334
- # Gets the data from the latest temp file. This will read the file into memory.
335
- def temp_data
336
- save_attachment? ? File.read(temp_path) : nil
337
- end
338
-
339
- # Writes the given data to a Tempfile and adds it to the collection of temp files.
340
- def temp_data=(data)
341
- self.temp_path = write_to_temp_file data unless data.nil?
342
- end
343
-
344
- # Copies the given file to a randomly named Tempfile.
345
- def copy_to_temp_file(file)
346
- self.class.copy_to_temp_file file, random_tempfile_filename
347
- end
348
-
349
- # Writes the given file to a randomly named Tempfile.
350
- def write_to_temp_file(data)
351
- self.class.write_to_temp_file data, random_tempfile_filename
352
- end
353
-
354
- # Stub for creating a temp file from the attachment data. This should be defined in the backend module.
355
- def create_temp_file() end
356
-
357
- # Allows you to work with a processed representation (RMagick, ImageScience, etc) of the attachment in a block.
358
- #
359
- # @attachment.with_image do |img|
360
- # self.data = img.thumbnail(100, 100).to_blob
361
- # end
362
- #
363
- def with_image(&block)
364
- self.class.with_image(temp_path, &block)
365
- end
366
-
367
- protected
368
- # Generates a unique filename for a Tempfile.
369
- def random_tempfile_filename
370
- "#{rand Time.now.to_i}#{filename || 'attachment'}"
371
- end
372
-
373
- def sanitize_filename(filename)
374
- return unless filename
375
- returning filename.strip do |name|
376
- # NOTE: File.basename doesn't work right with Windows paths on Unix
377
- # get only the filename, not the whole path
378
- name.gsub! /^.*(\\|\/)/, ''
379
-
380
- # Finally, replace all non alphanumeric, underscore or periods with underscore
381
- name.gsub! /[^A-Za-z0-9\.\-]/, '_'
382
- end
383
- end
384
-
385
- # before_validation callback.
386
- def set_size_from_temp_path
387
- self.size = File.size(temp_path) if save_attachment?
388
- end
389
-
390
- # validates the size and content_type attributes according to the current model's options
391
- def attachment_attributes_valid?
392
- [:size, :content_type].each do |attr_name|
393
- enum = attachment_options[attr_name]
394
- errors.add attr_name, ActiveRecord::Errors.default_error_messages[:inclusion] unless enum.nil? || enum.include?(send(attr_name))
395
- end
396
- end
397
-
398
- # Initializes a new thumbnail with the given suffix.
399
- def find_or_initialize_thumbnail(file_name_suffix)
400
- respond_to?(:parent_id) ?
401
- thumbnail_class.find_or_initialize_by_thumbnail_and_parent_id(file_name_suffix.to_s, id) :
402
- thumbnail_class.find_or_initialize_by_thumbnail(file_name_suffix.to_s)
403
- end
404
-
405
- # Stub for a #process_attachment method in a processor
406
- def process_attachment
407
- @saved_attachment = save_attachment?
408
- end
409
-
410
- # Cleans up after processing. Thumbnails are created, the attachment is stored to the backend, and the temp_paths are cleared.
411
- def after_process_attachment
412
- if @saved_attachment
413
- if respond_to?(:process_attachment_with_processing) && thumbnailable? && !attachment_options[:thumbnails].blank? && parent_id.nil?
414
- temp_file = temp_path || create_temp_file
415
- attachment_options[:thumbnails].each { |suffix, size| create_or_update_thumbnail(temp_file, suffix, *size) }
416
- end
417
- save_to_storage
418
- @temp_paths.clear
419
- @saved_attachment = nil
420
- callback :after_attachment_saved
421
- end
422
- end
423
-
424
- # Resizes the given processed img object with either the attachment resize options or the thumbnail resize options.
425
- def resize_image_or_thumbnail!(img)
426
- if (!respond_to?(:parent_id) || parent_id.nil?) && attachment_options[:resize_to] # parent image
427
- resize_image(img, attachment_options[:resize_to])
428
- elsif thumbnail_resize_options # thumbnail
429
- resize_image(img, thumbnail_resize_options)
430
- end
431
- end
432
-
433
- # Yanked from ActiveRecord::Callbacks, modified so I can pass args to the callbacks besides self.
434
- # Only accept blocks, however
435
- if ActiveSupport.const_defined?(:Callbacks)
436
- # Rails 2.1 and beyond!
437
- def callback_with_args(method, arg = self)
438
- notify(method)
439
-
440
- result = run_callbacks(method, { :object => arg }) { |result, object| result == false }
441
-
442
- if result != false && respond_to_without_attributes?(method)
443
- result = send(method)
444
- end
445
-
446
- result
447
- end
448
-
449
- def run_callbacks(kind, options = {}, &block)
450
- options.reverse_merge!( :object => self )
451
- self.class.send("#{kind}_callback_chain").run(options[:object], options, &block)
452
- end
453
- else
454
- # Rails 2.0
455
- def callback_with_args(method, arg = self)
456
- notify(method)
457
-
458
- result = nil
459
- callbacks_for(method).each do |callback|
460
- result = callback.call(self, arg)
461
- return false if result == false
462
- end
463
- result
464
- end
465
- end
466
-
467
- # Removes the thumbnails for the attachment, if it has any
468
- def destroy_thumbnails
469
- self.thumbnails.each { |thumbnail| thumbnail.destroy } if thumbnailable?
470
- end
471
- end
472
- end
473
- end