4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/puppet/parser/functions/boxen_repos.rb', line 4
newfunction(:boxen_repos, :type => :rvalue) do |args|
repos_per_page = 100
token = Facter.value('github_token')
if token
client = Octokit::Client.new(:access_token => token)
else
client = Octokit::Client.new
end
repo_count = client.org(:boxen).public_repos
pages = (repo_count / repos_per_page.to_f).round
repos = []
opts = { :per_page => repos_per_page }
pages.times do |page|
opts[:page] = page + 1
repos.concat client.org_repos(:boxen, opts).map(&:name)
end
repos
end
|