OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/controllers/api/v1/projects_controller.rb

124 lines
4.3 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2013 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 V1
class ProjectsController < ProjectsController
include ::Api::V1::ApiController
include PaginationHelper
def index
@projects = Project.visible.order('lft')
.page(page_param)
.per_page(per_page_param)
respond_to do |format|
format.api
end
end
def show
@users_by_role = @project.users_by_role
@subprojects = @project.children.visible.all
@news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
@types = @project.rolled_up_types
cond = @project.project_condition(Setting.display_subprojects_work_packages?)
@open_issues_by_type = WorkPackage.visible.count(:group => :type,
:include => [:project, :status, :type],
:conditions => ["(#{cond}) AND #{Status.table_name}.is_closed=?", false])
@total_issues_by_type = WorkPackage.visible.count(:group => :type,
:include => [:project, :status, :type],
:conditions => cond)
if User.current.allowed_to?(:view_time_entries, @project)
@total_hours = TimeEntry.visible.sum(:hours, :include => :project, :conditions => cond).to_f
end
respond_to do |format|
format.api
end
end
def level_list
respond_to do |format|
format.api {
@elements = Project.project_level_list(Project.visible)
}
end
end
def update
@project.safe_attributes = params[:project]
if validate_parent_id && @project.save
@project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
respond_to do |format|
format.api { head :ok }
end
else
respond_to do |format|
format.api { render_validation_errors(@project) }
end
end
end
def destroy
@project_to_destroy = @project
@project_to_destroy.destroy
respond_to do |format|
format.api { head :ok }
end
end
def create
@issue_custom_fields = WorkPackageCustomField.find(:all, :order => "#{CustomField.table_name}.position")
@types = Type.all
@project = Project.new
@project.safe_attributes = params[:project]
if validate_parent_id && @project.save
@project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
add_current_user_to_project_if_not_admin(@project)
respond_to do |format|
format.api { render :action => 'show', :status => :created, :location => url_for(:controller => '/projects', :action => 'show', :id => @project.id) }
end
else
respond_to do |format|
format.api { render_validation_errors(@project) }
end
end
end
end
end
end