korobkov-paperclip 2.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +177 -0
  3. data/Rakefile +99 -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 +21 -0
  7. data/init.rb +15 -0
  8. data/lib/paperclip/attachment.rb +425 -0
  9. data/lib/paperclip/callback_compatability.rb +33 -0
  10. data/lib/paperclip/geometry.rb +115 -0
  11. data/lib/paperclip/interpolations.rb +108 -0
  12. data/lib/paperclip/iostream.rb +58 -0
  13. data/lib/paperclip/matchers/have_attached_file_matcher.rb +49 -0
  14. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +66 -0
  15. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +48 -0
  16. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +83 -0
  17. data/lib/paperclip/matchers.rb +4 -0
  18. data/lib/paperclip/processor.rb +49 -0
  19. data/lib/paperclip/storage.rb +243 -0
  20. data/lib/paperclip/thumbnail.rb +73 -0
  21. data/lib/paperclip/upfile.rb +47 -0
  22. data/lib/paperclip.rb +353 -0
  23. data/shoulda_macros/paperclip.rb +117 -0
  24. data/tasks/paperclip_tasks.rake +80 -0
  25. data/test/attachment_test.rb +780 -0
  26. data/test/database.yml +4 -0
  27. data/test/fixtures/12k.png +0 -0
  28. data/test/fixtures/50x50.png +0 -0
  29. data/test/fixtures/5k.png +0 -0
  30. data/test/fixtures/bad.png +1 -0
  31. data/test/fixtures/s3.yml +8 -0
  32. data/test/fixtures/text.txt +0 -0
  33. data/test/fixtures/twopage.pdf +0 -0
  34. data/test/geometry_test.rb +177 -0
  35. data/test/helper.rb +108 -0
  36. data/test/integration_test.rb +483 -0
  37. data/test/interpolations_test.rb +124 -0
  38. data/test/iostream_test.rb +71 -0
  39. data/test/matchers/have_attached_file_matcher_test.rb +21 -0
  40. data/test/matchers/validate_attachment_content_type_matcher_test.rb +30 -0
  41. data/test/matchers/validate_attachment_presence_matcher_test.rb +21 -0
  42. data/test/matchers/validate_attachment_size_matcher_test.rb +50 -0
  43. data/test/paperclip_test.rb +327 -0
  44. data/test/processor_test.rb +10 -0
  45. data/test/storage_test.rb +303 -0
  46. data/test/thumbnail_test.rb +227 -0
  47. metadata +125 -0
data/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+
2
+ LICENSE
3
+
4
+ The MIT License
5
+
6
+ Copyright (c) 2008 Jon Yurek and thoughtbot, inc.
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
25
+
26
+
data/README.rdoc ADDED
@@ -0,0 +1,177 @@
1
+ =Paperclip
2
+
3
+ Paperclip is intended as an easy file attachment library for ActiveRecord. The
4
+ intent behind it was to keep setup as easy as possible and to treat files as
5
+ much like other attributes as possible. This means they aren't saved to their
6
+ final locations on disk, nor are they deleted if set to nil, until
7
+ ActiveRecord::Base#save is called. It manages validations based on size and
8
+ presence, if required. It can transform its assigned image into thumbnails if
9
+ needed, and the prerequisites are as simple as installing ImageMagick (which,
10
+ for most modern Unix-based systems, is as easy as installing the right
11
+ packages). Attached files are saved to the filesystem and referenced in the
12
+ browser by an easily understandable specification, which has sensible and
13
+ useful defaults.
14
+
15
+ See the documentation for +has_attached_file+ in Paperclip::ClassMethods for
16
+ more detailed options.
17
+
18
+ ==Quick Start
19
+
20
+ In your model:
21
+
22
+ class User < ActiveRecord::Base
23
+ has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" }
24
+ end
25
+
26
+ In your migrations:
27
+
28
+ class AddAvatarColumnsToUser < ActiveRecord::Migration
29
+ def self.up
30
+ add_column :users, :avatar_file_name, :string
31
+ add_column :users, :avatar_content_type, :string
32
+ add_column :users, :avatar_file_size, :integer
33
+ add_column :users, :avatar_file_hash, :string
34
+ add_column :users, :avatar_updated_at, :datetime
35
+ end
36
+
37
+ def self.down
38
+ remove_column :users, :avatar_file_name
39
+ remove_column :users, :avatar_content_type
40
+ remove_column :users, :avatar_file_size
41
+ remove_column :users, :avatar_file_hash
42
+ remove_column :users, :avatar_updated_at
43
+ end
44
+ end
45
+
46
+ In your edit and new views:
47
+
48
+ <% form_for :user, @user, :url => user_path, :html => { :multipart => true } do |form| %>
49
+ <%= form.file_field :avatar %>
50
+ <% end %>
51
+
52
+ In your controller:
53
+
54
+ def create
55
+ @user = User.create( params[:user] )
56
+ end
57
+
58
+ In your show view:
59
+
60
+ <%= image_tag @user.avatar.url %>
61
+ <%= image_tag @user.avatar.url(:medium) %>
62
+ <%= image_tag @user.avatar.url(:thumb) %>
63
+
64
+ ==Usage
65
+
66
+ The basics of paperclip are quite simple: Declare that your model has an
67
+ attachment with the has_attached_file method, and give it a name. Paperclip
68
+ will wrap up up to four attributes (all prefixed with that attachment's name,
69
+ so you can have multiple attachments per model if you wish) and give the a
70
+ friendly front end. The attributes are <attachment>_file_name,
71
+ <attachment>_file_size, <attachment>_file_hash, <attachment>_content_type,
72
+ and <attachment>_updated_at.
73
+ Only <attachment>_file_name is required for paperclip to operate. More
74
+ information about the options to has_attached_file is available in the
75
+ documentation of Paperclip::ClassMethods.
76
+
77
+ Attachments can be validated with Paperclip's validation methods,
78
+ validates_attachment_presence, validates_attachment_content_type, and
79
+ validates_attachment_size.
80
+
81
+ ==Storage
82
+
83
+ The files that are assigned as attachments are, by default, placed in the
84
+ directory specified by the :path option to has_attached_file. By default, this
85
+ location is ":rails_root/public/system/:attachment/:id/:style/:filename". This
86
+ location was chosen because on standard Capistrano deployments, the
87
+ public/system directory is symlinked to the app's shared directory, meaning it
88
+ will survive between deployments. For example, using that :path, you may have a
89
+ file at
90
+
91
+ /data/myapp/releases/20081229172410/public/system/avatars/13/small/my_pic.png
92
+
93
+ NOTE: This is a change from previous versions of Paperclip, but is overall a
94
+ safer choice for the default file store.
95
+
96
+ You may also choose to store your files using Amazon's S3 service. You can find
97
+ more information about S3 storage at the description for
98
+ Paperclip::Storage::S3.
99
+
100
+ Files on the local filesystem (and in the Rails app's public directory) will be
101
+ available to the internet at large. If you require access control, it's
102
+ possible to place your files in a different location. You will need to change
103
+ both the :path and :url options in order to make sure the files are unavailable
104
+ to the public. Both :path and :url allow the same set of interpolated
105
+ variables.
106
+
107
+ ==Post Processing
108
+
109
+ Paperclip supports an extensible selection of post-processors. When you define
110
+ a set of styles for an attachment, by default it is expected that those
111
+ "styles" are actually "thumbnails". However, you can do much more than just
112
+ thumbnail images. By defining a subclass of Paperclip::Processor, you can
113
+ perform any processing you want on the files that are attached. Any file in
114
+ your Rails app's lib/paperclip_processors directory is automatically loaded by
115
+ paperclip, allowing you to easily define custom processors. You can specify a
116
+ processor with the :processors option to has_attached_file:
117
+
118
+ has_attached_file :scan, :styles => { :text => { :quality => :better } },
119
+ :processors => [:ocr]
120
+
121
+ This would load the hypothetical class Paperclip::Ocr, which would have the
122
+ hash "{ :quality => :better }" passed to it along with the uploaded file. For
123
+ more information about defining processors, see Paperclip::Processor.
124
+
125
+ The default processor is Paperclip::Thumbnail. For backwards compatability
126
+ reasons, you can pass a single geometry string or an array containing a
127
+ geometry and a format, which the file will be converted to, like so:
128
+
129
+ has_attached_file :avatar, :styles => { :thumb => ["32x32#", :png] }
130
+
131
+ This will convert the "thumb" style to a 32x32 square in png format, regardless
132
+ of what was uploaded. If the format is not specified, it is kept the same (i.e.
133
+ jpgs will remain jpgs).
134
+
135
+ Multiple processors can be specified, and they will be invoked in the order
136
+ they are defined in the :processors array. Each successive processor will
137
+ be given the result of the previous processor's execution. All processors will
138
+ receive the same parameters, which are what you define in the :styles hash.
139
+ For example, assuming we had this definition:
140
+
141
+ has_attached_file :scan, :styles => { :text => { :quality => :better } },
142
+ :processors => [:rotator, :ocr]
143
+
144
+ then both the :rotator processor and the :ocr processor would receive the
145
+ options "{ :quality => :better }". This parameter may not mean anything to one
146
+ or more or the processors, and they are expected to ignore it.
147
+
148
+ NOTE: Because processors operate by turning the original attachment into the
149
+ styles, no processors will be run if there are no styles defined.
150
+
151
+ ==Events
152
+
153
+ Before and after the Post Processing step, Paperclip calls back to the model
154
+ with a few callbacks, allowing the model to change or cancel the processing
155
+ step. The callbacks are "before_post_process" and "after_post_process" (which
156
+ are called before and after the processing of each attachment), and the
157
+ attachment-specific "before_<attachment>_post_process" and
158
+ "after_<attachment>_post_process". The callbacks are intended to be as close to
159
+ normal ActiveRecord callbacks as possible, so if you return false (specifically
160
+ - returning nil is not the same) in a before_ filter, the post processing step
161
+ will halt. Returning false in an after_ filter will not halt anything, but you
162
+ can access the model and the attachment if necessary.
163
+
164
+ NOTE: Post processing will not even *start* if the attachment is not valid
165
+ according to the validations. Your callbacks and processors will *only* be
166
+ called with valid attachments.
167
+
168
+ ==Contributing
169
+
170
+ If you'd like to contribute a feature or bugfix: Thanks! To make sure your
171
+ fix/feature has a high chance of being included, please read the following
172
+ guidelines:
173
+
174
+ 1. Ask on the mailing list, or post a new GitHub Issue.
175
+ 2. Make sure there are tests! We will not accept any patch that is not tested.
176
+ It's a rare time when explicit tests aren't needed. If you have questions
177
+ about writing tests for paperclip, please ask the mailing list.
data/Rakefile ADDED
@@ -0,0 +1,99 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ $LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
6
+ require 'paperclip'
7
+
8
+ desc 'Default: run unit tests.'
9
+ task :default => [:clean, :test]
10
+
11
+ desc 'Test the paperclip plugin.'
12
+ Rake::TestTask.new(:test) do |t|
13
+ t.libs << 'lib' << 'profile'
14
+ t.pattern = 'test/**/*_test.rb'
15
+ t.verbose = true
16
+ end
17
+
18
+ desc 'Start an IRB session with all necessary files required.'
19
+ task :shell do |t|
20
+ chdir File.dirname(__FILE__)
21
+ exec 'irb -I lib/ -I lib/paperclip -r rubygems -r active_record -r tempfile -r init'
22
+ end
23
+
24
+ desc 'Generate documentation for the paperclip plugin.'
25
+ Rake::RDocTask.new(:rdoc) do |rdoc|
26
+ rdoc.rdoc_dir = 'doc'
27
+ rdoc.title = 'Paperclip'
28
+ rdoc.options << '--line-numbers' << '--inline-source'
29
+ rdoc.rdoc_files.include('README*')
30
+ rdoc.rdoc_files.include('lib/**/*.rb')
31
+ end
32
+
33
+ desc 'Update documentation on website'
34
+ task :sync_docs => 'rdoc' do
35
+ `rsync -ave ssh doc/ dev@dev.thoughtbot.com:/home/dev/www/dev.thoughtbot.com/paperclip`
36
+ end
37
+
38
+ desc 'Clean up files.'
39
+ task :clean do |t|
40
+ FileUtils.rm_rf "doc"
41
+ FileUtils.rm_rf "tmp"
42
+ FileUtils.rm_rf "pkg"
43
+ FileUtils.rm "test/debug.log" rescue nil
44
+ FileUtils.rm "test/paperclip.db" rescue nil
45
+ Dir.glob("paperclip-*.gem").each{|f| FileUtils.rm f }
46
+ end
47
+
48
+ include_file_globs = ["README*",
49
+ "LICENSE",
50
+ "Rakefile",
51
+ "init.rb",
52
+ "{generators,lib,tasks,test,shoulda_macros}/**/*"]
53
+ exclude_file_globs = ["test/s3.yml",
54
+ "test/debug.log",
55
+ "test/paperclip.db",
56
+ "test/doc",
57
+ "test/doc/*",
58
+ "test/pkg",
59
+ "test/pkg/*",
60
+ "test/tmp",
61
+ "test/tmp/*"]
62
+ spec = Gem::Specification.new do |s|
63
+ s.name = "paperclip"
64
+ s.version = Paperclip::VERSION
65
+ s.author = "Jon Yurek"
66
+ s.email = "jyurek@thoughtbot.com"
67
+ s.homepage = "http://www.thoughtbot.com/projects/paperclip"
68
+ s.platform = Gem::Platform::RUBY
69
+ s.summary = "File attachments as attributes for ActiveRecord"
70
+ s.files = FileList[include_file_globs].to_a - FileList[exclude_file_globs].to_a
71
+ s.require_path = "lib"
72
+ s.test_files = FileList["test/**/test_*.rb"].to_a
73
+ s.rubyforge_project = "paperclip"
74
+ s.has_rdoc = true
75
+ s.extra_rdoc_files = FileList["README*"].to_a
76
+ s.rdoc_options << '--line-numbers' << '--inline-source'
77
+ s.requirements << "ImageMagick"
78
+ s.add_development_dependency 'thoughtbot-shoulda'
79
+ s.add_development_dependency 'mocha'
80
+ end
81
+
82
+ desc "Print a list of the files to be put into the gem"
83
+ task :manifest => :clean do
84
+ spec.files.each do |file|
85
+ puts file
86
+ end
87
+ end
88
+
89
+ desc "Generate a gemspec file for GitHub"
90
+ task :gemspec => :clean do
91
+ File.open("#{spec.name}.gemspec", 'w') do |f|
92
+ f.write spec.to_ruby
93
+ end
94
+ end
95
+
96
+ desc "Build the gem into the current directory"
97
+ task :gem => :gemspec do
98
+ `gem build #{spec.name}.gemspec`
99
+ end
@@ -0,0 +1,5 @@
1
+ Usage:
2
+
3
+ script/generate paperclip Class attachment1 (attachment2 ...)
4
+
5
+ This will create a migration that will add the proper columns to your class's table.
@@ -0,0 +1,27 @@
1
+ class PaperclipGenerator < Rails::Generator::NamedBase
2
+ attr_accessor :attachments, :migration_name
3
+
4
+ def initialize(args, options = {})
5
+ super
6
+ @class_name, @attachments = args[0], args[1..-1]
7
+ end
8
+
9
+ def manifest
10
+ file_name = generate_file_name
11
+ @migration_name = file_name.camelize
12
+ record do |m|
13
+ m.migration_template "paperclip_migration.rb.erb",
14
+ File.join('db', 'migrate'),
15
+ :migration_file_name => file_name
16
+ end
17
+ end
18
+
19
+ private
20
+
21
+ def generate_file_name
22
+ names = attachments.map{|a| a.underscore }
23
+ names = names[0..-2] + ["and", names[-1]] if names.length > 1
24
+ "add_attachments_#{names.join("_")}_to_#{@class_name.underscore}"
25
+ end
26
+
27
+ end
@@ -0,0 +1,21 @@
1
+ class <%= migration_name %> < ActiveRecord::Migration
2
+ def self.up
3
+ <% attachments.each do |attachment| -%>
4
+ add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_name, :string
5
+ add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_content_type, :string
6
+ add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_size, :integer
7
+ add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_hash, :string
8
+ add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_updated_at, :datetime
9
+ <% end -%>
10
+ end
11
+
12
+ def self.down
13
+ <% attachments.each do |attachment| -%>
14
+ remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_name
15
+ remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_content_type
16
+ remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_size
17
+ remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_hash
18
+ remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_updated_at
19
+ <% end -%>
20
+ end
21
+ end
data/init.rb ADDED
@@ -0,0 +1,15 @@
1
+ if config.respond_to?(:gems)
2
+ config.gem 'minad-mimemagic', :lib => 'mimemagic'
3
+ else
4
+ begin
5
+ require 'mimemagic'
6
+ rescue LoadError
7
+ begin
8
+ gem 'mimemagic'
9
+ rescue Gem::LoadError
10
+ puts "Please install the mimemagic gem"
11
+ end
12
+ end
13
+ end
14
+
15
+ require File.join(File.dirname(__FILE__), "lib", "paperclip")