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.
125 lines
3.7 KiB
125 lines
3.7 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2014 the OpenProject Foundation (OPF)
|
|
#
|
|
# 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-2013 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 doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
module Api
|
|
module V2
|
|
class ProjectsController < ProjectsController
|
|
|
|
include ::Api::V2::ApiController
|
|
|
|
before_filter :find_project, :except => :index
|
|
before_filter :authorize, :only => :show
|
|
before_filter :require_permissions, :only => :planning_element_custom_fields
|
|
|
|
def self.accept_key_auth_actions
|
|
super + ["planning_element_custom_fields"]
|
|
end
|
|
|
|
def index
|
|
options = {:order => 'lft'}
|
|
|
|
if params[:ids]
|
|
ids, identifiers = params[:ids].split(/,/).map(&:strip).partition { |s| s =~ /\A\d*\z/ }
|
|
ids = ids.map(&:to_i).sort
|
|
identifiers = identifiers.sort
|
|
|
|
options[:conditions] = ["id IN (?) OR identifier IN (?)", ids, identifiers]
|
|
end
|
|
|
|
@projects = @base.visible
|
|
.includes(:types)
|
|
.all(options)
|
|
|
|
@projects_by_id = Hash[@projects.map{|p| [p.id,p]}]
|
|
|
|
build_associations unless @projects.empty?
|
|
|
|
respond_to do |format|
|
|
format.api
|
|
end
|
|
end
|
|
|
|
def show
|
|
respond_to do |format|
|
|
format.api
|
|
end
|
|
end
|
|
|
|
def planning_element_custom_fields
|
|
@custom_fields = @project.all_work_package_custom_fields :include => [:projects, :types, :translations]
|
|
|
|
respond_to do |format|
|
|
format.api
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def find_project
|
|
@project = Project.find params[:id],
|
|
:include => [{:custom_values => [{:custom_field => :translations}]}]
|
|
end
|
|
|
|
def build_associations
|
|
association_attributes = ProjectAssociation.with_projects(@projects_by_id.keys)
|
|
.map(&:attributes)
|
|
|
|
associations = association_attributes.map{|attributes| OpenStruct.new(attributes)}
|
|
|
|
@associations_by_id ={}
|
|
associations.each do |a|
|
|
@associations_by_id[a.project_a_id] ||= []
|
|
@associations_by_id[a.project_a_id] << a
|
|
|
|
@associations_by_id[a.project_b_id] ||= []
|
|
@associations_by_id[a.project_b_id] << a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# Helpers
|
|
helper_method :has_associations?
|
|
helper_method :associations_for_project
|
|
|
|
def has_associations?(project)
|
|
@associations_by_id[project.id].present?
|
|
end
|
|
|
|
def associations_for_project(project)
|
|
@associations_by_id[project.id]
|
|
end
|
|
|
|
def require_permissions
|
|
deny_access unless @project.visible?
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|