2006-06-28 22:11:03 +04:00
# redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang
#
# 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.
class ProjectsController < ApplicationController
2006-10-22 18:47:25 +04:00
layout 'base' , :except = > :export_issues_pdf
2006-07-03 23:38:10 +04:00
before_filter :find_project , :authorize , :except = > [ :index , :list , :add ]
2006-06-28 22:11:03 +04:00
before_filter :require_admin , :only = > [ :add , :destroy ]
helper :sort
2006-07-03 23:38:10 +04:00
include SortHelper
helper :search_filter
include SearchFilterHelper
helper :custom_fields
include CustomFieldsHelper
2006-10-22 18:47:25 +04:00
helper :ifpdf
include IfpdfHelper
2006-07-03 23:38:10 +04:00
def index
list
2006-10-21 14:38:53 +04:00
render :action = > 'list' unless request . xhr?
2006-07-03 23:38:10 +04:00
end
2006-06-28 22:11:03 +04:00
2006-07-09 20:30:01 +04:00
# Lists public projects
def list
sort_init 'name' , 'asc'
sort_update
@project_count = Project . count ( [ " is_public=? " , true ] )
@project_pages = Paginator . new self , @project_count ,
2006-06-28 22:11:03 +04:00
15 ,
@params [ 'page' ]
2006-07-09 20:30:01 +04:00
@projects = Project . find :all , :order = > sort_clause ,
:conditions = > [ " is_public=? " , true ] ,
2006-06-28 22:11:03 +04:00
:limit = > @project_pages . items_per_page ,
2006-10-21 14:38:53 +04:00
:offset = > @project_pages . current . offset
render :action = > " list " , :layout = > false if request . xhr?
2006-06-28 22:11:03 +04:00
end
# Add a new project
2006-07-09 20:30:01 +04:00
def add
2006-07-29 13:32:58 +04:00
@custom_fields = IssueCustomField . find ( :all )
@root_projects = Project . find ( :all , :conditions = > " parent_id is null " )
2006-07-09 20:30:01 +04:00
@project = Project . new ( params [ :project ] )
2006-07-29 13:32:58 +04:00
if request . get?
@custom_values = ProjectCustomField . find ( :all ) . collect { | x | CustomValue . new ( :custom_field = > x , :customized = > @project ) }
else
@project . custom_fields = CustomField . find ( @params [ :custom_field_ids ] ) if @params [ :custom_field_ids ]
@custom_values = ProjectCustomField . find ( :all ) . collect { | x | CustomValue . new ( :custom_field = > x , :customized = > @project , :value = > params [ " custom_fields " ] [ x . id . to_s ] ) }
@project . custom_values = @custom_values
2006-07-09 20:30:01 +04:00
if @project . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-09 20:30:01 +04:00
redirect_to :controller = > 'admin' , :action = > 'projects'
end
end
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Show @project
2006-07-09 20:30:01 +04:00
def show
2006-07-29 13:32:58 +04:00
@custom_values = @project . custom_values . find ( :all , :include = > :custom_field )
2006-07-09 20:30:01 +04:00
@members = @project . members . find ( :all , :include = > [ :user , :role ] )
@subprojects = @project . children if @project . children_count > 0
2006-07-29 13:32:58 +04:00
@news = @project . news . find ( :all , :limit = > 5 , :include = > [ :author , :project ] , :order = > " news.created_on DESC " )
@trackers = Tracker . find ( :all )
2006-07-09 20:30:01 +04:00
end
2006-06-28 22:11:03 +04:00
def settings
2006-07-09 20:30:01 +04:00
@root_projects = Project :: find ( :all , :conditions = > [ " parent_id is null and id <> ? " , @project . id ] )
2006-07-29 13:32:58 +04:00
@custom_fields = IssueCustomField :: find_all
2006-07-09 20:30:01 +04:00
@issue_category || = IssueCategory . new
2006-06-28 22:11:03 +04:00
@member || = @project . members . new
@roles = Role . find_all
@users = User . find_all - @project . members . find ( :all , :include = > :user ) . collect { | m | m . user }
2006-07-31 23:52:08 +04:00
@custom_values || = ProjectCustomField . find ( :all ) . collect { | x | @project . custom_values . find_by_custom_field_id ( x . id ) || CustomValue . new ( :custom_field = > x ) }
2006-06-28 22:11:03 +04:00
end
2006-07-09 20:30:01 +04:00
# Edit @project
def edit
if request . post?
2006-07-29 13:32:58 +04:00
@project . custom_fields = IssueCustomField . find ( @params [ :custom_field_ids ] ) if @params [ :custom_field_ids ]
if params [ :custom_fields ]
@custom_values = ProjectCustomField . find ( :all ) . collect { | x | CustomValue . new ( :custom_field = > x , :customized = > @project , :value = > params [ " custom_fields " ] [ x . id . to_s ] ) }
@project . custom_values = @custom_values
end
2006-07-09 20:30:01 +04:00
if @project . update_attributes ( params [ :project ] )
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_update )
2006-07-09 20:30:01 +04:00
redirect_to :action = > 'settings' , :id = > @project
2006-06-28 22:11:03 +04:00
else
settings
render :action = > 'settings'
2006-07-09 20:30:01 +04:00
end
end
2006-06-28 22:11:03 +04:00
end
2006-07-29 13:32:58 +04:00
# Delete @project
def destroy
2006-06-28 22:11:03 +04:00
if request . post? and params [ :confirm ]
@project . destroy
redirect_to :controller = > 'admin' , :action = > 'projects'
end
2006-07-29 13:32:58 +04:00
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Add a new issue category to @project
def add_issue_category
if request . post?
@issue_category = @project . issue_categories . build ( params [ :issue_category ] )
if @issue_category . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-29 13:32:58 +04:00
redirect_to :action = > 'settings' , :id = > @project
else
2006-06-28 22:11:03 +04:00
settings
render :action = > 'settings'
2006-07-29 13:32:58 +04:00
end
end
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Add a new version to @project
def add_version
@version = @project . versions . build ( params [ :version ] )
if request . post? and @version . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-06-28 22:11:03 +04:00
redirect_to :action = > 'settings' , :id = > @project
2006-07-29 13:32:58 +04:00
end
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Add a new member to @project
def add_member
2006-06-28 22:11:03 +04:00
@member = @project . members . build ( params [ :member ] )
2006-07-29 13:32:58 +04:00
if request . post?
if @member . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-29 13:32:58 +04:00
redirect_to :action = > 'settings' , :id = > @project
else
2006-06-28 22:11:03 +04:00
settings
render :action = > 'settings'
end
2006-07-29 13:32:58 +04:00
end
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Show members list of @project
def list_members
@members = @project . members
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Add a new document to @project
def add_document
@categories = Enumeration :: get_values ( 'DCAT' )
@document = @project . documents . build ( params [ :document ] )
if request . post?
2006-06-28 22:11:03 +04:00
# Save the attachment
2006-07-29 13:32:58 +04:00
if params [ :attachment ] [ :file ] . size > 0
@attachment = @document . attachments . build ( params [ :attachment ] )
@attachment . author_id = self . logged_in_user . id if self . logged_in_user
end
if @document . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-29 13:32:58 +04:00
redirect_to :action = > 'list_documents' , :id = > @project
end
end
end
# Show documents list of @project
def list_documents
@documents = @project . documents
end
2006-06-28 22:11:03 +04:00
2006-07-29 13:32:58 +04:00
# Add a new issue to @project
def add_issue
@tracker = Tracker . find ( params [ :tracker_id ] )
@priorities = Enumeration :: get_values ( 'IPRI' )
@issue = Issue . new ( :project = > @project , :tracker = > @tracker )
if request . get?
@custom_values = @project . custom_fields_for_issues ( @tracker ) . collect { | x | CustomValue . new ( :custom_field = > x , :customized = > @issue ) }
else
@issue . attributes = params [ :issue ]
@issue . author_id = self . logged_in_user . id if self . logged_in_user
# Create the document if a file was sent
if params [ :attachment ] [ :file ] . size > 0
@attachment = @issue . attachments . build ( params [ :attachment ] )
@attachment . author_id = self . logged_in_user . id if self . logged_in_user
end
@custom_values = @project . custom_fields_for_issues ( @tracker ) . collect { | x | CustomValue . new ( :custom_field = > x , :customized = > @issue , :value = > params [ " custom_fields " ] [ x . id . to_s ] ) }
@issue . custom_values = @custom_values
if @issue . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-29 13:32:58 +04:00
Mailer . deliver_issue_add ( @issue ) if Permission . find_by_controller_and_action ( @params [ :controller ] , @params [ :action ] ) . mail_enabled?
redirect_to :action = > 'list_issues' , :id = > @project
end
end
end
2006-07-09 20:30:01 +04:00
# Show filtered/sorted issues list of @project
2006-07-03 23:38:10 +04:00
def list_issues
sort_init 'issues.id' , 'desc'
sort_update
search_filter_init_list_issues
2006-10-21 14:38:53 +04:00
search_filter_update if params [ :set_filter ]
2006-07-03 23:38:10 +04:00
2006-10-22 18:47:25 +04:00
@results_per_page_options = [ 15 , 25 , 50 , 100 ]
if params [ :per_page ] and @results_per_page_options . include? params [ :per_page ] . to_i
@results_per_page = params [ :per_page ] . to_i
session [ :results_per_page ] = @results_per_page
else
@results_per_page = session [ :results_per_page ] || @results_per_page_options . first
end
2006-07-09 20:30:01 +04:00
@issue_count = Issue . count ( :include = > [ :status , :project ] , :conditions = > search_filter_clause )
2006-10-22 18:47:25 +04:00
@issue_pages = Paginator . new self , @issue_count , @results_per_page , @params [ 'page' ]
2006-07-29 13:32:58 +04:00
@issues = Issue . find :all , :order = > sort_clause ,
2006-07-09 20:30:01 +04:00
:include = > [ :author , :status , :tracker , :project ] ,
2006-06-28 22:11:03 +04:00
:conditions = > search_filter_clause ,
:limit = > @issue_pages . items_per_page ,
2006-10-21 14:38:53 +04:00
:offset = > @issue_pages . current . offset
2006-10-22 18:47:25 +04:00
render :layout = > false if request . xhr?
2006-07-03 23:38:10 +04:00
end
# Export filtered/sorted issues list to CSV
def export_issues_csv
sort_init 'issues.id' , 'desc'
sort_update
search_filter_init_list_issues
@issues = Issue . find :all , :order = > sort_clause ,
2006-10-22 18:47:25 +04:00
:include = > [ :author , :status , :tracker , :project , :custom_values ] ,
2006-07-03 23:38:10 +04:00
:conditions = > search_filter_clause
2006-06-28 22:11:03 +04:00
2006-10-22 18:47:25 +04:00
ic = Iconv . new ( 'ISO-8859-1' , 'UTF-8' )
2006-07-03 23:38:10 +04:00
export = StringIO . new
2006-10-22 18:47:25 +04:00
CSV :: Writer . generate ( export , l ( :general_csv_separator ) ) do | csv |
# csv header fields
headers = [ " # " , l ( :field_status ) , l ( :field_tracker ) , l ( :field_subject ) , l ( :field_author ) , l ( :field_created_on ) , l ( :field_updated_on ) ]
for custom_field in @project . all_custom_fields
headers << custom_field . name
end
csv << headers . collect { | c | ic . iconv ( c ) }
# csv lines
2006-07-03 23:38:10 +04:00
@issues . each do | issue |
2006-10-22 18:47:25 +04:00
fields = [ issue . id , issue . status . name , issue . tracker . name , issue . subject , issue . author . display_name , l_datetime ( issue . created_on ) , l_datetime ( issue . updated_on ) ]
for custom_field in @project . all_custom_fields
fields << ( show_value issue . custom_value_for ( custom_field ) )
end
csv << fields . collect { | c | ic . iconv ( c . to_s ) }
2006-07-03 23:38:10 +04:00
end
end
export . rewind
2006-10-22 18:47:25 +04:00
send_data ( export . read , :type = > 'text/csv; header=present' , :filename = > 'export.csv' )
end
# Export filtered/sorted issues to PDF
def export_issues_pdf
sort_init 'issues.id' , 'desc'
sort_update
search_filter_init_list_issues
@issues = Issue . find :all , :order = > sort_clause ,
:include = > [ :author , :status , :tracker , :project , :custom_values ] ,
:conditions = > search_filter_clause
@options_for_rfpdf || = { }
@options_for_rfpdf [ :file_name ] = " export.pdf "
2006-07-03 23:38:10 +04:00
end
2006-06-28 22:11:03 +04:00
2006-10-15 18:33:04 +04:00
def move_issues
@issues = @project . issues . find ( params [ :issue_ids ] ) if params [ :issue_ids ]
redirect_to :action = > 'list_issues' , :id = > @project and return unless @issues
@projects = [ ]
# find projects to which the user is allowed to move the issue
@logged_in_user . memberships . each { | m | @projects << m . project if Permission . allowed_to_role ( " projects/move_issues " , m . role_id ) }
# issue can be moved to any tracker
@trackers = Tracker . find ( :all )
if request . post? and params [ :new_project_id ] and params [ :new_tracker_id ]
new_project = Project . find ( params [ :new_project_id ] )
new_tracker = Tracker . find ( params [ :new_tracker_id ] )
@issues . each { | i |
# category is project dependent
i . category = nil unless i . project_id == new_project . id
# move the issue
i . project = new_project
i . tracker = new_tracker
i . save
}
flash [ :notice ] = l ( :notice_successful_update )
redirect_to :action = > 'list_issues' , :id = > @project
end
end
2006-07-29 13:32:58 +04:00
# Add a news to @project
def add_news
@news = News . new ( :project = > @project )
if request . post?
@news . attributes = params [ :news ]
@news . author_id = self . logged_in_user . id if self . logged_in_user
if @news . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-07-29 13:32:58 +04:00
redirect_to :action = > 'list_news' , :id = > @project
end
end
end
# Show news list of @project
2006-07-03 23:38:10 +04:00
def list_news
2006-06-28 22:11:03 +04:00
@news_pages , @news = paginate :news , :per_page = > 10 , :conditions = > [ " project_id=? " , @project . id ] , :include = > :author , :order = > " news.created_on DESC "
2006-10-21 14:38:53 +04:00
render :action = > " list_news " , :layout = > false if request . xhr?
2006-07-03 23:38:10 +04:00
end
2006-07-29 13:32:58 +04:00
2006-06-28 22:11:03 +04:00
def add_file
if request . post?
# Save the attachment
if params [ :attachment ] [ :file ] . size > 0
@attachment = @project . versions . find ( params [ :version_id ] ) . attachments . build ( params [ :attachment ] )
2006-07-29 13:32:58 +04:00
@attachment . author_id = self . logged_in_user . id if self . logged_in_user
2006-06-28 22:11:03 +04:00
if @attachment . save
2006-07-30 14:47:02 +04:00
flash [ :notice ] = l ( :notice_successful_create )
2006-06-28 22:11:03 +04:00
redirect_to :controller = > 'projects' , :action = > 'list_files' , :id = > @project
end
end
end
@versions = @project . versions
end
def list_files
@versions = @project . versions
end
2006-07-30 16:55:29 +04:00
# Show changelog for @project
2006-07-03 23:38:10 +04:00
def changelog
2006-07-30 16:55:29 +04:00
@trackers = Tracker . find ( :all , :conditions = > [ " is_in_chlog=? " , true ] )
if request . get?
@selected_tracker_ids = @trackers . collect { | t | t . id . to_s }
else
@selected_tracker_ids = params [ :tracker_ids ] . collect { | id | id . to_i . to_s } if params [ :tracker_ids ] and params [ :tracker_ids ] . is_a? Array
end
@selected_tracker_ids || = [ ]
2006-07-03 23:38:10 +04:00
@fixed_issues = @project . issues . find ( :all ,
2006-07-30 16:55:29 +04:00
:include = > [ :fixed_version , :status , :tracker ] ,
:conditions = > [ " issue_statuses.is_closed=? and issues.tracker_id in ( #{ @selected_tracker_ids . join ( ',' ) } ) and issues.fixed_version_id is not null " , true ] ,
:order = > " versions.effective_date DESC, issues.id DESC "
) unless @selected_tracker_ids . empty?
@fixed_issues || = [ ]
2006-07-03 23:38:10 +04:00
end
2006-06-28 22:11:03 +04:00
2006-11-05 19:49:27 +03:00
def activity
@date_from = begin
params [ :date_from ] . to_date
rescue
end || Date . today
@days_back = params [ :days_back ] ? params [ :days_back ] . to_i : 15
@date_to = @date_from - @days_back
@events_by_day = { }
unless params [ :show_issues ] == " 0 "
@project . issues . find ( :all , :include = > [ :author , :status ] , :conditions = > [ " issues.created_on<=? and issues.created_on>=? " , @date_from + 1 , @date_to ] , :order = > " issues.created_on asc " ) . each { | i |
@events_by_day [ i . created_on . to_date ] || = [ ]
@events_by_day [ i . created_on . to_date ] << i
}
@show_issues = 1
end
unless params [ :show_news ] == " 0 "
@project . news . find ( :all , :conditions = > [ " news.created_on<=? and news.created_on>=? " , @date_from + 1 , @date_to ] , :order = > " news.created_on asc " ) . each { | i |
@events_by_day [ i . created_on . to_date ] || = [ ]
@events_by_day [ i . created_on . to_date ] << i
}
@show_news = 1
end
unless params [ :show_files ] == " 0 "
Attachment . find ( :all , :joins = > " LEFT JOIN versions ON versions.id = attachments.container_id " , :conditions = > [ " attachments.container_type='Version' and versions.project_id=? and attachments.created_on<=? and attachments.created_on>=? " , @project . id , @date_from + 1 , @date_to ] , :order = > " attachments.created_on asc " ) . each { | i |
@events_by_day [ i . created_on . to_date ] || = [ ]
@events_by_day [ i . created_on . to_date ] << i
}
@show_files = 1
end
unless params [ :show_documentss ] == " 0 "
Attachment . find ( :all , :joins = > " LEFT JOIN documents ON documents.id = attachments.container_id " , :conditions = > [ " attachments.container_type='Document' and documents.project_id=? and attachments.created_on<=? and attachments.created_on>=? " , @project . id , @date_from + 1 , @date_to ] , :order = > " attachments.created_on asc " ) . each { | i |
@events_by_day [ i . created_on . to_date ] || = [ ]
@events_by_day [ i . created_on . to_date ] << i
}
@show_documents = 1
end
end
2006-06-28 22:11:03 +04:00
private
2006-07-29 13:32:58 +04:00
# Find project of id params[:id]
# if not found, redirect to project list
2006-07-30 16:55:29 +04:00
# Used as a before_filter
2006-07-29 13:32:58 +04:00
def find_project
@project = Project . find ( params [ :id ] )
2006-07-30 14:47:02 +04:00
rescue
2006-07-29 13:32:58 +04:00
redirect_to :action = > 'list'
end
2006-06-28 22:11:03 +04:00
end