summaryrefslogtreecommitdiff
path: root/app/serializers/note_entity.rb
blob: 4ccf0bca476084a938161bd4a053b851634025aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
class NoteEntity < API::Entities::Note
  include RequestAwareEntity

  expose :type

  expose :author, using: NoteUserEntity

  expose :human_access do |note|
    note.project.team.human_max_access(note.author_id)
  end

  unexpose :note, as: :body
  expose :note

  expose :redacted_note_html, as: :note_html

  expose :last_edited_at, if: -> (note, _) { note.edited? }
  expose :last_edited_by, using: NoteUserEntity, if: -> (note, _) { note.edited? }

  expose :current_user do
    expose :can_edit do |note|
      Ability.can_edit_note?(request.current_user, note)
    end
  end

  expose :resolved?, as: :resolved
  expose :resolvable?, as: :resolvable
  expose :resolved_by, using: NoteUserEntity

  expose :system_note_icon_name, if: -> (note, _) { note.system? } do |note|
    SystemNoteHelper.system_note_icon_name(note)
  end

  expose :discussion_id do |note|
    note.discussion_id(request.noteable)
  end

  expose :emoji_awardable?, as: :emoji_awardable
  expose :award_emoji, if: -> (note, _) { note.emoji_awardable? }, using: AwardEmojiEntity
  expose :toggle_award_path, if: -> (note, _) { note.emoji_awardable? } do |note|
    if note.for_personal_snippet?
      toggle_award_emoji_snippet_note_path(note.noteable, note)
    else
      toggle_award_emoji_project_note_path(note.project, note.id)
    end
  end

  expose :report_abuse_path do |note|
    new_abuse_report_path(user_id: note.author.id, ref_url: Gitlab::UrlBuilder.build(note))
  end

  expose :path do |note|
    if note.for_personal_snippet?
      snippet_note_path(note.noteable, note)
    else
      project_note_path(note.project, note)
    end
  end

  expose :resolve_path, if: -> (note, _) { note.part_of_discussion? && note.resolvable? } do |note|
    resolve_project_merge_request_discussion_path(note.project, note.noteable, note.discussion_id)
  end

  expose :resolve_with_issue_path, if: -> (note, _) { note.part_of_discussion? && note.resolvable? } do |note|
    new_project_issue_path(note.project, merge_request_to_resolve_discussions_of: note.noteable.iid, discussion_to_resolve: note.discussion_id)
  end

  expose :attachment, using: NoteAttachmentEntity, if: -> (note, _) { note.attachment? }
  expose :delete_attachment_path, if: -> (note, _) { note.attachment? } do |note|
    delete_attachment_project_note_path(note.project, note)
  end
end