172 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env ruby
 | 
						|
 | 
						|
require_relative 'constants'
 | 
						|
require_relative 'parser'
 | 
						|
require 'github_api'
 | 
						|
require 'json'
 | 
						|
require 'httparty'
 | 
						|
 | 
						|
 | 
						|
class ChangelogGenerator
 | 
						|
 | 
						|
  attr_accessor :options, :all_tags
 | 
						|
 | 
						|
  def initialize()
 | 
						|
    @options = Parser.new.options
 | 
						|
    if $oauth_token
 | 
						|
      @github = Github.new oauth_token: $oauth_token
 | 
						|
    else
 | 
						|
      @github = Github.new
 | 
						|
    end
 | 
						|
    @all_tags = self.get_all_tags
 | 
						|
    @pull_requests = self.get_all_closed_pull_requests
 | 
						|
  end
 | 
						|
 | 
						|
  def print_json(json)
 | 
						|
    puts JSON.pretty_generate(json)
 | 
						|
  end
 | 
						|
 | 
						|
  def exec_command(cmd)
 | 
						|
    exec_cmd = "cd #{$project_path} && #{cmd}"
 | 
						|
    %x[#{exec_cmd}]
 | 
						|
  end
 | 
						|
 | 
						|
 | 
						|
  def get_all_closed_pull_requests
 | 
						|
 | 
						|
 | 
						|
    issues = @github.pull_requests.list $github_user, $github_repo_name, :state => 'closed'
 | 
						|
    json = issues.body
 | 
						|
 | 
						|
    if @options[:verbose]
 | 
						|
      puts 'Receive all pull requests'
 | 
						|
      # json.each { |dict|
 | 
						|
      #   p "##{dict[:number]} - #{dict[:title]} (#{dict[:closed_at]})"
 | 
						|
      # }
 | 
						|
    end
 | 
						|
 | 
						|
    json
 | 
						|
 | 
						|
  end
 | 
						|
 | 
						|
  def compund_changelog
 | 
						|
    if @options[:verbose]
 | 
						|
      puts 'Generating changelog:'
 | 
						|
    end
 | 
						|
    log = ''
 | 
						|
 | 
						|
    if @options[:last]
 | 
						|
      prev_tag = self.all_tags[1]
 | 
						|
      last_tag = self.all_tags[0]
 | 
						|
 | 
						|
      log += self.generate_log_between_tags(prev_tag, last_tag)
 | 
						|
    elsif @options[:tag1] && @options[:tag2]
 | 
						|
      log += self.generate_log_between_tags(@options[:tag1], @options[:tag2])
 | 
						|
    else
 | 
						|
      log += self.generate_log_for_all_tags
 | 
						|
    end
 | 
						|
 | 
						|
    puts log
 | 
						|
    File.open('output.txt', 'w') { |file| file.write(log) }
 | 
						|
 | 
						|
  end
 | 
						|
 | 
						|
  def generate_log_for_all_tags
 | 
						|
 | 
						|
  end
 | 
						|
 | 
						|
  def is_megred(number)
 | 
						|
    @github.pull_requests.merged? $github_user, $github_repo_name, number
 | 
						|
  end
 | 
						|
 | 
						|
  def get_all_merged_pull_requests
 | 
						|
    json = self.get_all_closed_pull_requests
 | 
						|
    puts 'Check if the requests is merged... (it can take a while)'
 | 
						|
 | 
						|
    json.delete_if { |req|
 | 
						|
      merged = self.is_megred(req[:number])
 | 
						|
      if @options[:verbose]
 | 
						|
        puts "##{req[:number]} #{merged ? 'merged' : 'not merged'}"
 | 
						|
      end
 | 
						|
      !merged
 | 
						|
    }
 | 
						|
  end
 | 
						|
 | 
						|
  def get_all_tags
 | 
						|
 | 
						|
    if @options[:verbose]
 | 
						|
      puts "Receive tags for repo #{$github_repo_name}"
 | 
						|
    end
 | 
						|
 | 
						|
    url = "https://api.github.com/repos/#{$github_user}/#{$github_repo_name}/tags"
 | 
						|
    response = HTTParty.get(url,
 | 
						|
                            :headers => {'Authorization' => 'token 8587bb22f6bf125454768a4a19dbcc774ea68d48',
 | 
						|
                                        'User-Agent' => 'Changelog-Generator'})
 | 
						|
 | 
						|
    json_parse = JSON.parse(response.body)
 | 
						|
  end
 | 
						|
 | 
						|
  def generate_log_between_tags(since_tag, till_tag)
 | 
						|
 | 
						|
    log = ''
 | 
						|
    since_tag_time = self.get_time_of_tag(since_tag)
 | 
						|
    till_tag_time = self.get_time_of_tag(till_tag)
 | 
						|
 | 
						|
    # if we mix up tags order - lits fix it!
 | 
						|
    if since_tag_time > till_tag_time
 | 
						|
      since_tag, till_tag = till_tag, since_tag
 | 
						|
      since_tag_time, till_tag_time = till_tag_time, since_tag_time
 | 
						|
    end
 | 
						|
 | 
						|
    since_tag_name = since_tag['name']
 | 
						|
 | 
						|
    pull_requests = @pull_requests
 | 
						|
 | 
						|
    pull_requests.delete_if { |req|
 | 
						|
      t = Time.parse(req[:closed_at]).utc
 | 
						|
 | 
						|
      true_classor_false_class = t > since_tag_time
 | 
						|
      classor_false_class = t < till_tag_time
 | 
						|
 | 
						|
      in_range = (true_classor_false_class) && (classor_false_class)
 | 
						|
      !in_range
 | 
						|
    }
 | 
						|
 | 
						|
    log += "## [#{since_tag_name}] (https://github.com/#{$github_user}/#{$github_repo_name}/tree/#{since_tag_name})\n"
 | 
						|
 | 
						|
    time_string = since_tag_time.strftime "%Y/%m/%d"
 | 
						|
    log += "#### #{time_string}\n"
 | 
						|
 | 
						|
    pull_requests.each { |dict|
 | 
						|
      merge = "#{dict[:title]} ([\\##{dict[:number]}](https://github.com/#{$github_user}/#{$github_repo_name}/pull/#{dict[:number]}))\n"
 | 
						|
      log += "- #{merge}"
 | 
						|
    }
 | 
						|
 | 
						|
    log
 | 
						|
  end
 | 
						|
 | 
						|
  def get_time_of_tag(prev_tag)
 | 
						|
 | 
						|
    if @options[:verbose]
 | 
						|
      puts "Get time for tag #{prev_tag['name']}"
 | 
						|
    end
 | 
						|
 | 
						|
    github_git_data_commits_get = @github.git_data.commits.get $github_user, $github_repo_name, prev_tag['commit']['sha']
 | 
						|
    if github_git_data_commits_get
 | 
						|
      time_string = github_git_data_commits_get['committer']['date']
 | 
						|
      Time.parse(time_string)
 | 
						|
    else
 | 
						|
      puts "Can't find tag #{prev_tag['name']} -> exit"
 | 
						|
      exit
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
end
 | 
						|
 | 
						|
if __FILE__ == $0
 | 
						|
 | 
						|
  log_generator = ChangelogGenerator.new
 | 
						|
 | 
						|
  log_generator.compund_changelog
 | 
						|
  # log_generator.generate_log_between_tags(tags[1], tags[2])
 | 
						|
end |