gitlabhq/app/contexts/notes/load_context.rb

36 lines
1.2 KiB
Ruby
Raw Normal View History

2012-07-31 07:32:49 +02:00
module Notes
class LoadContext < BaseContext
def execute
target_type = params[:target_type]
target_id = params[:target_id]
first_id = params[:first_id]
last_id = params[:last_id]
@notes = case target_type
when "commit"
project.commit_notes(project.commit(target_id)).fresh.limit(20)
2012-07-31 07:32:49 +02:00
when "issue"
project.issues.find(target_id).notes.inc_author.fresh.limit(20)
2012-07-31 07:32:49 +02:00
when "merge_request"
project.merge_requests.find(target_id).notes.inc_author.fresh.limit(20)
when "snippet"
project.snippets.find(target_id).notes.fresh
when "wall"
# this is the only case, where the order is DESC
project.common_notes.order("created_at DESC").limit(50)
2012-07-31 07:32:49 +02:00
when "wiki"
project.wikis.reverse.map {|w| w.notes.fresh }.flatten[0..20]
2012-07-31 07:32:49 +02:00
end
@notes = if last_id
@notes.where("id < ?", last_id)
2012-07-31 07:32:49 +02:00
elsif first_id
@notes.where("id > ?", first_id)
2012-07-31 07:32:49 +02:00
else
@notes
end
end
end
end