summaryrefslogtreecommitdiff
path: root/app/controllers/acd_agents_controller.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
commitb80bd744ad873f6fc43018bc4bfb90677de167bd (patch)
tree072c4b0e33d442528555b82c415f5e7a1712b2b0 /app/controllers/acd_agents_controller.rb
parent3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff)
Start of GS5.
Diffstat (limited to 'app/controllers/acd_agents_controller.rb')
-rw-r--r--app/controllers/acd_agents_controller.rb73
1 files changed, 73 insertions, 0 deletions
diff --git a/app/controllers/acd_agents_controller.rb b/app/controllers/acd_agents_controller.rb
new file mode 100644
index 0000000..1d119b3
--- /dev/null
+++ b/app/controllers/acd_agents_controller.rb
@@ -0,0 +1,73 @@
+class AcdAgentsController < ApplicationController
+ load_and_authorize_resource :automatic_call_distributor
+ load_and_authorize_resource :acd_agent, :through => [:automatic_call_distributor]
+
+ before_filter :spread_breadcrumbs
+
+ def index
+ if params[:active]
+ if params[:active].downcase == 'true'
+ @acd_agents = @acd_agents.where(:active => true)
+ elsif params[:active].downcase == 'false'
+ @acd_agents = @acd_agents.where(:active => false)
+ end
+ end
+ end
+
+ def show
+ @acd_agent = AcdAgent.find(params[:id])
+ end
+
+ def new
+ @acd_agent = @automatic_call_distributor.acd_agents.build
+ i = @automatic_call_distributor.acd_agents.count
+ loop do
+ i += 1
+ break unless @automatic_call_distributor.acd_agents.where(:name => "#{t('acd_agents.name')} #{i}").count > 0
+ end
+ @acd_agent.name = "#{t('acd_agents.name')} #{i}"
+ @acd_agent.status = 'active'
+ @acd_agent.calls_answered = 0
+ end
+
+ def create
+ @acd_agent = @automatic_call_distributor.acd_agents.build(params[:acd_agent])
+ if @acd_agent.save
+ redirect_to automatic_call_distributor_acd_agent_path(@automatic_call_distributor, @acd_agent), :notice => t('acd_agents.controller.successfuly_created')
+ else
+ render :new
+ end
+ end
+
+ def edit
+ @acd_agent = AcdAgent.find(params[:id])
+ end
+
+ def update
+ @acd_agent = AcdAgent.find(params[:id])
+ if @acd_agent.update_attributes(params[:acd_agent])
+ redirect_to automatic_call_distributor_acd_agent_path(@automatic_call_distributor, @acd_agent), :notice => t('acd_agents.controller.successfuly_updated')
+ else
+ render :edit
+ end
+ end
+
+ def destroy
+ @acd_agent = AcdAgent.find(params[:id])
+ @acd_agent.destroy
+ redirect_to automatic_call_distributor_acd_agents_path(@automatic_call_distributor), :notice => t('acd_agents.controller.successfuly_destroyed')
+ end
+
+ def spread_breadcrumbs
+ if @automatic_call_distributor.automatic_call_distributorable.class == User
+ add_breadcrumb t("#{@automatic_call_distributor.automatic_call_distributorable.class.name.underscore.pluralize}.index.page_title"), method( :"tenant_#{@automatic_call_distributor.automatic_call_distributorable.class.name.underscore.pluralize}_path" ).(@automatic_call_distributor.tenant)
+ add_breadcrumb @automatic_call_distributor.automatic_call_distributorable, method( :"tenant_#{@automatic_call_distributor.automatic_call_distributorable.class.name.underscore}_path" ).(@automatic_call_distributor.tenant, @automatic_call_distributor.automatic_call_distributorable)
+ end
+ add_breadcrumb t("automatic_call_distributors.index.page_title"), method( :"#{@automatic_call_distributor.automatic_call_distributorable.class.name.underscore}_automatic_call_distributors_path" ).(@automatic_call_distributor.automatic_call_distributorable)
+ add_breadcrumb @automatic_call_distributor, method( :"#{@automatic_call_distributor.automatic_call_distributorable.class.name.underscore}_automatic_call_distributor_path" ).(@automatic_call_distributor.automatic_call_distributorable, @automatic_call_distributor)
+ add_breadcrumb t("acd_agents.index.page_title"), automatic_call_distributor_acd_agents_path(@automatic_call_distributor)
+ if @acd_agent && !@acd_agent.new_record?
+ add_breadcrumb @acd_agent, automatic_call_distributor_acd_agent_path(@automatic_call_distributor, @acd_agent)
+ end
+ end
+end