Class: Cobench::Pulls

Inherits:
Object
  • Object
show all
Defined in:
lib/cobench/metrics/pulls.rb

Overview

Pulls in GitHub API.

Author

Yegor Bugayenko ([email protected])

Copyright

Copyright © 2022 Yegor Bugayenko

License

MIT

Instance Method Summary collapse

Constructor Details

#initialize(api, user, opts) ⇒ Pulls

Returns a new instance of Pulls.



29
30
31
32
33
# File 'lib/cobench/metrics/pulls.rb', line 29

def initialize(api, user, opts)
  @api = api
  @user = user
  @opts = opts
end

Instance Method Details

#take(loog) ⇒ Object



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
# File 'lib/cobench/metrics/pulls.rb', line 35

def take(loog)
  from = (Time.now - (60 * 60 * 24 * @opts[:days])).strftime('%Y-%m-%d')
  q = "in:comments type:pr author:#{@user} is:merged merged:>#{from}"
  json = @api.search_issues(q)
  loog.debug("Found #{json.total_count} pull requests")
  hoc = 0
  orgs = []
  total = json.items.count do |p|
    pr = p.pull_request.url.split('/')[-1]
    repo = p.repository_url.split('/')[-2..-1].join('/')
    next unless Cobench::Match.new(@opts, loog).matches?(repo)
    orgs << p.repository_url.split('/')[-2]
    pr_json = @api.pull_request(repo, pr)
    hocs = pr_json.additions + pr_json.deletions
    hoc += hocs
    loog.debug("Including #{repo}##{pr} with #{hocs}")
  end
  [
    {
      meta: true,
      title: 'Orgs',
      list: orgs
    },
    {
      title: 'Pulls',
      total: total,
      href: Iri.new('https://github.com/search').add(q: q)
    },
    {
      title: 'HoC',
      total: hoc,
      href: ''
    }
  ]
end