BigW Consortium Gitlab

issue_formatter.rb 1.5 KB
Newer Older
1 2 3 4 5
module Gitlab
  module GithubImport
    class IssueFormatter < BaseFormatter
      def attributes
        {
6
          iid: number,
7
          project: project,
8
          milestone: milestone,
9 10 11 12 13 14
          title: raw_data.title,
          description: description,
          state: state,
          author_id: author_id,
          assignee_id: assignee_id,
          created_at: raw_data.created_at,
15
          updated_at: raw_data.updated_at
16 17 18 19 20 21 22
        }
      end

      def has_comments?
        raw_data.comments > 0
      end

23 24 25 26 27 28
      def project_association
        :issues
      end

      def find_condition
        { iid: number }
29 30
      end

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
      def number
        raw_data.number
      end

      def valid?
        raw_data.pull_request.nil?
      end

      private

      def assigned?
        raw_data.assignee.present?
      end

      def assignee_id
        if assigned?
47
          gitlab_user_id(raw_data.assignee.id)
48 49 50 51 52 53 54 55
        end
      end

      def author
        raw_data.user.login
      end

      def author_id
56
        gitlab_author_id || project.creator_id
57 58 59 60 61 62 63
      end

      def body
        raw_data.body || ""
      end

      def description
64 65 66 67 68
        if gitlab_author_id
          body
        else
          formatter.author_line(author) + body
        end
69 70
      end

71 72 73 74 75 76
      def milestone
        if raw_data.milestone.present?
          project.milestones.find_by(iid: raw_data.milestone.number)
        end
      end

77 78 79 80 81 82
      def state
        raw_data.state == 'closed' ? 'closed' : 'opened'
      end
    end
  end
end