dynamic_paperclip 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.md +150 -0
- data/Rakefile +40 -0
- data/app/controllers/dynamic_paperclip/attachment_styles_controller.rb +40 -0
- data/lib/dynamic_paperclip/attachment.rb +64 -0
- data/lib/dynamic_paperclip/config.rb +5 -0
- data/lib/dynamic_paperclip/engine.rb +4 -0
- data/lib/dynamic_paperclip/errors.rb +18 -0
- data/lib/dynamic_paperclip/has_attached_file.rb +47 -0
- data/lib/dynamic_paperclip/paperclip_shim.rb +7 -0
- data/lib/dynamic_paperclip/url_security.rb +11 -0
- data/lib/dynamic_paperclip/version.rb +3 -0
- data/lib/dynamic_paperclip.rb +16 -0
- data/lib/generators/dynamic_paperclip/install_generator.rb +11 -0
- data/test/controllers/attachment_style_controller_test.rb +144 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/models/photo.rb +3 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/dynamic_paperclip.rb +1 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20131102002336_create_photos.rb +9 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +24 -0
- data/test/dummy/log/test.log +14470 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/system/photos/images/000/000/001/dynamic_42x42/rails.png +0 -0
- data/test/dummy/public/system/photos/images/000/000/001/original/rails.png +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dynamic_paperclip_test.rb +7 -0
- data/test/fixtures/photos.yml +4 -0
- data/test/fixtures/rails.png +0 -0
- data/test/generators/install_generator_test.rb +20 -0
- data/test/integration/dynamic_attachment_styles_test.rb +26 -0
- data/test/test_helper.rb +21 -0
- data/test/tmp/config/initializers/dynamic_paperclip.rb +1 -0
- data/test/unit/attachment_test.rb +41 -0
- data/test/unit/has_attached_file_test.rb +29 -0
- metadata +216 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
module DynamicPaperclip
|
2
|
+
class InstallGenerator < Rails::Generators::Base
|
3
|
+
def create_initializer_file
|
4
|
+
create_file 'config/initializers/dynamic_paperclip.rb' do
|
5
|
+
<<-init
|
6
|
+
DynamicPaperclip.config.secret = '#{SecureRandom.urlsafe_base64(50)}'
|
7
|
+
init
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,144 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class Foo < ActiveRecord::Base
|
4
|
+
has_dynamic_attached_file :image,
|
5
|
+
:url => '/system/:class/:attachment/:id/:style/:filename',
|
6
|
+
:styles => {
|
7
|
+
:thumb => '50x50#'
|
8
|
+
}
|
9
|
+
|
10
|
+
has_dynamic_attached_file :image_with_id_partition_in_url,
|
11
|
+
:url => '/system/:class/:attachment/:id_partition/:style/:filename'
|
12
|
+
end
|
13
|
+
|
14
|
+
class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestCase
|
15
|
+
setup do
|
16
|
+
@foo = stub('foo')
|
17
|
+
@attachment = stub('image attachment', :path => File.join(FIXTURES_DIR, 'rails.png'), :content_type => 'image/jpeg')
|
18
|
+
|
19
|
+
Foo.stubs(:find).with('1').returns @foo
|
20
|
+
@foo.stubs(:image).returns @attachment
|
21
|
+
end
|
22
|
+
|
23
|
+
should 'raise error if attachment is not defined on class' do
|
24
|
+
assert_raises(DynamicPaperclip::Errors::UndefinedAttachment) {
|
25
|
+
get :generate_foo,
|
26
|
+
:attachment => 'bars',
|
27
|
+
:id => '1',
|
28
|
+
:style => 'style',
|
29
|
+
:filename => 'file',
|
30
|
+
:use_route => :dynamic_paperclip_engine
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
should 'raise error if no ID is given' do
|
35
|
+
assert_raises(DynamicPaperclip::Errors::MissingID) {
|
36
|
+
get :generate_foo,
|
37
|
+
:attachment => 'images',
|
38
|
+
:style => 'style',
|
39
|
+
:filename => 'file',
|
40
|
+
:use_route => :dynamic_paperclip_engine
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
should 'not process style if it is not dynamic' do
|
45
|
+
@attachment.expects(:process_dynamic_style).never
|
46
|
+
|
47
|
+
get :generate_foo,
|
48
|
+
:attachment => 'images',
|
49
|
+
:id => '1',
|
50
|
+
:style => 'thumb',
|
51
|
+
:filename => 'file',
|
52
|
+
:use_route => :dynamic_paperclip_engine
|
53
|
+
end
|
54
|
+
|
55
|
+
should 'not process style if it is dynamic but already exists' do
|
56
|
+
@attachment.expects(:exists?).with('dynamic_42x42').returns(true)
|
57
|
+
@attachment.expects(:process_dynamic_style).never
|
58
|
+
|
59
|
+
get :generate_foo,
|
60
|
+
:attachment => 'images',
|
61
|
+
:id => '1',
|
62
|
+
:style => 'dynamic_42x42',
|
63
|
+
:filename => 'file',
|
64
|
+
:s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
|
65
|
+
:use_route => :dynamic_paperclip_engine
|
66
|
+
end
|
67
|
+
|
68
|
+
should 'process style if it is dynamic and does not exist' do
|
69
|
+
@attachment.expects(:exists?).with('dynamic_42x42').returns(false)
|
70
|
+
@attachment.expects(:process_dynamic_style).once
|
71
|
+
|
72
|
+
get :generate_foo,
|
73
|
+
:attachment => 'images',
|
74
|
+
:id => '1',
|
75
|
+
:style => 'dynamic_42x42',
|
76
|
+
:filename => 'file',
|
77
|
+
:s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
|
78
|
+
:use_route => :dynamic_paperclip_engine
|
79
|
+
end
|
80
|
+
|
81
|
+
should 'find record when an ID is used' do
|
82
|
+
Foo.expects(:find).with('1').returns @foo
|
83
|
+
|
84
|
+
get :generate_foo,
|
85
|
+
:attachment => 'images',
|
86
|
+
:id => '1',
|
87
|
+
:style => 'thumb',
|
88
|
+
:filename => 'file',
|
89
|
+
:use_route => :dynamic_paperclip_engine
|
90
|
+
end
|
91
|
+
|
92
|
+
should 'find record when an ID partition is used' do
|
93
|
+
@foo.stubs(:image_with_id_partition_in_url).returns @attachment
|
94
|
+
Foo.expects(:find).with(10042).returns @foo
|
95
|
+
|
96
|
+
get :generate_foo,
|
97
|
+
:attachment => 'image_with_id_partition_in_urls',
|
98
|
+
:id_partition => '000/010/042',
|
99
|
+
:style => 'thumb',
|
100
|
+
:filename => 'file',
|
101
|
+
:use_route => :dynamic_paperclip_engine
|
102
|
+
end
|
103
|
+
|
104
|
+
should 'respond with correct content type' do
|
105
|
+
@attachment.stubs(:exists?).returns(true)
|
106
|
+
|
107
|
+
get :generate_foo,
|
108
|
+
:attachment => 'images',
|
109
|
+
:id => '1',
|
110
|
+
:style => 'dynamic_42x42',
|
111
|
+
:filename => 'file',
|
112
|
+
:s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
|
113
|
+
:use_route => :dynamic_paperclip_engine
|
114
|
+
|
115
|
+
assert_equal 'image/jpeg', @response.header['Content-Type']
|
116
|
+
end
|
117
|
+
|
118
|
+
should 'send image to client with correct content type and disposition' do
|
119
|
+
@attachment.stubs(:exists?).returns(true)
|
120
|
+
|
121
|
+
@controller.stubs(:render)
|
122
|
+
@controller.expects(:send_file).with(@attachment.path, :disposition => 'inline', :type => @attachment.content_type)
|
123
|
+
|
124
|
+
get :generate_foo,
|
125
|
+
:attachment => 'images',
|
126
|
+
:id => '1',
|
127
|
+
:style => 'dynamic_42x42',
|
128
|
+
:filename => 'file',
|
129
|
+
:s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
|
130
|
+
:use_route => :dynamic_paperclip_engine
|
131
|
+
end
|
132
|
+
|
133
|
+
should 'raise error if hash does not match style name' do
|
134
|
+
assert_raises(DynamicPaperclip::Errors::InvalidHash) do
|
135
|
+
get :generate_foo,
|
136
|
+
:attachment => 'images',
|
137
|
+
:id => '1',
|
138
|
+
:style => 'dynamic_42x42',
|
139
|
+
:filename => 'file',
|
140
|
+
:s => 'this is an invalid hash',
|
141
|
+
:use_route => :dynamic_paperclip_engine
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
data/test/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require(*Rails.groups)
|
6
|
+
require "dynamic_paperclip"
|
7
|
+
|
8
|
+
module Dummy
|
9
|
+
class Application < Rails::Application
|
10
|
+
# Settings in config/environments/* take precedence over those specified here.
|
11
|
+
# Application configuration should go into files in config/initializers
|
12
|
+
# -- all .rb files in that directory are automatically loaded.
|
13
|
+
|
14
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
15
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
16
|
+
|
17
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
18
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
19
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
20
|
+
|
21
|
+
# Activate observers that should always be running.
|
22
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
23
|
+
|
24
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
25
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
26
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
27
|
+
|
28
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
29
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
30
|
+
# config.i18n.default_locale = :de
|
31
|
+
|
32
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
33
|
+
config.encoding = "utf-8"
|
34
|
+
|
35
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
36
|
+
config.filter_parameters += [:password]
|
37
|
+
|
38
|
+
# Enable escaping HTML in JSON.
|
39
|
+
config.active_support.escape_html_entities_in_json = true
|
40
|
+
|
41
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
42
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
43
|
+
# like if you have constraints or database-specific column types
|
44
|
+
# config.active_record.schema_format = :sql
|
45
|
+
|
46
|
+
# Enforce whitelist mode for mass assignment.
|
47
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
48
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
49
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
50
|
+
config.active_record.whitelist_attributes = true
|
51
|
+
|
52
|
+
# Enable the asset pipeline
|
53
|
+
config.assets.enabled = true
|
54
|
+
|
55
|
+
# Version of your assets, change this if you want to expire all your assets
|
56
|
+
config.assets.version = '1.0'
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = false
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
+
|
35
|
+
# Print deprecation notices to the stderr
|
36
|
+
config.active_support.deprecation = :stderr
|
37
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
DynamicPaperclip.config.secret = 'pQjtlgb8j98Li7zvCwlDMCK3n0lPmPqwKbiF9dB031btVcHUHi1CTi_DDPH-1yz6SEo'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '959ab32349c805bdfd234602c492d9b06bcb9277a650fd6b9fe0670cc1f78ce67a133b90a4ce193401870b30a2194f23652b2a8f41dd50d92cd6a01222325f7a'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20131102002336) do
|
15
|
+
|
16
|
+
create_table "photos", :force => true do |t|
|
17
|
+
t.string "image_file_name"
|
18
|
+
t.string "image_content_type"
|
19
|
+
t.datetime "image_updated_at"
|
20
|
+
t.datetime "created_at", :null => false
|
21
|
+
t.datetime "updated_at", :null => false
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
6
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8
|
+
[1m[35m (4.4ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
9
|
+
Migrating to CreatePhotos (20131102002336)
|
10
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_file_name" varchar(255), "image_content_type" varchar(255), "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
12
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131102002336')[0m
|
13
|
+
[1m[35m (0.6ms)[0m commit transaction
|
14
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
15
|
+
Connecting to database specified by database.yml
|
16
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
17
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
18
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19
|
+
[1m[35m (1.3ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
22
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
23
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
24
|
+
[1m[35m (1.3ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|