timelog_controller.rb
324 lines
| 12.1 KiB
| text/x-ruby
|
RubyLexer
|
r4347 | # Redmine - project management software | ||
|
r6077 | # Copyright (C) 2006-2011 Jean-Philippe Lang | ||
|
r569 | # | ||
# 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. | ||||
|
r6398 | # | ||
|
r569 | # 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. | ||||
|
r6398 | # | ||
|
r569 | # 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. | ||||
|
r365 | class TimelogController < ApplicationController | ||
|
r1062 | menu_item :issues | ||
|
r4296 | before_filter :find_project, :only => [:new, :create] | ||
|
r5196 | before_filter :find_time_entry, :only => [:show, :edit, :update] | ||
before_filter :find_time_entries, :only => [:bulk_edit, :bulk_update, :destroy] | ||||
|
r4296 | before_filter :authorize, :except => [:index] | ||
|
r4121 | before_filter :find_optional_project, :only => [:index] | ||
|
r6077 | accept_rss_auth :index | ||
accept_api_auth :index, :show, :create, :update, :destroy | ||||
|
r6398 | |||
|
r365 | helper :sort | ||
include SortHelper | ||||
|
r783 | helper :issues | ||
|
r1159 | include TimelogHelper | ||
|
r1325 | helper :custom_fields | ||
include CustomFieldsHelper | ||||
|
r6398 | |||
|
r4121 | def index | ||
|
r365 | sort_init 'spent_on', 'desc' | ||
|
r2169 | sort_update 'spent_on' => 'spent_on', | ||
'user' => 'user_id', | ||||
'activity' => 'activity_id', | ||||
'project' => "#{Project.table_name}.name", | ||||
'issue' => 'issue_id', | ||||
'hours' => 'hours' | ||||
|
r6398 | |||
|
r1162 | cond = ARCondition.new | ||
|
r5029 | if @issue | ||
|
r3459 | cond << "#{Issue.table_name}.root_id = #{@issue.root_id} AND #{Issue.table_name}.lft >= #{@issue.lft} AND #{Issue.table_name}.rgt <= #{@issue.rgt}" | ||
|
r5029 | elsif @project | ||
cond << @project.project_condition(Setting.display_subprojects_issues?) | ||||
|
r1777 | end | ||
|
r6398 | |||
|
r1303 | retrieve_date_range | ||
|
r1311 | cond << ['spent_on BETWEEN ? AND ?', @from, @to] | ||
|
r1159 | |||
|
r5029 | respond_to do |format| | ||
format.html { | ||||
# Paginate results | ||||
@entry_count = TimeEntry.visible.count(:include => [:project, :issue], :conditions => cond.conditions) | ||||
@entry_pages = Paginator.new self, @entry_count, per_page_option, params['page'] | ||||
|
r6398 | @entries = TimeEntry.visible.find(:all, | ||
|
r5029 | :include => [:project, :activity, :user, {:issue => :tracker}], | ||
:conditions => cond.conditions, | ||||
:order => sort_clause, | ||||
:limit => @entry_pages.items_per_page, | ||||
:offset => @entry_pages.current.offset) | ||||
@total_hours = TimeEntry.visible.sum(:hours, :include => [:project, :issue], :conditions => cond.conditions).to_f | ||||
|
r1311 | |||
|
r5029 | render :layout => !request.xhr? | ||
} | ||||
format.api { | ||||
@entry_count = TimeEntry.visible.count(:include => [:project, :issue], :conditions => cond.conditions) | ||||
|
r5761 | @offset, @limit = api_offset_and_limit | ||
|
r6398 | @entries = TimeEntry.visible.find(:all, | ||
|
r5029 | :include => [:project, :activity, :user, {:issue => :tracker}], | ||
:conditions => cond.conditions, | ||||
:order => sort_clause, | ||||
|
r5761 | :limit => @limit, | ||
:offset => @offset) | ||||
|
r5029 | } | ||
format.atom { | ||||
entries = TimeEntry.visible.find(:all, | ||||
:include => [:project, :activity, :user, {:issue => :tracker}], | ||||
:conditions => cond.conditions, | ||||
:order => "#{TimeEntry.table_name}.created_on DESC", | ||||
:limit => Setting.feeds_limit.to_i) | ||||
render_feed(entries, :title => l(:label_spent_time)) | ||||
} | ||||
format.csv { | ||||
# Export all entries | ||||
|
r6398 | @entries = TimeEntry.visible.find(:all, | ||
|
r5029 | :include => [:project, :activity, :user, {:issue => [:tracker, :assigned_to, :priority]}], | ||
:conditions => cond.conditions, | ||||
:order => sort_clause) | ||||
send_data(entries_to_csv(@entries), :type => 'text/csv; header=present', :filename => 'timelog.csv') | ||||
} | ||||
|
r1159 | end | ||
|
r365 | end | ||
|
r6398 | |||
|
r4347 | def show | ||
respond_to do |format| | ||||
# TODO: Implement html response | ||||
format.html { render :nothing => true, :status => 406 } | ||||
|
r4352 | format.api | ||
|
r4347 | end | ||
end | ||||
|
r4125 | |||
def new | ||||
@time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) | ||||
@time_entry.attributes = params[:time_entry] | ||||
|
r6398 | |||
|
r4125 | call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | ||
render :action => 'edit' | ||||
end | ||||
|
r4130 | |||
verify :method => :post, :only => :create, :render => {:nothing => true, :status => :method_not_allowed } | ||||
def create | ||||
@time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) | ||||
@time_entry.attributes = params[:time_entry] | ||||
|
r6398 | |||
|
r4130 | call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | ||
|
r6398 | |||
|
r4130 | if @time_entry.save | ||
|
r4347 | respond_to do |format| | ||
format.html { | ||||
flash[:notice] = l(:notice_successful_update) | ||||
redirect_back_or_default :action => 'index', :project_id => @time_entry.project | ||||
} | ||||
|
r4352 | format.api { render :action => 'show', :status => :created, :location => time_entry_url(@time_entry) } | ||
|
r4347 | end | ||
|
r4130 | else | ||
|
r4347 | respond_to do |format| | ||
format.html { render :action => 'edit' } | ||||
format.api { render_validation_errors(@time_entry) } | ||||
end | ||||
|
r6398 | end | ||
|
r4130 | end | ||
|
r6398 | |||
|
r365 | def edit | ||
|
r4134 | @time_entry.attributes = params[:time_entry] | ||
|
r6398 | |||
|
r4134 | call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | ||
end | ||||
verify :method => :put, :only => :update, :render => {:nothing => true, :status => :method_not_allowed } | ||||
def update | ||||
|
r365 | @time_entry.attributes = params[:time_entry] | ||
|
r6398 | |||
|
r2675 | call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | ||
|
r6398 | |||
|
r4134 | if @time_entry.save | ||
|
r4347 | respond_to do |format| | ||
format.html { | ||||
flash[:notice] = l(:notice_successful_update) | ||||
redirect_back_or_default :action => 'index', :project_id => @time_entry.project | ||||
} | ||||
format.api { head :ok } | ||||
end | ||||
|
r4134 | else | ||
|
r4347 | respond_to do |format| | ||
format.html { render :action => 'edit' } | ||||
format.api { render_validation_errors(@time_entry) } | ||||
end | ||||
|
r6398 | end | ||
|
r365 | end | ||
|
r4134 | |||
|
r5193 | def bulk_edit | ||
@available_activities = TimeEntryActivity.shared.active | ||||
@custom_fields = TimeEntry.first.available_custom_fields | ||||
end | ||||
def bulk_update | ||||
attributes = parse_params_for_bulk_time_entry_attributes(params) | ||||
unsaved_time_entry_ids = [] | ||||
@time_entries.each do |time_entry| | ||||
time_entry.reload | ||||
time_entry.attributes = attributes | ||||
call_hook(:controller_time_entries_bulk_edit_before_save, { :params => params, :time_entry => time_entry }) | ||||
unless time_entry.save | ||||
# Keep unsaved time_entry ids to display them in flash error | ||||
unsaved_time_entry_ids << time_entry.id | ||||
end | ||||
end | ||||
set_flash_from_bulk_time_entry_save(@time_entries, unsaved_time_entry_ids) | ||||
|
r5196 | redirect_back_or_default({:controller => 'timelog', :action => 'index', :project_id => @projects.first}) | ||
|
r5193 | end | ||
|
r4136 | verify :method => :delete, :only => :destroy, :render => {:nothing => true, :status => :method_not_allowed } | ||
|
r1235 | def destroy | ||
|
r6398 | @time_entries.each do |t| | ||
|
r5196 | begin | ||
unless t.destroy && t.destroyed? | ||||
respond_to do |format| | ||||
format.html { | ||||
flash[:error] = l(:notice_unable_delete_time_entry) | ||||
redirect_to :back | ||||
} | ||||
format.api { render_validation_errors(t) } | ||||
end | ||||
|
r5198 | return | ||
|
r5196 | end | ||
rescue ::ActionController::RedirectBackError | ||||
redirect_to :action => 'index', :project_id => @projects.first | ||||
|
r5198 | return | ||
|
r4347 | end | ||
|
r3691 | end | ||
|
r5196 | |||
respond_to do |format| | ||||
format.html { | ||||
flash[:notice] = l(:notice_successful_delete) | ||||
redirect_back_or_default(:action => 'index', :project_id => @projects.first) | ||||
} | ||||
format.api { head :ok } | ||||
end | ||||
|
r1235 | end | ||
|
r365 | |||
private | ||||
|
r4296 | def find_time_entry | ||
@time_entry = TimeEntry.find(params[:id]) | ||||
unless @time_entry.editable_by?(User.current) | ||||
render_403 | ||||
return false | ||||
end | ||||
@project = @time_entry.project | ||||
rescue ActiveRecord::RecordNotFound | ||||
render_404 | ||||
end | ||||
|
r5193 | def find_time_entries | ||
@time_entries = TimeEntry.find_all_by_id(params[:id] || params[:ids]) | ||||
raise ActiveRecord::RecordNotFound if @time_entries.empty? | ||||
@projects = @time_entries.collect(&:project).compact.uniq | ||||
@project = @projects.first if @projects.size == 1 | ||||
rescue ActiveRecord::RecordNotFound | ||||
render_404 | ||||
end | ||||
def set_flash_from_bulk_time_entry_save(time_entries, unsaved_time_entry_ids) | ||||
if unsaved_time_entry_ids.empty? | ||||
flash[:notice] = l(:notice_successful_update) unless time_entries.empty? | ||||
else | ||||
flash[:error] = l(:notice_failed_to_save_time_entries, | ||||
:count => unsaved_time_entry_ids.size, | ||||
:total => time_entries.size, | ||||
:ids => '#' + unsaved_time_entry_ids.join(', #')) | ||||
end | ||||
end | ||||
|
r365 | def find_project | ||
|
r4397 | if (issue_id = (params[:issue_id] || params[:time_entry] && params[:time_entry][:issue_id])).present? | ||
|
r4347 | @issue = Issue.find(issue_id) | ||
|
r365 | @project = @issue.project | ||
|
r4397 | elsif (project_id = (params[:project_id] || params[:time_entry] && params[:time_entry][:project_id])).present? | ||
|
r4347 | @project = Project.find(project_id) | ||
|
r365 | else | ||
render_404 | ||||
return false | ||||
end | ||||
|
r1235 | rescue ActiveRecord::RecordNotFound | ||
render_404 | ||||
|
r365 | end | ||
|
r6398 | |||
|
r1777 | def find_optional_project | ||
if !params[:issue_id].blank? | ||||
@issue = Issue.find(params[:issue_id]) | ||||
@project = @issue.project | ||||
elsif !params[:project_id].blank? | ||||
@project = Project.find(params[:project_id]) | ||||
end | ||||
deny_access unless User.current.allowed_to?(:view_time_entries, @project, :global => true) | ||||
end | ||||
|
r6398 | |||
|
r1304 | # Retrieves the date range based on predefined ranges or specific from/to param dates | ||
|
r1303 | def retrieve_date_range | ||
@free_period = false | ||||
@from, @to = nil, nil | ||||
if params[:period_type] == '1' || (params[:period_type].nil? && !params[:period].nil?) | ||||
case params[:period].to_s | ||||
when 'today' | ||||
@from = @to = Date.today | ||||
when 'yesterday' | ||||
@from = @to = Date.today - 1 | ||||
when 'current_week' | ||||
@from = Date.today - (Date.today.cwday - 1)%7 | ||||
@to = @from + 6 | ||||
when 'last_week' | ||||
@from = Date.today - 7 - (Date.today.cwday - 1)%7 | ||||
@to = @from + 6 | ||||
when '7_days' | ||||
@from = Date.today - 7 | ||||
@to = Date.today | ||||
when 'current_month' | ||||
@from = Date.civil(Date.today.year, Date.today.month, 1) | ||||
@to = (@from >> 1) - 1 | ||||
when 'last_month' | ||||
@from = Date.civil(Date.today.year, Date.today.month, 1) << 1 | ||||
@to = (@from >> 1) - 1 | ||||
when '30_days' | ||||
@from = Date.today - 30 | ||||
@to = Date.today | ||||
when 'current_year' | ||||
@from = Date.civil(Date.today.year, 1, 1) | ||||
@to = Date.civil(Date.today.year, 12, 31) | ||||
end | ||||
elsif params[:period_type] == '2' || (params[:period_type].nil? && (!params[:from].nil? || !params[:to].nil?)) | ||||
begin; @from = params[:from].to_s.to_date unless params[:from].blank?; rescue; end | ||||
begin; @to = params[:to].to_s.to_date unless params[:to].blank?; rescue; end | ||||
@free_period = true | ||||
else | ||||
# default | ||||
end | ||||
|
r6398 | |||
|
r1303 | @from, @to = @to, @from if @from && @to && @from > @to | ||
|
r3973 | @from ||= (TimeEntry.earilest_date_for_project(@project) || Date.today) | ||
@to ||= (TimeEntry.latest_date_for_project(@project) || Date.today) | ||||
|
r1303 | end | ||
|
r3711 | |||
|
r5193 | def parse_params_for_bulk_time_entry_attributes(params) | ||
attributes = (params[:time_entry] || {}).reject {|k,v| v.blank?} | ||||
attributes.keys.each {|k| attributes[k] = '' if attributes[k] == 'none'} | ||||
attributes[:custom_field_values].reject! {|k,v| v.blank?} if attributes[:custom_field_values] | ||||
attributes | ||||
end | ||||
|
r365 | end | ||