Class: Cobench::Issues

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

Overview

Issues 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) ⇒ Issues

Returns a new instance of Issues.



29
30
31
32
33
# File 'lib/cobench/metrics/issues.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
# File 'lib/cobench/metrics/issues.rb', line 35

def take(loog)
  from = (Time.now - (60 * 60 * 24 * @opts[:days])).strftime('%Y-%m-%d')
  q = "in:comments type:issue author:#{@user} created:>#{from}"
  json = @api.search_issues(q)
  loog.debug("Found #{json.total_count} issues")
  total = json.items.count do |p|
    pr = p.url.split('/')[-1]
    repo = p.repository_url.split('/')[-2..-1].join('/')
    next unless Cobench::Match.new(@opts, loog).matches?(repo)
    loog.debug("Including #{repo}#{pr}")
  end
  [
    {
      title: 'Issues',
      total: total,
      href: Iri.new('https://github.com/search').add(q: q)
    }
  ]
end