github-changelog-generator/lib/github_changelog_generator/parser.rb

92 lines
3.4 KiB
Ruby
Raw Normal View History

#!/usr/bin/env ruby
require 'optparse'
require 'PP'
2014-11-17 15:54:13 +00:00
require_relative 'version'
2014-11-17 15:54:13 +00:00
module GitHubChangelogGenerator
class Parser
def self.parse_options
2014-11-19 14:23:54 +00:00
options = {:tag1 => nil, :tag2 => nil, :format => '%d/%m/%y', :output => 'CHANGELOG.md', :labels => %w(bug enhancement), :pulls => true, :issues => true, :verbose => true, :add_issues_wo_labels => true, :merge_prefix => '*Merged pull-request:* ', :author => true, :pull_request_labels => nil}
2014-11-17 15:54:13 +00:00
parser = OptionParser.new { |opts|
opts.banner = 'Usage: changelog_generator [options]'
opts.on('-u', '--user [USER]', 'Username of the owner of target GitHub repo') do |last|
options[:user] = last
end
opts.on('-p', '--project [PROJECT]', 'Name of project on GitHub') do |last|
options[:project] = last
end
2014-11-24 19:33:03 +00:00
opts.on('-t', '--token [TOKEN]', 'To make more than 50 requests per hour your GitHub token required. You can generate it here: https://github.com/settings/tokens/new') do |last|
2014-11-17 15:54:13 +00:00
options[:token] = last
end
opts.on('--[no-]verbose', 'Run verbosely. Default is true') do |v|
options[:verbose] = v
end
opts.on('--[no-]issues', 'Include closed issues to changelog. Default is true') do |v|
options[:issues] = v
end
opts.on('--[no-]issues-without-labels', 'Include closed issues without any labels to changelog. Default is true') do |v|
options[:add_issues_wo_labels] = v
end
opts.on('--[no-]pull-requests', 'Include pull-requests to changelog. Default is true') do |v|
options[:pulls] = v
end
opts.on('--[no-]author', 'Add author of pull-request in the end. Default is true') do |author|
options[:last] = author
end
2014-11-17 15:54:13 +00:00
opts.on('-f', '--date-format [FORMAT]', 'Date format. Default is %d/%m/%y') do |last|
options[:format] = last
end
opts.on('-o', '--output [NAME]', 'Output file. Default is CHANGELOG.md') do |last|
options[:output] = last
end
opts.on('--labels x,y,z', Array, 'Issues with that labels will be included to changelog. Default is \'bug,enhancement\'') do |list|
2014-11-17 15:54:13 +00:00
options[:labels] = list
end
2014-11-24 19:33:03 +00:00
opts.on('--filter-pull-requests x,y,z', Array, 'Pull requests only with that labels will be included to changelog.') do |list|
options[:pull_request_labels] = list
2014-11-17 15:54:13 +00:00
end
opts.on('-v', '--version', 'Print version number') do |v|
puts "Version: #{GitHubChangelogGenerator::VERSION}"
exit
end
2014-11-24 19:33:03 +00:00
opts.on('-h', '--help', 'Displays Help') do
puts opts
exit
end
2014-11-17 15:54:13 +00:00
}
parser.parse!
#udefined case with 1 parameter:
if ARGV[0] && !ARGV[1]
puts parser.banner
exit
end
2014-11-17 15:54:13 +00:00
if !options[:user] && !options[:project]
remote = `git remote -vv`.split("\n")
match = /.*(?:[:\/])((?:-|\w|\.)*)\/((?:-|\w|\.)*)\.git.*/.match(remote[0])
2014-11-17 15:54:13 +00:00
if match && match[1] && match[2]
puts "Detected user:#{match[1]}, project:#{match[2]}"
options[:user], options[:project] = match[1], match[2]
end
end
2014-11-10 12:36:27 +00:00
2014-11-17 15:54:13 +00:00
if !options[:user] || !options[:project]
puts parser.banner
exit
2014-11-10 12:36:27 +00:00
end
2014-11-17 15:54:13 +00:00
if ARGV[1]
options[:tag1] = ARGV[0]
options[:tag2] = ARGV[1]
2014-11-17 15:54:13 +00:00
end
2014-11-17 15:54:13 +00:00
options
end
end
end