2014-02-25 12:15:08 -05:00
|
|
|
class NotesFinder
|
2014-04-28 06:13:29 -04:00
|
|
|
FETCH_OVERLAP = 5.seconds
|
|
|
|
|
2014-02-25 12:15:08 -05:00
|
|
|
def execute(project, current_user, params)
|
|
|
|
target_type = params[:target_type]
|
|
|
|
target_id = params[:target_id]
|
2014-04-28 10:37:19 -04:00
|
|
|
# Default to 0 to remain compatible with old clients
|
|
|
|
last_fetched_at = Time.at(params.fetch(:last_fetched_at, 0).to_i)
|
2014-02-25 12:15:08 -05:00
|
|
|
|
2014-04-28 06:13:29 -04:00
|
|
|
notes = case target_type
|
2014-02-25 12:15:08 -05:00
|
|
|
when "commit"
|
|
|
|
project.notes.for_commit_id(target_id).not_inline.fresh
|
|
|
|
when "issue"
|
|
|
|
project.issues.find(target_id).notes.inc_author.fresh
|
|
|
|
when "merge_request"
|
|
|
|
project.merge_requests.find(target_id).mr_and_commit_notes.inc_author.fresh
|
|
|
|
when "snippet"
|
|
|
|
project.snippets.find(target_id).notes.fresh
|
2014-04-28 05:53:37 -04:00
|
|
|
else
|
|
|
|
raise 'invalid target_type'
|
2014-02-25 12:15:08 -05:00
|
|
|
end
|
2014-04-28 06:13:29 -04:00
|
|
|
|
|
|
|
# Use overlapping intervals to avoid worrying about race conditions
|
|
|
|
notes.where('updated_at > ?', last_fetched_at - FETCH_OVERLAP)
|
2014-02-25 12:15:08 -05:00
|
|
|
end
|
|
|
|
end
|