summaryrefslogtreecommitdiff
path: root/lib/gitlab/url_builder.rb
blob: e7153cc322566f3738ae5eacb9b79d65f798c185 (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
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)
      namespace_project_issue_url(namespace_id: issue.project.namespace,
                                  id: issue.iid,
                                  project_id: issue.project,
                                  host: Gitlab.config.gitlab['url'])
    end
  end
end