summaryrefslogtreecommitdiff
path: root/lib/gitlab/url_builder.rb
blob: 877488d847174ef3a59ee91493f41a3006eb108d (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
module Gitlab
  class UrlBuilder
    include Rails.application.routes.url_helpers

    def initialize(type)
      @type = type
    end

    def build(id)
      case @type
      when :issue
        issue_url(id)
      end
    end

    private

    def issue_url(id)
      issue = Issue.find(id)
      project_issue_url(id: issue.iid,
                        project_id: issue.project,
                        host: Gitlab.config.gitlab['url'])
    end
  end
end