From 9f494348866eb86dc74d7e5f4a2a959816eb5266 Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Wed, 5 Nov 2014 16:29:04 +0200 Subject: [PATCH] remove unused file --- changelog_generator.rb | 130 +++++++++++++++++++++++++++++++++++++---- log_generator.rb | 130 ----------------------------------------- 2 files changed, 120 insertions(+), 140 deletions(-) mode change 100755 => 100644 changelog_generator.rb delete mode 100644 log_generator.rb diff --git a/changelog_generator.rb b/changelog_generator.rb old mode 100755 new mode 100644 index 44c8c83..d015137 --- a/changelog_generator.rb +++ b/changelog_generator.rb @@ -1,19 +1,129 @@ -#!/usr/bin/env ruby -# encoding: UTF-8 - -require_relative 'log_generator' +require_relative 'constants' require_relative 'parser' +require 'github_api' +require 'json' +require 'httparty' -def run_generator options - generator = LogGenerator.new(options) - prev_tag = generator.find_prev_tag +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 + 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 'All pull requests:' + # json.each { |dict| + # p "##{dict[:number]} - #{dict[:title]} (#{dict[:closed_at]})" + # } + end + + json + + end + + def compund_changelog_for_last_tag + if @options[:verbose] + puts 'Generating changelog:' + end + log = '' + prev_tag = self.all_tags[1] + last_tag = self.all_tags[0] + + log += self.generate_log_between_tags(prev_tag, last_tag) + puts log + File.open('output.txt', 'w') { |file| file.write(log) } + + 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 + 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(prev_tag, last_tag) + + last_tag_name = last_tag['name'] + log = '' + prev_tag_time = self.get_time_of_tag(prev_tag) + pull_requests = self.get_all_closed_pull_requests + + pull_requests.delete_if { |req| + t = Time.parse(req[:closed_at]).utc + t < prev_tag_time + } + + log += "## [#{last_tag_name}] (https://github.com/#{$github_user}/#{$github_repo_name}/tree/#{last_tag_name})\n" + + time_string = prev_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) + github_git_data_commits_get = @github.git_data.commits.get $github_user, $github_repo_name, prev_tag['commit']['sha'] + time_string = github_git_data_commits_get['committer']['date'] + Time.parse(time_string) + + end - generator.compund_changelog(prev_tag) end if __FILE__ == $0 - options = Parser.new.options - run_generator(options) + log_generator = ChangelogGenerator.new + + log_generator.compund_changelog_for_last_tag + + # log_generator.generate_log_between_tags(tags[1], tags[2]) end \ No newline at end of file diff --git a/log_generator.rb b/log_generator.rb deleted file mode 100644 index c261a7c..0000000 --- a/log_generator.rb +++ /dev/null @@ -1,130 +0,0 @@ -require_relative 'constants' -require 'github_api' -require 'json' -require 'httparty' - -class LogGenerator - - attr_accessor :options, :all_tags - - def initialize(options = {}) - @options = options - if $oauth_token - @github = Github.new oauth_token: $oauth_token - else - @github = Github.new - end - @all_tags = self.get_all_tags - 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 find_prev_tag - self.all_tags[1] - 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 'All pull requests:' - # json.each { |dict| - # p "##{dict[:number]} - #{dict[:title]} (#{dict[:closed_at]})" - # } - end - - json - - end - - def compund_changelog(prev_tag) - if @options[:verbose] - puts 'Generating changelog:' - end - log = '' - last_tag = self.all_tags[0] - - log += self.generate_log_between_tags(prev_tag, last_tag) - puts log - File.open('output.txt', 'w') { |file| file.write(log) } - - 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 - 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(prev_tag, last_tag) - - last_tag_name = last_tag['name'] - log = '' - prev_tag_time = self.get_time_of_tag(prev_tag) - pull_requests = self.get_all_closed_pull_requests - - pull_requests.delete_if { |req| - t = Time.parse(req[:closed_at]).utc - t < prev_tag_time - } - - log += "## [#{last_tag_name}] (https://github.com/#{$github_user}/#{$github_repo_name}/tree/#{last_tag_name})\n" - - time_string = prev_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) - github_git_data_commits_get = @github.git_data.commits.get $github_user, $github_repo_name, prev_tag['commit']['sha'] - time_string = github_git_data_commits_get['committer']['date'] - Time.parse(time_string) - - end - -end - -if __FILE__ == $0 - - log_generator = LogGenerator.new({:verbose => true}) - - tags = log_generator.all_tags - - log_generator.generate_log_between_tags(tags[1], tags[2]) -end \ No newline at end of file