summaryrefslogtreecommitdiff
path: root/app/controllers/phones_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/phones_controller.rb')
-rw-r--r--app/controllers/phones_controller.rb72
1 files changed, 72 insertions, 0 deletions
diff --git a/app/controllers/phones_controller.rb b/app/controllers/phones_controller.rb
new file mode 100644
index 0000000..d46bf86
--- /dev/null
+++ b/app/controllers/phones_controller.rb
@@ -0,0 +1,72 @@
+class PhonesController < ApplicationController
+ load_resource :tenant
+ load_resource :user
+ load_and_authorize_resource :phone, :through => [:tenant, :user]
+
+ before_filter :set_and_authorize_parent
+ before_filter :spread_breadcrumbs
+
+ def index
+ end
+
+ def show
+ end
+
+ def new
+ @phone = @phoneable.phones.build()
+
+ # Use the last phone.phone_model as the default.
+ #
+ @phone.phone_model_id = Phone.last.try(:phone_model).try(:id)
+ end
+
+ def create
+ @phone = @phoneable.phones.build(params[:phone])
+ if @phone.save
+ m = method( :"#{@phoneable.class.name.underscore}_phone_path" )
+ redirect_to m.( @phoneable, @phone ), :notice => t('phones.controller.successfuly_created')
+ else
+ render :new
+ end
+ end
+
+ def edit
+ end
+
+ def update
+ if @phone.update_attributes(params[:phone])
+ m = method( :"#{@phoneable.class.name.underscore}_phone_path" )
+ redirect_to m.( @phoneable, @phone ), :notice => t('phones.controller.successfuly_updated')
+ else
+ render :edit
+ end
+ end
+
+ def destroy
+ @phone.destroy
+ m = method( :"#{@phoneable.class.name.underscore}_phones_url" )
+ redirect_to m.( @phoneable ), :notice => t('phones.controller.successfuly_destroyed')
+ end
+
+ private
+ def set_and_authorize_parent
+ @phoneable = (@user || @tenant)
+ @parent = @phoneable
+ authorize! :read, @parent
+ @nesting_prefix = @phoneable ? "#{@phoneable.class.name.underscore}_" : ''
+ end
+
+ def spread_breadcrumbs
+ if @user
+ add_breadcrumb t('users.index.page_title'), tenant_users_path(@user.current_tenant)
+ add_breadcrumb @user, tenant_user_path(@user.current_tenant, @user)
+ add_breadcrumb t('phones.index.page_title'), user_phones_path(@user)
+ elsif @tenant
+ add_breadcrumb t('phones.index.page_title'), tenant_phones_path(@tenant)
+ end
+ if @phone && !@phone.new_record?
+ add_breadcrumb @phone, method( :"#{@phone.phoneable.class.name.underscore}_phone_path" ).(@phone.phoneable, @phone)
+ end
+ end
+
+end