Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
require "octokit"
module Lita
module GithubPrList
class PullRequest
attr_accessor :github_client, :github_organization, :github_pull_requests, :response
def initialize(params = {})
self.response = params.fetch(:response, nil)
github_token = params.fetch(:github_token, nil)
self.github_organization = params.fetch(:github_organization, nil)
self.github_pull_requests = []
raise "invalid params in #{self.class.name}" if response.nil? || github_token.nil? || github_organization.nil?
self.github_client = Octokit::Client.new(access_token: github_token, auto_paginate: true)
end
def list
get_pull_requests
build_summary
end
private
def get_pull_requests
# Grab the issues and sort out the pull request issues by repos name
issues = github_client.org_issues(github_organization, filter: 'all')
issues.sort! { |a,b| a.repository.name.downcase <=> b.repository.name.downcase }
issues.each do |i|
github_pull_requests << i if i.pull_request
end
end
def build_summary
github_pull_requests.map do |pr_issue|
status = repo_status("#{pr_issue.repository.full_name}", pr_issue)
"#{pr_issue.repository.name} #{status} #{pr_issue.title} #{pr_issue.pull_request.html_url} (#{pr_opener pr_issue})"
end
end
def repo_status(repo_full_name, issue)
status_object = Lita::GithubPrList::Status.new(comment: ":new: " + issue.body)
status = status_object.comment_status
comments(repo_full_name, issue.number).each do |c|
status = status_object.update(c.body)
end
status[:list]
end
def comments(repo_full_name, issue_number, options = nil)
github_options = options || { direction: 'asc', sort: 'created' }
github_client.issue_comments(repo_full_name, issue_number, github_options)
end
def pr_opener(pr)
pr.user.nil? ? 'unknown' : pr.user.login
end
end
end
end