Skip to content
Snippets Groups Projects
notes_controller.rb 5.73 KiB
Newer Older
  • Learn to ignore specific revisions
  • class Projects::NotesController < Projects::ApplicationController
    
      include ToggleAwardEmoji
    
    
    gitlabhq's avatar
    gitlabhq committed
      # Authorize
    
      before_action :authorize_read_note!
    
      before_action :authorize_create_note!, only: [:create]
    
      before_action :authorize_admin_note!, only: [:update, :destroy]
    
      before_action :authorize_resolve_note!, only: [:resolve, :unresolve]
    
      before_action :find_current_user_notes, only: [:index]
    
    gitlabhq's avatar
    gitlabhq committed
    
    
        current_fetched_at = Time.now.to_i
    
        notes_json = { notes: [], last_fetched_at: current_fetched_at }
    
        @notes.each do |note|
    
          next if note.cross_reference_not_visible_for?(current_user)
    
          notes_json[:notes] << note_json(note)
    
    
        render json: notes_json
    
    gitlabhq's avatar
    gitlabhq committed
      def create
    
    Dmitriy Zaporozhets's avatar
    Dmitriy Zaporozhets committed
        @note = Notes::CreateService.new(project, current_user, note_params).execute
    
    gitlabhq's avatar
    gitlabhq committed
    
    
        if @note.is_a?(Note)
          Banzai::NoteRenderer.render([@note], @project, current_user)
        end
    
    
    gitlabhq's avatar
    gitlabhq committed
        respond_to do |format|
    
          format.json { render json: note_json(@note) }
    
          format.html { redirect_back_or_default }
    
    gitlabhq's avatar
    gitlabhq committed
        end
      end
    
    
        @note = Notes::UpdateService.new(project, current_user, note_params).execute(note)
    
    gitlabhq's avatar
    gitlabhq committed
    
    
        if @note.is_a?(Note)
          Banzai::NoteRenderer.render([@note], @project, current_user)
        end
    
    
    gitlabhq's avatar
    gitlabhq committed
        respond_to do |format|
    
          format.json { render json: note_json(@note) }
    
          format.html { redirect_back_or_default }
    
    gitlabhq's avatar
    gitlabhq committed
        end
      end
    
    
        if note.editable?
    
    Robert Schilling's avatar
    Robert Schilling committed
          Notes::DeleteService.new(project, current_user).execute(note)
    
        note.remove_attachment!
        note.update_attribute(:attachment, nil)
    
        return render_404 unless note.resolvable?
    
        note.resolve!(current_user)
    
    
    Douwe Maan's avatar
    Douwe Maan committed
        MergeRequests::ResolvedDiscussionNotificationService.new(project, current_user).execute(note.noteable)
    
    Douwe Maan's avatar
    Douwe Maan committed
        discussion = note.discussion
    
        render json: {
    
          resolved_by: note.resolved_by.try(:name),
    
    Douwe Maan's avatar
    Douwe Maan committed
          discussion_headline_html: (view_to_html_string('discussions/_headline', discussion: discussion) if discussion)
    
      def unresolve
        return render_404 unless note.resolvable?
    
        note.unresolve!
    
    
    Douwe Maan's avatar
    Douwe Maan committed
        discussion = note.discussion
    
    Douwe Maan's avatar
    Douwe Maan committed
          discussion_headline_html: (view_to_html_string('discussions/_headline', discussion: discussion) if discussion)
    
    Phil Hughes's avatar
    Phil Hughes committed
      end
    
    
      private
    
      def note
        @note ||= @project.notes.find(params[:id])
      end
    
      alias_method :awardable, :note
    
        render_to_string(
          "projects/notes/_note",
          layout: false,
          formats: [:html],
          locals: { note: note }
        )
      end
    
    
      def diff_discussion_html(discussion)
        return unless discussion.diff_discussion?
    
        if params[:view] == 'parallel'
    
          template = "discussions/_parallel_diff_discussion"
    
          locals =
            if params[:line_type] == 'old'
    
              { discussion_left: discussion, discussion_right: nil }
    
              { discussion_left: nil, discussion_right: discussion }
    
          template = "discussions/_diff_discussion"
          locals = { discussion: discussion }
    
        render_to_string(
    
          layout: false,
          formats: [:html],
    
      def discussion_html(discussion)
        return unless discussion.diff_discussion?
    
        render_to_string(
    
          "discussions/_discussion",
    
          layout: false,
          formats: [:html],
    
          locals: { discussion: discussion }
    
        if note.is_a?(AwardEmoji)
          {
            valid:  note.valid?,
            award:  true,
            id:     note.id,
            name:   note.name
          }
    
          Banzai::NoteRenderer.render([note], @project, current_user)
    
    
            id: note.id,
            discussion_id: note.discussion_id,
    
            html: note_html(note),
    
            award: false,
    
    Douwe Maan's avatar
    Douwe Maan committed
            discussion = note.to_discussion
    
    
            attrs.merge!(
              diff_discussion_html: diff_discussion_html(discussion),
              discussion_html: discussion_html(discussion)
            )
    
            # The discussion_id is used to add the comment to the correct discussion
            # element on the merge request page. Among other things, the discussion_id
            # contains the sha of head commit of the merge request.
            # When new commits are pushed into the merge request after the initial
            # load of the merge request page, the discussion elements will still have
            # the old discussion_ids, with the old head commit sha. The new comment,
            # however, will have the new discussion_id with the new commit sha.
            # To ensure that these new comments will still end up in the correct
            # discussion element, we also send the original discussion_id, with the
            # old commit sha, along, and fall back on this value when no discussion
            # element with the new discussion_id could be found.
            if note.new_diff_note? && note.position != note.original_position
              attrs[:original_discussion_id] = note.original_discussion_id
            end
    
            award: false,
    
      end
    
      def authorize_admin_note!
        return access_denied! unless can?(current_user, :admin_note, note)
      end
    
      def authorize_resolve_note!
        return access_denied! unless can?(current_user, :resolve_note, note)
      end
    
    
    Dmitriy Zaporozhets's avatar
    Dmitriy Zaporozhets committed
      def note_params
        params.require(:note).permit(
          :note, :noteable, :noteable_id, :noteable_type, :project_id,
    
          :attachment, :line_code, :commit_id, :type, :position
    
    
      def find_current_user_notes
        @notes = NotesFinder.new.execute(project, current_user, params)
      end
    
    gitlabhq's avatar
    gitlabhq committed
    end