kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
5.1 KiB
165 lines
5.1 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2020 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
class VersionsController < ApplicationController
|
|
menu_item :roadmap, only: %i(index show)
|
|
menu_item :settings_versions
|
|
|
|
model_object Version
|
|
before_action :find_model_object, except: %i[index new create close_completed]
|
|
before_action :find_project_from_association, except: %i[index new create close_completed]
|
|
before_action :find_project, only: %i[index new create close_completed]
|
|
before_action :authorize
|
|
|
|
def index
|
|
@types = @project.types.order(Arel.sql('position'))
|
|
retrieve_selected_type_ids(@types, @types.select(&:is_in_roadmap?))
|
|
@with_subprojects = params[:with_subprojects].nil? ? Setting.display_subprojects_work_packages? : (params[:with_subprojects].to_i == 1)
|
|
project_ids = @with_subprojects ? @project.self_and_descendants.map(&:id) : [@project.id]
|
|
|
|
@versions = @project
|
|
.shared_versions
|
|
|
|
if @with_subprojects
|
|
@versions = @versions.or(@project.rolled_up_versions)
|
|
end
|
|
|
|
@versions = @versions.visible.order_by_newest_date.uniq.to_a
|
|
@versions.reject! { |version| version.closed? || version.completed? } unless params[:completed]
|
|
|
|
@issues_by_version = {}
|
|
unless @selected_type_ids.empty?
|
|
@versions.each do |version|
|
|
issues = version
|
|
.fixed_issues
|
|
.visible
|
|
.includes(:project, :status, :type, :priority)
|
|
.where(type_id: @selected_type_ids, project_id: project_ids)
|
|
.order("#{Project.table_name}.lft, #{::Type.table_name}.position, #{WorkPackage.table_name}.id")
|
|
@issues_by_version[version] = issues
|
|
end
|
|
end
|
|
@versions.reject! { |version| !project_ids.include?(version.project_id) && @issues_by_version[version].blank? }
|
|
end
|
|
|
|
def show
|
|
@issues = @version
|
|
.fixed_issues
|
|
.visible
|
|
.includes(:status, :type, :priority)
|
|
.order("#{::Type.table_name}.position, #{WorkPackage.table_name}.id")
|
|
end
|
|
|
|
def new
|
|
@version = @project.versions.build
|
|
end
|
|
|
|
def create
|
|
attributes = permitted_params
|
|
.version
|
|
.merge(project_id: @project.id)
|
|
|
|
call = Versions::CreateService
|
|
.new(user: current_user)
|
|
.call(attributes)
|
|
|
|
render_cu(call, :notice_successful_create, 'new')
|
|
end
|
|
|
|
def edit; end
|
|
|
|
def update
|
|
attributes = permitted_params
|
|
.version
|
|
|
|
call = Versions::UpdateService
|
|
.new(user: current_user,
|
|
model: @version)
|
|
.call(attributes)
|
|
|
|
render_cu(call, :notice_successful_update, 'edit')
|
|
end
|
|
|
|
def close_completed
|
|
if request.put?
|
|
@project.close_completed_versions
|
|
end
|
|
redirect_to settings_versions_project_path(@project)
|
|
end
|
|
|
|
def destroy
|
|
call = Versions::DeleteService
|
|
.new(user: current_user,
|
|
model: @version)
|
|
.call
|
|
|
|
unless call.success?
|
|
flash[:error] = call.errors.full_messages
|
|
end
|
|
|
|
redirect_to settings_versions_project_path(@project)
|
|
end
|
|
|
|
private
|
|
|
|
def redirect_back_or_version_settings
|
|
redirect_back_or_default(settings_versions_project_path(@project))
|
|
end
|
|
|
|
def find_project
|
|
@project = Project.find(params[:project_id])
|
|
rescue ActiveRecord::RecordNotFound
|
|
render_404
|
|
end
|
|
|
|
def retrieve_selected_type_ids(selectable_types, default_types = nil)
|
|
@selected_type_ids = selected_type_ids selectable_types, default_types
|
|
end
|
|
|
|
def selected_type_ids(selectable_types, default_types = nil)
|
|
if (ids = params[:type_ids])
|
|
ids.is_a?(Array) ? ids.map(&:to_s) : ids.split('/')
|
|
else
|
|
(default_types || selectable_types).map { |t| t.id.to_s }
|
|
end
|
|
end
|
|
|
|
def render_cu(call, success_message, failure_action)
|
|
@version = call.result
|
|
|
|
if call.success?
|
|
flash[:notice] = t(success_message)
|
|
redirect_back_or_version_settings
|
|
else
|
|
@errors = call.errors
|
|
|
|
render action: failure_action
|
|
end
|
|
end
|
|
end
|
|
|