Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/system_notes/time_tracking_service.rb')
-rw-r--r--app/services/system_notes/time_tracking_service.rb71
1 files changed, 66 insertions, 5 deletions
diff --git a/app/services/system_notes/time_tracking_service.rb b/app/services/system_notes/time_tracking_service.rb
index a9b1f6d3d37..68df52a03c7 100644
--- a/app/services/system_notes/time_tracking_service.rb
+++ b/app/services/system_notes/time_tracking_service.rb
@@ -2,8 +2,9 @@
module SystemNotes
class TimeTrackingService < ::SystemNotes::BaseService
- # Called when the due_date of a Noteable is changed
+ # Called when the start_date or due_date of an Issue/WorkItem is changed
#
+ # start_date - Start date being assigned, or nil
# due_date - Due date being assigned, or nil
#
# Example Note text:
@@ -11,14 +12,23 @@ module SystemNotes
# "removed due date"
#
# "changed due date to September 20, 2018"
+
+ # "changed start date to September 20, 2018 and changed due date to September 25, 2018"
#
# Returns the created Note object
- def change_due_date(due_date)
- body = due_date ? "changed due date to #{due_date.to_s(:long)}" : 'removed due date'
+ def change_start_date_or_due_date(changed_dates = {})
+ return if changed_dates.empty?
+
+ # Using instance_of because WorkItem < Issue. We don't want to track work item updates as issue updates
+ if noteable.instance_of?(Issue) && changed_dates.key?('due_date')
+ issue_activity_counter.track_issue_due_date_changed_action(author: author)
+ end
- issue_activity_counter.track_issue_due_date_changed_action(author: author) if noteable.is_a?(Issue)
+ work_item_activity_counter.track_work_item_date_changed_action(author: author) if noteable.is_a?(WorkItem)
- create_note(NoteSummary.new(noteable, project, author, body, action: 'due_date'))
+ create_note(
+ NoteSummary.new(noteable, project, author, changed_date_body(changed_dates), action: 'start_date_or_due_date')
+ )
end
# Called when the estimated time of a Noteable is changed
@@ -76,6 +86,32 @@ module SystemNotes
create_note(NoteSummary.new(noteable, project, author, body, action: 'time_tracking'))
end
+ # Called when a timelog is added to an issuable
+ #
+ # timelog - Added timelog
+ #
+ # Example Note text:
+ #
+ # "subtracted 1h 15m of time spent"
+ #
+ # "added 2h 30m of time spent"
+ #
+ # Returns the created Note object
+ def created_timelog(timelog)
+ time_spent = timelog.time_spent
+ spent_at = timelog.spent_at&.to_date
+ parsed_time = Gitlab::TimeTrackingFormatter.output(time_spent.abs)
+ action = time_spent > 0 ? 'added' : 'subtracted'
+
+ text_parts = ["#{action} #{parsed_time} of time spent"]
+ text_parts << "at #{spent_at}" if spent_at && spent_at != DateTime.current.to_date
+ body = text_parts.join(' ')
+
+ issue_activity_counter.track_issue_time_spent_changed_action(author: author) if noteable.is_a?(Issue)
+
+ create_note(NoteSummary.new(noteable, project, author, body, action: 'time_tracking'))
+ end
+
def remove_timelog(timelog)
time_spent = timelog.time_spent
spent_at = timelog.spent_at&.to_date
@@ -90,8 +126,33 @@ module SystemNotes
private
+ def changed_date_body(changed_dates)
+ %w[start_date due_date].each_with_object([]) do |date_field, word_array|
+ next unless changed_dates.key?(date_field)
+
+ word_array << 'and' if word_array.any?
+
+ word_array << message_for_changed_date(changed_dates, date_field)
+ end.join(' ')
+ end
+
+ def message_for_changed_date(changed_dates, date_key)
+ changed_date = changed_dates[date_key].last
+ readable_date = date_key.humanize.downcase
+
+ if changed_date.nil?
+ "removed #{readable_date}"
+ else
+ "changed #{readable_date} to #{changed_date.to_s(:long)}"
+ end
+ end
+
def issue_activity_counter
Gitlab::UsageDataCounters::IssueActivityUniqueCounter
end
+
+ def work_item_activity_counter
+ Gitlab::UsageDataCounters::WorkItemActivityUniqueCounter
+ end
end
end