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
|
class CallsController < ApplicationController
load_resource :sip_account
load_resource :call
before_filter :set_and_authorize_parent
before_filter :spread_breadcrumbs
def index
if @parent
@calls = @parent.calls
else
@calls = Call.all
end
end
def new
if !params[:url].blank?
protocol, separator, phone_number = params[:url].partition(':')
if ! phone_number.blank?
@call = @parent.calls.new()
@call.destination = phone_number
end
elsif !params[:number].blank?
@call = @parent.calls.new()
@call.destination = params[:number]
end
end
def show
redirect_to :index
end
def create
@call = @sip_account.call_legs.build(params[:call])
if @call && @call.call
m = method( :"#{@parent.class.name.underscore}_calls_url" )
redirect_to m.( @parent ), :notice => t('calls.controller.successfuly_created')
else
render :new
end
end
def destroy
@call.destroy
if @parent
m = method( :"#{@parent.class.name.underscore}_calls_url" )
else
m = method( :"calls_url" )
end
redirect_to m.(@parent), :notice => t('calls.controller.successfuly_destroyed')
end
private
def set_and_authorize_parent
@parent = @sip_account
end
def spread_breadcrumbs
if @parent.class == SipAccount
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('calls.index.page_title'), sip_account_calls_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('calls.index.page_title'), sip_account_calls_path(@sip_account)
end
end
end
end
|