BigW Consortium Gitlab

changelog 5.39 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/env ruby
#
# Generate a changelog entry file in the correct location.
#
# Automatically stages the file and amends the previous commit if the `--amend`
# argument is used.

require 'optparse'
require 'yaml'

Options = Struct.new(
  :amend,
  :author,
  :dry_run,
15
  :force,
16
  :merge_request,
17 18
  :title,
  :type
19
)
20
INVALID_TYPE = -1
21 22

class ChangelogOptionParser
23 24 25 26 27 28 29 30
  Type = Struct.new(:name, :description)
  TYPES = [
    Type.new('added', 'New feature'),
    Type.new('fixed', 'Bug fix'),
    Type.new('changed', 'Feature change'),
    Type.new('deprecated', 'New deprecation'),
    Type.new('removed', 'Feature removal'),
    Type.new('security', 'Security fix'),
31
    Type.new('performance', 'Performance improvement'),
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    Type.new('other', 'Other')
  ].freeze
  TYPES_OFFSET = 1

  class << self
    def parse(argv)
      options = Options.new

      parser = OptionParser.new do |opts|
        opts.banner = "Usage: #{__FILE__} [options] [title]\n\n"

        # Note: We do not provide a shorthand for this in order to match the `git
        # commit` interface
        opts.on('--amend', 'Amend the previous commit') do |value|
          options.amend = value
        end

        opts.on('-f', '--force', 'Overwrite an existing entry') do |value|
          options.force = value
        end

        opts.on('-m', '--merge-request [integer]', Integer, 'Merge Request ID') do |value|
          options.merge_request = value
        end

        opts.on('-n', '--dry-run', "Don't actually write anything, just print") do |value|
          options.dry_run = value
        end

        opts.on('-u', '--git-username', 'Use Git user.name configuration as the author') do |value|
          options.author = git_user_name if value
        end

        opts.on('-t', '--type [string]', String, "The category of the change, valid options are: #{TYPES.map(&:name).join(', ')}") do |value|
          options.type = parse_type(value)
        end

        opts.on('-h', '--help', 'Print help message') do
          $stdout.puts opts
          exit
        end
      end
74

75
      parser.parse!(argv)
76

77 78
      # Title is everything that remains, but let's clean it up a bit
      options.title = argv.join(' ').strip.squeeze(' ').tr("\r\n", '')
79

80 81
      options
    end
82

83 84
    def read_type
      read_type_message
85

86 87
      type = TYPES[$stdin.getc.to_i - TYPES_OFFSET]
      assert_valid_type!(type)
88

89 90 91 92
      type.name
    end

    private
93

94 95 96
    def parse_type(name)
      type_found = TYPES.find do |type|
        type.name == name
97
      end
98
      type_found ? type_found.name : INVALID_TYPE
99 100
    end

101 102 103 104 105 106 107
    def read_type_message
      $stdout.puts "\n>> Please specify the index for the category of your change:"
      TYPES.each_with_index do |type, index|
        $stdout.puts "#{index + TYPES_OFFSET}. #{type.description}"
      end
      $stdout.print "\n?> "
    end
108

109 110 111 112 113 114
    def assert_valid_type!(type)
      unless type
        $stderr.puts "Invalid category index, please select an index between 1 and #{TYPES.length}"
        exit 1
      end
    end
115

116 117 118
    def git_user_name
      %x{git config user.name}.strip
    end
119 120 121 122 123 124 125 126 127 128 129
  end
end

class ChangelogEntry
  attr_reader :options

  def initialize(options)
    @options = options

    assert_feature_branch!
    assert_title!
130 131 132 133 134
    assert_new_file!

    # Read type from $stdin unless is already set
    options.type ||= ChangelogOptionParser.read_type
    assert_valid_type!
135 136 137

    $stdout.puts "\e[32mcreate\e[0m #{file_path}"
    $stdout.puts contents
138

139 140 141 142 143 144
    unless options.dry_run
      write
      amend_commit if options.amend
    end
  end

145 146
  private

147
  def contents
148
    yaml_content = YAML.dump(
149 150
      'title'         => title,
      'merge_request' => options.merge_request,
151 152
      'author'        => options.author,
      'type'          => options.type
153
    )
154
    remove_trailing_whitespace(yaml_content)
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
  end

  def write
    File.write(file_path, contents)
  end

  def amend_commit
    %x{git add #{file_path}}
    exec("git commit --amend")
  end

  def fail_with(message)
    $stderr.puts "\e[31merror\e[0m #{message}"
    exit 1
  end

  def assert_feature_branch!
    return unless branch_name == 'master'

    fail_with "Create a branch first!"
  end

  def assert_new_file!
    return unless File.exist?(file_path)
179
    return if options.force
180

181
    fail_with "#{file_path} already exists! Use `--force` to overwrite."
182 183 184 185 186 187 188 189 190
  end

  def assert_title!
    return if options.title.length > 0 || options.amend

    fail_with "Provide a title for the changelog entry or use `--amend`" \
      " to use the title from the previous commit."
  end

191 192 193 194 195 196
  def assert_valid_type!
    return unless options.type && options.type == INVALID_TYPE

    fail_with 'Invalid category given!'
  end

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
  def title
    if options.title.empty?
      last_commit_subject
    else
      options.title
    end
  end

  def last_commit_subject
    %x{git log --format="%s" -1}.strip
  end

  def file_path
    File.join(
      unreleased_path,
      branch_name.gsub(/[^\w-]/, '-') << '.yml'
    )
  end

  def unreleased_path
    File.join('changelogs', 'unreleased').tap do |path|
      path << '-ee' if ee?
    end
  end

  def ee?
    @ee ||= File.exist?(File.expand_path('../CHANGELOG-EE.md', __dir__))
  end

  def branch_name
227
    @branch_name ||= %x{git symbolic-ref --short HEAD}.strip
228
  end
229 230 231 232

  def remove_trailing_whitespace(yaml_content)
    yaml_content.gsub(/ +$/, '')
  end
233 234 235 236 237 238 239 240
end

if $0 == __FILE__
  options = ChangelogOptionParser.parse(ARGV)
  ChangelogEntry.new(options)
end

# vim: ft=ruby