estimancy/projestimate

View on GitHub
app/controllers/organization_technologies_controller.rb

Summary

Maintainability
A
1 hr
Test Coverage
#encoding: utf-8
#############################################################################
#
# Estimancy, Open Source project estimation web application
# Copyright (c) 2014 Estimancy (http://www.estimancy.com)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Affero General Public License as
#    published by the Free Software Foundation, either version 3 of the
#    License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU Affero General Public License for more details.
#
#    ===================================================================
#
# ProjEstimate, Open Source project estimation web application
# Copyright (c) 2012-2013 Spirula (http://www.spirula.fr)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Affero General Public License as
#    published by the Free Software Foundation, either version 3 of the
#    License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU Affero General Public License for more details.
#
#    You should have received a copy of the GNU Affero General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################

class OrganizationTechnologiesController < ApplicationController
  load_resource

  def index
    authorize! :show_organization_technologies, OrganizationTechnology

    @organization = Organization.find(params[:id])
    @organization_technologies = @organization.organization_technologies
  end

  def edit
    authorize! :show_organization_technologies, OrganizationTechnology

    @organization_technology = OrganizationTechnology.find(params[:id])
    @organization = @organization_technology.organization

  end

  def new
    authorize! :manage, OrganizationTechnology

    @organization_technology = OrganizationTechnology.new
    @organization = Organization.find_by_id(params[:organization_id])
  end

  def create
    authorize! :manage, OrganizationTechnology

    @organization_technology = OrganizationTechnology.new(params[:organization_technology])
    @organization = Organization.find_by_id(params['organization_technology']['organization_id'])

    if @organization_technology.save
      flash[:notice] = I18n.t (:notice_organization_technology_successful_created)
      redirect_to redirect_apply(nil, new_organization_technology_path(params[:organization_technology]), organization_setting_path(@organization, :anchor => 'tabs-technology'))
    else
      render action: 'new', :organization_id => @organization.id
    end
  end

  def update
    authorize! :manage, OrganizationTechnology

    @organization_technology = OrganizationTechnology.find(params[:id])
    @organization = @organization_technology.organization

    if @organization_technology.update_attributes(params[:organization_technology])
      flash[:notice] = I18n.t (:notice_organization_technology_successful_updated)
      redirect_to redirect_apply(edit_organization_technology_path(params[:organization_technology]), nil, organization_setting_path(@organization, :anchor => 'tabs-technology'))
    else
      render action: 'edit', :organization_id => @organization.id
    end
  end

  def destroy
    authorize! :manage, OrganizationTechnology

    @organization_technology = OrganizationTechnology.find(params[:id])
    organization_id = @organization_technology.organization_id
    @organization_technology.delete
    respond_to do |format|
      flash[:notice] = I18n.t(:notice_organization_technology_successful_deleted)
      format.html { redirect_to organization_setting_path(organization_id, :anchor => 'tabs-technology') }
    end
  end

end