timelog_controller.rb
280 lines
| 9.5 KiB
| text/x-ruby
|
RubyLexer
|
r4347 | # Redmine - project management software | ||
|
r13491 | # Copyright (C) 2006-2015 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 | ||
|
r8571 | |||
|
r5196 | before_filter :find_time_entry, :only => [:show, :edit, :update] | ||
before_filter :find_time_entries, :only => [:bulk_edit, :bulk_update, :destroy] | ||||
|
r13058 | before_filter :authorize, :only => [:show, :edit, :update, :bulk_edit, :bulk_update, :destroy] | ||
|
r8571 | |||
|
r13058 | before_filter :find_optional_project, :only => [:new, :create, :index, :report] | ||
before_filter :authorize_global, :only => [:new, :create, :index, :report] | ||||
|
r8571 | |||
|
r6077 | accept_rss_auth :index | ||
accept_api_auth :index, :show, :create, :update, :destroy | ||||
|
r6398 | |||
|
r10746 | rescue_from Query::StatementInvalid, :with => :query_statement_invalid | ||
|
r365 | helper :sort | ||
include SortHelper | ||||
|
r783 | helper :issues | ||
|
r1159 | include TimelogHelper | ||
|
r1325 | helper :custom_fields | ||
include CustomFieldsHelper | ||||
|
r10740 | helper :queries | ||
|
r11212 | include QueriesHelper | ||
|
r6398 | |||
|
r4121 | def index | ||
|
r10743 | @query = TimeEntryQuery.build_from_params(params, :project => @project, :name => '_') | ||
|
r6398 | |||
|
r10740 | sort_init(@query.sort_criteria.empty? ? [['spent_on', 'desc']] : @query.sort_criteria) | ||
sort_update(@query.sortable_columns) | ||||
|
r11814 | scope = time_entry_scope(:order => sort_clause). | ||
|
r12139 | includes(:project, :user, :issue). | ||
|
r11814 | preload(:issue => [:project, :tracker, :status, :assigned_to, :priority]) | ||
|
r6398 | |||
|
r5029 | respond_to do |format| | ||
format.html { | ||||
|
r7964 | @entry_count = scope.count | ||
|
r10909 | @entry_pages = Paginator.new @entry_count, per_page_option, params['page'] | ||
|
r11815 | @entries = scope.offset(@entry_pages.offset).limit(@entry_pages.per_page).all | ||
|
r7964 | @total_hours = scope.sum(:hours).to_f | ||
|
r1311 | |||
|
r5029 | render :layout => !request.xhr? | ||
} | ||||
format.api { | ||||
|
r7964 | @entry_count = scope.count | ||
|
r5761 | @offset, @limit = api_offset_and_limit | ||
|
r11815 | @entries = scope.offset(@offset).limit(@limit).preload(:custom_values => :custom_field).all | ||
|
r5029 | } | ||
format.atom { | ||||
|
r11815 | entries = scope.limit(Setting.feeds_limit.to_i).reorder("#{TimeEntry.table_name}.created_on DESC").all | ||
|
r5029 | render_feed(entries, :title => l(:label_spent_time)) | ||
} | ||||
format.csv { | ||||
# Export all entries | ||||
|
r11814 | @entries = scope.all | ||
|
r11218 | send_data(query_to_csv(@entries, @query, params), :type => 'text/csv; header=present', :filename => 'timelog.csv') | ||
|
r5029 | } | ||
|
r1159 | end | ||
|
r365 | end | ||
|
r6398 | |||
|
r7907 | def report | ||
|
r10743 | @query = TimeEntryQuery.build_from_params(params, :project => @project, :name => '_') | ||
|
r10740 | scope = time_entry_scope | ||
@report = Redmine::Helpers::TimeReport.new(@project, @issue, params[:criteria], params[:columns], scope) | ||||
|
r7907 | |||
respond_to do |format| | ||||
format.html { render :layout => !request.xhr? } | ||||
format.csv { send_data(report_to_csv(@report), :type => 'text/csv; header=present', :filename => 'timelog.csv') } | ||||
end | ||||
end | ||||
|
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) | ||||
|
r9016 | @time_entry.safe_attributes = params[:time_entry] | ||
|
r4125 | end | ||
|
r4130 | |||
def create | ||||
@time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) | ||||
|
r9016 | @time_entry.safe_attributes = params[:time_entry] | ||
|
r13058 | if @time_entry.project && !User.current.allowed_to?(:log_time, @time_entry.project) | ||
render_403 | ||||
return | ||||
end | ||||
|
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 { | ||||
|
r8567 | flash[:notice] = l(:notice_successful_create) | ||
if params[:continue] | ||||
|
r13058 | options = { | ||
:time_entry => { | ||||
:project_id => params[:time_entry][:project_id], | ||||
:issue_id => @time_entry.issue_id, | ||||
:activity_id => @time_entry.activity_id | ||||
}, | ||||
:back_url => params[:back_url] | ||||
} | ||||
if params[:project_id] && @time_entry.project | ||||
redirect_to new_project_time_entry_path(@time_entry.project, options) | ||||
elsif params[:issue_id] && @time_entry.issue | ||||
redirect_to new_issue_time_entry_path(@time_entry.issue, options) | ||||
|
r8571 | else | ||
|
r10754 | redirect_to new_time_entry_path(options) | ||
|
r8571 | end | ||
|
r8567 | else | ||
|
r10754 | redirect_back_or_default project_time_entries_path(@time_entry.project) | ||
|
r8567 | end | ||
|
r4347 | } | ||
|
r4352 | format.api { render :action => 'show', :status => :created, :location => time_entry_url(@time_entry) } | ||
|
r4347 | end | ||
|
r4130 | else | ||
|
r4347 | respond_to do |format| | ||
|
r8571 | format.html { render :action => 'new' } | ||
|
r4347 | format.api { render_validation_errors(@time_entry) } | ||
end | ||||
|
r6398 | end | ||
|
r4130 | end | ||
|
r6398 | |||
|
r365 | def edit | ||
|
r9016 | @time_entry.safe_attributes = params[:time_entry] | ||
|
r4134 | end | ||
def update | ||||
|
r9016 | @time_entry.safe_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) | ||||
|
r10754 | redirect_back_or_default project_time_entries_path(@time_entry.project) | ||
|
r4347 | } | ||
|
r9792 | format.api { render_api_ok } | ||
|
r4347 | 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 | ||||
|
r9016 | time_entry.safe_attributes = attributes | ||
|
r5193 | call_hook(:controller_time_entries_bulk_edit_before_save, { :params => params, :time_entry => time_entry }) | ||
unless time_entry.save | ||||
|
r11381 | logger.info "time entry could not be updated: #{time_entry.errors.full_messages}" if logger && logger.info | ||
|
r5193 | # 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) | ||||
|
r10754 | redirect_back_or_default project_time_entries_path(@projects.first) | ||
|
r5193 | end | ||
|
r1235 | def destroy | ||
|
r8975 | destroyed = TimeEntry.transaction do | ||
@time_entries.each do |t| | ||||
|
r5196 | unless t.destroy && t.destroyed? | ||
|
r8975 | raise ActiveRecord::Rollback | ||
|
r5196 | end | ||
|
r4347 | end | ||
|
r3691 | end | ||
|
r5196 | |||
respond_to do |format| | ||||
format.html { | ||||
|
r8975 | if destroyed | ||
flash[:notice] = l(:notice_successful_delete) | ||||
else | ||||
flash[:error] = l(:notice_unable_delete_time_entry) | ||||
end | ||||
|
r10754 | redirect_back_or_default project_time_entries_path(@projects.first) | ||
|
r5196 | } | ||
|
r8975 | format.api { | ||
if destroyed | ||||
|
r9792 | render_api_ok | ||
|
r8975 | else | ||
render_validation_errors(@time_entries) | ||||
end | ||||
} | ||||
|
r5196 | 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 | ||
|
r12328 | @time_entries = TimeEntry.where(:id => params[:id] || params[:ids]).all | ||
|
r5193 | 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 | ||||
|
r1777 | def find_optional_project | ||
|
r13058 | if params[:issue_id].present? | ||
|
r1777 | @issue = Issue.find(params[:issue_id]) | ||
@project = @issue.project | ||||
|
r13058 | elsif params[:project_id].present? | ||
|
r1777 | @project = Project.find(params[:project_id]) | ||
end | ||||
|
r13058 | rescue ActiveRecord::RecordNotFound | ||
render_404 | ||||
|
r1777 | end | ||
|
r6398 | |||
|
r10740 | # Returns the TimeEntry scope for index and report actions | ||
|
r11812 | def time_entry_scope(options={}) | ||
scope = @query.results_scope(options) | ||||
|
r10740 | if @issue | ||
scope = scope.on_issue(@issue) | ||||
end | ||||
scope | ||||
end | ||||
|
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 | ||