This commit is contained in:
Petr Korolev 2015-02-17 22:39:37 +02:00
parent 2cd6ba620d
commit c3884b9a55

View File

@ -41,6 +41,8 @@ module GitHubChangelogGenerator
@pull_requests = self.get_filtered_pull_requests @pull_requests = self.get_filtered_pull_requests
if @options[:issues] if @options[:issues]
@issues = self.get_all_issues @issues = self.get_all_issues
fetch_event_for_issues(@issues)
detect_actual_closed_dates
else else
@issues = [] @issues = []
end end
@ -48,6 +50,24 @@ module GitHubChangelogGenerator
@tag_times_hash = {} @tag_times_hash = {}
end end
def detect_actual_closed_dates
@issues.each{|issue|
closed_date = find_closed_date_by_commit(issue)
}
end
def find_closed_date_by_commit(issue)
puts issue[:number]
unless issue['events'].nil?
issue['events'].each{|event|
puts event[:event]
}
end
0
end
def print_json(json) def print_json(json)
puts JSON.pretty_generate(json) puts JSON.pretty_generate(json)
end end
@ -442,15 +462,12 @@ module GitHubChangelogGenerator
x.pull_request == nil x.pull_request == nil
} }
if @options[:verbose]
puts "Filtering issues with labels #{@options[:labels]}#{@options[:add_issues_wo_labels] ? ' and w/o labels' : ''}"
end
filtered_issues = issues.select { |issue| filtered_issues = issues.select { |issue|
#compare is there any labels from @options[:labels] array #compare is there any labels from @options[:labels] array
(issue.labels.map { |label| label.name } & @options[:labels]).any? (issue.labels.map { |label| label.name } & @options[:labels]).any?
} }
if @options[:add_issues_wo_labels] if @options[:add_issues_wo_labels]
issues_wo_labels = issues.select { issues_wo_labels = issues.select {
# add issues without any labels # add issues without any labels
@ -459,27 +476,37 @@ module GitHubChangelogGenerator
filtered_issues.concat(issues_wo_labels) filtered_issues.concat(issues_wo_labels)
end end
if @options[:verbose] if @options[:verbose]
print "Fetching events for issues...\r" puts "Filtered issues with labels #{@options[:labels]}#{@options[:add_issues_wo_labels] ? ' and w/o labels' : ''}: #{filtered_issues.count}"
end
filtered_issues
end
def fetch_event_for_issues(filtered_issues)
if @options[:verbose]
print "Fetching events for issues: 0/#{filtered_issues.count}\r"
end end
# Async fetching events: # Async fetching events:
threads = [] threads = []
filtered_issues.each{|issue| i = 0
threads << Thread.new{ filtered_issues.each { |issue|
threads << Thread.new {
obj = @github.issues.events.list user: @options[:user], repo: @options[:project], issue_number: issue['number'] obj = @github.issues.events.list user: @options[:user], repo: @options[:project], issue_number: issue['number']
issue[:events] = obj.body issue[:events] = obj.body
print "Fetching events for issues: #{i+1}/#{filtered_issues.count}\r"
i +=1
}
} }
threads.each { |thr| thr.join } threads.each { |thr| thr.join }
}
if @options[:verbose] if @options[:verbose]
puts "Fetching events for issues: Done!" puts "Fetching events for issues: Done!"
end end
filtered_issues
end end
end end