Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repo.rb « representation « bitbucket_server « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e15f7e2fcee637581942ff74e0f8571b1a8aa9e (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
module BitbucketServer
  module Representation
    class Repo < Representation::Base
      def initialize(raw)
        super(raw)
      end

      def project_name
        raw.dig('project', 'name')
      end

      def owner
        project['name']
      end

      def slug
        raw['slug']
      end

      def browse_url
        raw.dig('project', 'links', 'self').first.fetch('href')
      end

      def clone_url
        raw['links']['clone'].find { |link| link['name'].starts_with?('http') }.fetch('href')
      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