情况就是这样:
社区引擎中的Photo模型使用附件Fu。我希望改用回形针。
现在这个工作正常,直到我必须删除附件。那是附件Fu造成问题的时候。这是Photo.rb的样子(在/ vendor / plugins / community_engine / app / models中):
class Photo < ActiveRecord::Base
acts_as_commentable
belongs_to :album
has_attachment prepare_options_for_attachment_fu(AppConfig.photo['attachment_fu_options'])
acts_as_taggable
acts_as_activity :user, :if => Proc.new{|record| record.parent.nil? && record.album_id.nil?}
validates_presence_of :size
validates_presence_of :content_type
validates_presence_of :filename
validates_presence_of :user, :if => Proc.new{|record| record.parent.nil? }
validates_inclusion_of :content_type, :in => attachment_options[:content_type], :message => "is not allowed", :allow_nil => true
validates_inclusion_of :size, :in => attachment_options[:size], :message => " is too large", :allow_nil => true
...
...
end
所以我的问题是:有没有办法禁用这个插件?我不想更改photo.rb并删除任何行,也不想删除插件。
这里有什么想法吗?
新照片模型(在/ app /中):
require 'paperclip_processors/cropper'
class Photo < ActiveRecord::Base
attr_accessible :image
has_attached_file :image,
:path=>":class/:hash/:style.:extension",
:styles => {
:thumb => {:geometry => "100x100!", :crop_to => :crop_parameters},
:medium => {:geometry => "290x320!", :crop_to => :crop_parameters},
:large => {:geometry => "664>", :crop_to => :crop_parameters},
:uncropped => "630x472"
},
:convert_options=>'-quality 92',
:processors => [:cropper]
def crop_parameters
ActiveSupport::JSON.decode(read_attribute(:crop_parameters)) rescue nil
end
# overrides to make paperclip appear as attachment_fu to existing pages
def size # in MB
image_file_size
end
def filename
image_file_name
end
def content_type
image_content_type
end
def public_filename(size=:original)
image.url(size) || ""
end
end
新的照片控制器(在/ app /中):
require 'pp'
class PhotosController < BaseController
before_filter :use_paperclip, :only => [:create]
def use_paperclip
params[:photo][:image] = params[:photo][:uploaded_data]
params[:photo].delete(:uploaded_data)
end
end
答案 0 :(得分:0)
如果您将插件安装到vendor/
目录,请在plugins/
子目录下找到该插件,并注释掉init.rb
中的所有内容。这应该禁用插件的所有功能,而不从源树中删除它。
答案 1 :(得分:0)
当你没有为它做任何初始化时,你究竟如何使用回形针?
您可以在初始化程序中打开课程并进行更改以满足您的需求。
最好使用从配置文件设置的适配器模式添加附件代码,这样您就可以创建模块并包含它。该模块根据您创建的某个配置以及在何处获取要初始化的参数来计算是否包括回形针或附件。