Class: Vx::ServiceConnector::Github::Repos
- Inherits:
-
Struct
- Object
- Struct
- Vx::ServiceConnector::Github::Repos
- Defined in:
- lib/vx/service_connector/github/repos.rb
Instance Attribute Summary collapse
-
#session ⇒ Object
Returns the value of attribute session.
Instance Method Summary collapse
- #organization_repositories ⇒ Object
- #organizations ⇒ Object
- #repo_to_model(repo) ⇒ Object
- #to_a ⇒ Object
- #user_repositories ⇒ Object
Instance Attribute Details
#session ⇒ Object
Returns the value of attribute session
4 5 6 |
# File 'lib/vx/service_connector/github/repos.rb', line 4 def session @session end |
Instance Method Details
#organization_repositories ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/vx/service_connector/github/repos.rb', line 14 def organization_repositories organizations.map do |org| Thread.new do session .organization_repositories(org) .select { |repo| repo. && repo..admin } .map { |repo| repo_to_model repo } end.tap do |th| th.abort_on_exception = true end end.map(&:value).flatten end |
#organizations ⇒ Object
10 11 12 |
# File 'lib/vx/service_connector/github/repos.rb', line 10 def organizations session.organizations.map(&:login) || [] end |
#repo_to_model(repo) ⇒ Object
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/vx/service_connector/github/repos.rb', line 33 def repo_to_model(repo) Model::Repo.new( repo.id, repo.full_name, repo.private, repo.rels[:ssh].href, repo.rels[:html].href, repo.description ) end |
#to_a ⇒ Object
6 7 8 |
# File 'lib/vx/service_connector/github/repos.rb', line 6 def to_a @repos ||= (user_repositories + organization_repositories) end |
#user_repositories ⇒ Object
27 28 29 30 31 |
# File 'lib/vx/service_connector/github/repos.rb', line 27 def user_repositories session.repositories.map do |repo| repo_to_model repo end end |