-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathical-from-git-history.rb
136 lines (117 loc) · 3.55 KB
/
ical-from-git-history.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env ruby
#
# Man page doc for: git log
# http://www.kernel.org/pub/software/scm/git/docs/git-log.html
#
require 'rubygems'
require 'trollop'
require 'icalendar'
devroot = '/Users/scytacki/Development/'
author = 'scytacki'
repositories = Dir.glob('/Users/scytacki/Development/*/.git').map{|dir| File.dirname dir}
# repositories = [
# ['XPP', 'rigse'],
# ['XPP', 'rails-ref-tree'],
# ['XPP', 'rigse-rails3'],
# ['XPP', 'rigse-1.9.3'],
# ['XPP', 'sensors-hobo'],
# ['ITSISU', 'rigse-itsisu'],
# ['ITSISU', 'video-paper-builder'],
# ['CLEAR', 'mysystem_sc'],
# ['CLEAR', 'wise4-vagrant'],
# ['CLEAR', 'MySystem-Wise-Integration-WIP'],
# ['SG', 'hobo'],
# ['SG', 'hobo-matrix'],
# ['SG', 'hobo-polymorphic-list'],
# ['SG', 'Smartgraphs'],
# ['SG', 'smartgraphs-authoring'],
# ['SG', 'smartgraphs-generator'],
# ['GG', 'genigames-lc']
# ]
# commandline option parsing, trollop is much more concise than optparse
options = Trollop::options do
banner "Usage: #{$0} [options]"
opt :month, 'Month to filter results with', :type => :int
opt :year, 'Year to filter results with', :type => :int
opt :out, 'Output file to put the resulting ics', :type => :string
end
date = Date.civil(options[:year], options[:month])
# git does not include the day itself so we need to go back one day
date -= 1
date_format = '%m/%d/%Y'
month_start = date.strftime(date_format)
class Commit
attr_accessor :sha, :author_date, :commit_date, :summary, :repositories, :github_site
def initialize
@repositories = []
end
def self.parse(line)
commit = Commit.new
commit.parse(line)
commit
end
def self.find_github_site(remotes)
# look for github.com
# could be like this:
# [email protected]:concord-consortium/rigse.git
# ssh://[email protected]/scytacki/sparkletest
# https://github.com/concord-consortium/rigse.git
matches = /github.com[:\/]([^ .]*)(?:\.git| )/.match(remotes)
if matches
matches[1]
else
nil
end
end
def parse(line)
@sha, author_date_str, commit_date_str, @summary = line.split("\t");
# Tue May 8 11:00:01 2012 -0400
@author_date = DateTime.strptime(author_date_str, "%a %b %d %T %Y %z")
@commit_date = DateTime.strptime(commit_date_str, "%a %b %d %T %Y %z")
end
def line
"#{author_date} #{repositories} #{summary}"
end
def repositories_str
repositories.map{|repo| File.basename repo}.join (" ,");
end
def github_url
if github_site
"http://github.com/#{github_site}/commit/#{sha}"
end
end
end
commits = {}
repositories.each do |path|
Dir.chdir(path) do
github_site = Commit.find_github_site `git remote -v`
commit_subjects = `git log HEAD --no-merges --reverse --since='#{month_start}' --pretty=format:"%H\t%ad\t%cd\t%s%n" --author=#{author}`
commit_lines = commit_subjects.split(/\n+/)
commit_lines.each{|commit_line|
current_commit = Commit.parse(commit_line)
commit = commits[current_commit.sha]
if commit.nil?
current_commit.github_site = github_site
commit = current_commit
commits[commit.sha] = commit
end
commit.repositories << path
}
end
end
cal = Icalendar::Calendar.new
duration = 10*60
commits.values.each do |commit|
cal.event{
dtstart (commit.author_date.to_time - duration).to_datetime
dtend commit.author_date
summary "#{commit.summary}"
description "#{commit.summary} #{commit.repositories_str} #{commit.sha}"
if commit.github_url
url commit.github_url
end
}
end
File.open(options[:out], 'w') {|f|
f.write cal.to_ical
}