145 lines
5.1 KiB
Ruby
145 lines
5.1 KiB
Ruby
require_relative '../visualization_searcher'
|
|
require_relative '../paged_searcher'
|
|
|
|
class Carto::Api::Public::CustomVisualizationsController < Carto::Api::Public::ApplicationController
|
|
include Carto::Api::VisualizationSearcher
|
|
include Carto::Api::PagedSearcher
|
|
|
|
CONTENT_LENGTH_LIMIT_IN_BYTES = 100000
|
|
VALID_ORDER_PARAMS = %i(name updated_at privacy).freeze
|
|
ALLOWED_PRIVACY_MODES = [
|
|
Carto::Visualization::PRIVACY_PUBLIC,
|
|
Carto::Visualization::PRIVACY_PROTECTED
|
|
].freeze
|
|
|
|
ssl_required
|
|
|
|
before_action :validate_mandatory_creation_params, only: [:create]
|
|
before_action :validate_input_parameters, only: [:create, :update]
|
|
before_action :get_kuviz, only: [:update, :delete]
|
|
before_action :get_user, only: [:create, :update, :delete]
|
|
before_action :check_for_permission, only: [:update, :delete]
|
|
|
|
def index
|
|
opts = { valid_order_combinations: VALID_ORDER_PARAMS }
|
|
page, per_page, order, order_direction = page_per_page_order_params(VALID_ORDER_PARAMS, opts)
|
|
params[:type] = Carto::Visualization::TYPE_KUVIZ
|
|
vqb = query_builder_with_filter_from_hash(params)
|
|
|
|
visualizations = vqb.with_order(order, order_direction)
|
|
.build_paged(page, per_page).map do |v|
|
|
Carto::Api::Public::KuvizPresenter.new(self, v.user, v).to_hash
|
|
end
|
|
response = {
|
|
visualizations: visualizations,
|
|
total_entries: vqb.build.size
|
|
}
|
|
render_jsonp(response)
|
|
rescue Carto::ParamInvalidError, Carto::ParamCombinationInvalidError => e
|
|
render_jsonp({ error: e.message }, e.status)
|
|
rescue StandardError => e
|
|
CartoDB::Logger.error(exception: e)
|
|
render_jsonp({ error: e.message }, 500)
|
|
end
|
|
|
|
def create
|
|
kuviz = create_visualization_metadata(@logged_user)
|
|
asset = Carto::Asset.for_visualization(visualization: kuviz,
|
|
resource: StringIO.new(Base64.decode64(params[:data])))
|
|
asset.save
|
|
|
|
render_jsonp(Carto::Api::Public::KuvizPresenter.new(self, @logged_user, kuviz).to_hash, 200)
|
|
rescue StandardError => e
|
|
CartoDB::Logger.error(message: 'Error creating kuviz', params: params, exception: e)
|
|
render_jsonp({ error: 'cant create the kuviz' }, 500)
|
|
end
|
|
|
|
def update
|
|
@kuviz.update_attributes!(params.permit(:name, :privacy, :password))
|
|
|
|
if params[:data].present?
|
|
@kuviz.asset.update_visualization_resource(StringIO.new(Base64.decode64(params[:data])))
|
|
# In case we only update the asset we need to invalidate the visualization
|
|
@kuviz.save
|
|
end
|
|
render_jsonp(Carto::Api::Public::KuvizPresenter.new(self, @logged_user, @kuviz).to_hash, 200)
|
|
end
|
|
|
|
def delete
|
|
@kuviz.destroy
|
|
head 204
|
|
rescue StandardError => exception
|
|
CartoDB::Logger.error(message: 'Error deleting kuviz', exception: exception,
|
|
visualization: @kuviz)
|
|
render_jsonp({ errors: [exception.message] }, 400)
|
|
end
|
|
|
|
private
|
|
|
|
def create_visualization_metadata(user)
|
|
kuviz = Carto::Visualization.new
|
|
kuviz.name = params[:name]
|
|
kuviz.privacy = params[:password].present? ? Carto::Visualization::PRIVACY_PROTECTED : Carto::Visualization::PRIVACY_PUBLIC
|
|
kuviz.password = params[:password]
|
|
kuviz.type = Carto::Visualization::TYPE_KUVIZ
|
|
kuviz.user = user
|
|
kuviz.save
|
|
kuviz
|
|
end
|
|
|
|
def get_user
|
|
@logged_user = current_viewer.present? ? Carto::User.find(current_viewer.id) : nil
|
|
end
|
|
|
|
def check_for_permission
|
|
head(403) unless @kuviz.has_permission?(@logged_user, Carto::Permission::ACCESS_READWRITE)
|
|
end
|
|
|
|
def validate_input_parameters
|
|
if request.content_length > CONTENT_LENGTH_LIMIT_IN_BYTES
|
|
return render_jsonp({ error: "visualization over the size limit (#{CONTENT_LENGTH_LIMIT_IN_BYTES})" }, 400)
|
|
end
|
|
|
|
if params[:privacy].present?
|
|
unless ALLOWED_PRIVACY_MODES.include?(params[:privacy])
|
|
return render_jsonp({ error: "privacy mode not allowed. Allowed ones are #{ALLOWED_PRIVACY_MODES}" }, 400)
|
|
end
|
|
if params[:privacy] == Carto::Visualization::PRIVACY_PROTECTED && !params[:password].present?
|
|
return render_jsonp({ error: 'Changing privacy to protected should come along with the password param' }, 400)
|
|
end
|
|
end
|
|
|
|
if params[:data].present?
|
|
begin
|
|
decoded_data = Base64.strict_decode64(params[:data])
|
|
return render_jsonp({ error: 'data parameter must be HTML' }, 400) unless html_param?(decoded_data)
|
|
rescue ArgumentError
|
|
return render_jsonp({ error: 'data parameter must be encoded in base64' }, 400)
|
|
end
|
|
end
|
|
end
|
|
|
|
def validate_mandatory_creation_params
|
|
if !params[:data].present?
|
|
render_jsonp({ error: 'missing data parameter' }, 400)
|
|
elsif !params[:name].present?
|
|
render_jsonp({ error: 'missing name parameter' }, 400)
|
|
end
|
|
end
|
|
|
|
def html_param?(data)
|
|
# FIXME this is a very naive implementantion. I'm trying to use
|
|
# Nokogiri to validate the HTML but it doesn't works as I want
|
|
# so
|
|
data.match(/\<html.*\>/).present?
|
|
end
|
|
|
|
def get_kuviz
|
|
@kuviz = Carto::Visualization.find(params[:id])
|
|
if @kuviz.nil?
|
|
raise Carto::LoadError.new('Kuviz doesn\'t exist', 404)
|
|
end
|
|
end
|
|
|
|
end
|