2010-09-15 00:19:34 +00:00
|
|
|
module Admin
|
|
|
|
class ImagesController < BaseController
|
|
|
|
|
|
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
|
|
|
|
defaults :collection_name => 'assets', :instance_name => 'asset'
|
|
|
|
|
|
|
|
respond_to :json, :only => [:index, :create, :destroy]
|
|
|
|
|
|
|
|
def index
|
|
|
|
index! do |response|
|
|
|
|
response.json do
|
|
|
|
render :json => { :images => @assets.collect { |image| image_to_json(image) } }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2011-02-04 07:44:42 +00:00
|
|
|
params[:asset] = { :name => params[:name], :source => params[:file], :collection => begin_of_association_chain } if params[:file]
|
2010-09-15 00:19:34 +00:00
|
|
|
|
2011-02-04 07:44:42 +00:00
|
|
|
a = Asset.new(params[:asset])
|
|
|
|
|
|
|
|
begin
|
|
|
|
a.save!
|
|
|
|
render :json => image_to_json(a)
|
|
|
|
rescue Exception => e
|
|
|
|
# Rails.logger.info e.backtrace.join("\n")
|
2011-02-04 07:57:26 +00:00
|
|
|
render :json => { :status => 'error', :backtrace => e.backtrace.join("\n") }
|
2010-09-15 00:19:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def collection
|
|
|
|
@assets ||= begin_of_association_chain.assets
|
|
|
|
end
|
|
|
|
|
|
|
|
def begin_of_association_chain
|
|
|
|
@asset_collection ||= AssetCollection.find_or_create_internal(current_site)
|
|
|
|
end
|
|
|
|
|
|
|
|
def image_to_json(image)
|
|
|
|
{
|
|
|
|
:status => 'success',
|
|
|
|
:name => truncate(image.name, :length => 15),
|
|
|
|
:url => image.source.url,
|
|
|
|
:vignette_url => image.vignette_url,
|
|
|
|
:destroy_url => admin_image_url(image, :json)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|