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

client.rb « bitbucket « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fa44506374a6b0d6d439d4bb45c97a4f0d8df2a (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
module Bitbucket
  class Client
    def initialize(options = {})
      @connection = Connection.new(options)
    end

    def issues(repo)
      path = "/repositories/#{repo}/issues"
      paginator = Paginator.new(connection, path, :issue)

      Collection.new(paginator)
    end

    def issue_comments(repo, issue_id)
      path = "/repositories/#{repo}/issues/#{issue_id}/comments"
      paginator = Paginator.new(connection, path, :url)

      Collection.new(paginator).map do |comment_url|
        Representation::Comment.new(connection.get(comment_url.to_s))
      end
    end

    def pull_requests(repo)
      path = "/repositories/#{repo}/pullrequests?state=ALL"
      paginator = Paginator.new(connection, path, :pull_request)

      Collection.new(paginator)
    end

    def pull_request_comments(repo, pull_request)
      path = "/repositories/#{repo}/pullrequests/#{pull_request}/comments"
      paginator = Paginator.new(connection, path, :pull_request_comment)

      Collection.new(paginator)
    end

    def pull_request_diff(repo, pull_request)
      path = "/repositories/#{repo}/pullrequests/#{pull_request}/diff"

      connection.get(path)
    end

    def repo(name)
      parsed_response = connection.get("/repositories/#{name}")
      Representation::Repo.new(parsed_response)
    end

    def repos
      path = "/repositories/#{user.username}"
      paginator = Paginator.new(connection, path, :repo)

      Collection.new(paginator)
    end

    def user
      @user ||= begin
        parsed_response = connection.get('/user')
        Representation::User.new(parsed_response)
      end
    end

    private

    attr_reader :connection
  end
end