138 lines
4.5 KiB
Ruby
138 lines
4.5 KiB
Ruby
module Budgets
|
|
class InvestmentsController < ApplicationController
|
|
include FeatureFlags
|
|
include CommentableActions
|
|
include FlagActions
|
|
|
|
before_action :authenticate_user!, except: [:index, :show]
|
|
|
|
load_and_authorize_resource :budget
|
|
load_and_authorize_resource :investment, through: :budget, class: "Budget::Investment"
|
|
|
|
before_action -> { flash.now[:notice] = flash[:notice].html_safe if flash[:html_safe] && flash[:notice] }
|
|
before_action :load_ballot, only: [:index, :show]
|
|
before_action :load_heading, only: [:index, :show]
|
|
before_action :set_random_seed, only: :index
|
|
before_action :load_categories, only: [:index, :new, :create]
|
|
before_action :set_default_budget_filter, only: :index
|
|
|
|
feature_flag :budgets
|
|
|
|
has_orders %w{most_voted newest oldest}, only: :show
|
|
has_orders ->(c) { c.instance_variable_get(:@budget).investments_orders }, only: :index
|
|
has_filters %w{not_unfeasible feasible unfeasible unselected selected}, only: [:index, :show, :suggest]
|
|
|
|
invisible_captcha only: [:create, :update], honeypot: :subtitle, scope: :budget_investment
|
|
|
|
helper_method :resource_model, :resource_name
|
|
respond_to :html, :js
|
|
|
|
def index
|
|
@investments = @investments.apply_filters_and_search(@budget, params, @current_filter)
|
|
.send("sort_by_#{@current_order}").page(params[:page]).per(10).for_render
|
|
@investment_ids = @investments.pluck(:id)
|
|
load_investment_votes(@investments)
|
|
@tag_cloud = tag_cloud
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def show
|
|
@commentable = @investment
|
|
@comment_tree = CommentTree.new(@commentable, params[:page], @current_order)
|
|
set_comment_flags(@comment_tree.comments)
|
|
load_investment_votes(@investment)
|
|
@investment_ids = [@investment.id]
|
|
@document = Document.new(documentable: @investment)
|
|
end
|
|
|
|
def create
|
|
@investment.author = current_user
|
|
recover_documents_from_cache(@investment)
|
|
|
|
if @investment.save
|
|
Mailer.budget_investment_created(@investment).deliver_later
|
|
redirect_to budget_investment_path(@budget, @investment),
|
|
notice: t('flash.actions.create.budget_investment')
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@investment.destroy
|
|
redirect_to user_path(current_user, filter: 'budget_investments'), notice: t('flash.actions.destroy.budget_investment')
|
|
end
|
|
|
|
def vote
|
|
@investment.register_selection(current_user)
|
|
load_investment_votes(@investment)
|
|
respond_to do |format|
|
|
format.html { redirect_to budget_investments_path(heading_id: @investment.heading.id) }
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def suggest
|
|
@resource_path_method = :namespaced_budget_investment_path
|
|
@resource_relation = resource_model.where(budget: @budget).apply_filters_and_search(@budget, params, @current_filter)
|
|
super
|
|
end
|
|
|
|
private
|
|
|
|
def resource_model
|
|
Budget::Investment
|
|
end
|
|
|
|
def resource_name
|
|
"budget_investment"
|
|
end
|
|
|
|
def load_investment_votes(investments)
|
|
@investment_votes = current_user ? current_user.budget_investment_votes(investments) : {}
|
|
end
|
|
|
|
def set_random_seed
|
|
if params[:order] == 'random' || params[:order].blank?
|
|
params[:random_seed] ||= rand(99) / 100.0
|
|
seed = Float(params[:random_seed]) rescue 0
|
|
Budget::Investment.connection.execute("select setseed(#{seed})")
|
|
else
|
|
params[:random_seed] = nil
|
|
end
|
|
end
|
|
|
|
def investment_params
|
|
params.require(:budget_investment)
|
|
.permit(:title, :description, :external_url, :heading_id,
|
|
:tag_list, :organization_name, :location, :terms_of_service,
|
|
:image, :image_title,
|
|
documents_attributes: [:id, :title, :attachment, :cached_attachment, :user_id])
|
|
end
|
|
|
|
def load_ballot
|
|
query = Budget::Ballot.where(user: current_user, budget: @budget)
|
|
@ballot = @budget.balloting? ? query.first_or_create : query.first_or_initialize
|
|
end
|
|
|
|
def load_heading
|
|
if params[:heading_id].present?
|
|
@heading = @budget.headings.find(params[:heading_id])
|
|
@assigned_heading = @ballot.try(:heading_for_group, @heading.try(:group))
|
|
end
|
|
end
|
|
|
|
def load_categories
|
|
@categories = ActsAsTaggableOn::Tag.category.order(:name)
|
|
end
|
|
|
|
def tag_cloud
|
|
TagCloud.new(Budget::Investment, params[:search])
|
|
end
|
|
|
|
end
|
|
|
|
end
|