1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
class SoftkeysController < ApplicationController
load_and_authorize_resource :sip_account
load_and_authorize_resource :softkey, :through => [:sip_account]
before_filter :set_available_call_forwards_and_softkey_functions, :only => [ :new, :edit, :update ]
before_filter :spread_breadcrumbs
def index
end
def show
end
def new
@softkey = @sip_account.softkeys.build
delete_call_forward_softkey_if_no_callforward_is_available
end
def create
@softkey = @sip_account.softkeys.build(params[:softkey])
if @softkey.save
redirect_to sip_account_softkey_path(@softkey.sip_account, @softkey), :notice => t('softkeys.controller.successfuly_created')
else
render :new
end
end
def edit
delete_call_forward_softkey_if_no_callforward_is_available
end
def update
if @softkey.update_attributes(params[:softkey])
redirect_to sip_account_softkey_path(@softkey.sip_account, @softkey), :notice => t('softkeys.controller.successfuly_updated')
else
delete_call_forward_softkey_if_no_callforward_is_available
render :edit
end
end
def destroy
@softkey.destroy
redirect_to sip_account_softkeys_path(@softkey.sip_account), :notice => t('softkeys.controller.successfuly_destroyed')
end
def move_higher
@softkey.move_higher
redirect_to :back
end
def move_lower
@softkey.move_lower
redirect_to :back
end
private
def set_available_call_forwards_and_softkey_functions
@available_call_forwards = @softkey.possible_blf_call_forwards
@softkey_functions = []
SoftkeyFunction.accessible_by(current_ability, :read).each do |softkey_function|
if GuiFunction.display?("softkey_function_#{softkey_function.name.downcase}_field_in_softkey_form", @current_user)
@softkey_functions << softkey_function
end
end
end
def spread_breadcrumbs
if @sip_account.sip_accountable.class == User
add_breadcrumb t('users.name'), tenant_users_path(@sip_account.sip_accountable.current_tenant)
add_breadcrumb @sip_account.sip_accountable, tenant_user_path(@sip_account.sip_accountable.current_tenant, @sip_account.sip_accountable)
add_breadcrumb t('sip_accounts.index.page_title'), user_sip_accounts_path(@sip_account.sip_accountable)
add_breadcrumb @sip_account, user_sip_account_path(@sip_account.sip_accountable, @sip_account)
add_breadcrumb t('softkeys.index.page_title'), sip_account_softkeys_path(@sip_account)
elsif @sip_account.sip_accountable.class == Tenant
add_breadcrumb t('sip_accounts.index.page_title'), tenant_sip_accounts_path(@sip_account.sip_accountable)
add_breadcrumb @sip_account, tenant_sip_account_path(@sip_account.sip_accountable, @sip_account)
add_breadcrumb t('softkeys.index.page_title'), sip_account_softkeys_path(@sip_account)
end
end
def delete_call_forward_softkey_if_no_callforward_is_available
# Don't display the call_forward option if there aren't any call_forwards to choose from.
#
if @softkey.sip_account.phone_numbers.map{|phone_number| phone_number.call_forwards}.flatten.count == 0
@softkey_functions.delete_if { |softkey_function| softkey_function == SoftkeyFunction.find_by_name('call_forwarding') }
end
end
end
|