summaryrefslogtreecommitdiff
path: root/lib/bitbucket_server/representation/repo.rb
blob: f4bdb277d28b34f0f7189b53bcb03ca28c2b75a6 (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
module BitbucketServer
  module Representation
    class Repo < Representation::Base
      attr_reader :owner, :slug

      def initialize(raw)
        super(raw)
      end

      def owner
        project['name']
      end

      def slug
        raw['slug']
      end

      def clone_url(token = nil)
        url = raw['links']['clone'].find { |link| link['name'].starts_with?('http') }.fetch('href')

        if token.present?
          clone_url = URI.parse(url)
          clone_url.user = "x-token-auth:#{token}"
          clone_url.to_s
        else
          url
        end
      end

      def description
        project['description']
      end

      def full_name
        "#{owner}/#{name}"
      end

      def issues_enabled?
        true
      end

      def name
        raw['name']
      end

      def valid?
        raw['scmId'] == 'git'
      end

      def has_wiki?
        false
      end

      def visibility_level
        if project['public']
          Gitlab::VisibilityLevel::PUBLIC
        else
          Gitlab::VisibilityLevel::PRIVATE
        end
      end

      def project
        raw['project']
      end

      def to_s
        full_name
      end
    end
  end
end