This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
trachouse.rb
361 lines (321 loc) · 11.6 KB
/
trachouse.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
# Trachouse v1.0.0 fork (adds basic authentication support)
# Author: Maxim Chernyak
# Email: [email protected]
#
# This fork adds a simple trac basic authentication support.
#
# USE:
# Follow instructions in the original README below
# There are 3 more commented sections you need to edit:
# - set @trac_basic_auth to true
# - set @trac_http_user to your basic auth username
# - set @trac_http_pass to your basic auth password
#
#
#
# Original README
# -------------------------------
#
# Trachouse v1.0.0
# Trac to Lighthouse ticket importer
# Author: Shay Arnett
# Website: http://shayarnett.com/trachouse (soonish)
# Email: [email protected]
#
# You will need to obtain a copy of lighthouse.rb from the Lighthouse API
# http://forum.activereload.net/forums/6/topics/44
#
# Please read all commented sections, as most have something you will need to change directly below it
#
# USE:
#
# @tickets = populate_tickets # grabs all tickets from trac
# import_tickets(@tickets) # import tickets to lighthouse
# # profit
# # you may want to inspect @tickets or only import a couple of tickets to verify format before processing all tickets
#
# Copyright (c) 2008 Shay Arnett
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
require 'Rubygems'
require 'hpricot'
require 'open-uri'
require 'net/http'
require 'activesupport'
require 'activeresource'
require 'lighthouse'
class Ticket < ActiveResource::Base
include Lighthouse
# Lighthouse Account Name - Not your username
Lighthouse.account = 'foo_bar'
# Lighthouse api token
Lighthouse.token = 'xxxxxxxxx'
def initialize
@tickets = []
@ticket = {}
@ticket_list = []
@useragent = 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-us) AppleWebKit/523.10.6 (KHTML, like Gecko) Version/3.0.4 Safari/523.10.6'
# domain of your trac install
@domain = 'trac.domain.com'
# trac users e-mail - needed to pull full email address on ticket creator
@username = '[email protected]'
# trac users password
@password = 'users_password'
# @domain + this is the url for logging into track
@login = '/login'
# set to true if your trac is using basic http authentication (provide credentials below)
@trac_basic_auth = false
# trac http username for trac's basic authentication
@trac_http_user = 'http_user'
# trac http password for trac's basic authentication
@trac_http_pass = 'http_password'
# setup headers for grabbing cookie and tiket info
@headers = {
'Referer' => 'http://'+ @domain,
'User-Agent' => @useragent
}
# setup connection
@http = Net::HTTP.new(@domain,80)
#setup project_ids and associated trac components
# :project_id should be the lighthouse id of the project
# you want to import the tickets to
#
# :components should be an array of the trac components you wish
# to import into this project
#
# project_1 = { :project_id => 1234,
# :components => ['Core','Module 1', 'etc']}
# project_2 = { etc }
merb_core = { :project_id => 7433,
:components => [ 'Merb',
'Web Site',
'Web site',
'Documentation',
'Routing',
'Views']
}
merb_more = { :project_id => 7435,
:components => [ 'Generators',
'Rspec Harness']
}
merb_plugins = { :project_id => 7588,
:components => [ 'Plugin: DataMapper',
'Plugin: ActiveRecord',
'Plugins']
}
# add all your project hashes to @projects
#
# this could have been combined with above, but tended to be less readable
# after adding a couple projects
@projects = [ merb_core, merb_more, merb_plugins ]
end
def tag_prep(tags)
returning tags do |tag|
tag.collect! do |t|
unless tag.blank?
t.downcase!
t.gsub! /(^')|('$)/, ''
t.gsub! ' ','_'
t.gsub! /[^a-z0-9 \-_@\!']/, ''
t.strip!
t
end
end
tag.compact!
tag.uniq!
end
end
def get_project(ticket)
project_id = nil
@projects.each do |project|
project_id = project[:project_id] if project[:components].include? ticket[:component]
break unless project_id.nil?
end
return project_id
end
def build_ticket(doc, ticket_num)
# this is all based on a pretty standard trac template
# if you have done any customizing you will need to check your html
# and change the necessary Hpricot searches to pull the correct data
# build the base ticket
ticket = { :title => (doc/"h2.summary").inner_html,
:trac_url => '"Original Trac Ticket":http://' + @domain + '/ticket/' + ticket_num,
:reporter => (doc/"//td[@headers='h_reporter']").inner_html,
:priority => (doc/"//td[@headers='h_priority']").inner_html,
:component => (doc/"//td[@headers='h_component']").inner_html,
:status => (doc/"span.status").first.inner_html,
:milestone => (doc/"//td[@headers='h_milestone']").inner_html,
:description => (doc/"div.description").inner_html,
:comments => [],
:attachments => []
}
# clean up the description
Hpricot(ticket[:description]).search("h3").remove
ticket[:description].gsub!(/<\/?pre( class=\"wiki\")?>/,"@@@\n")
ticket[:description].gsub!(/<\/?[^>]*>/, "")
ticket[:description] = unescapeHTML(ticket[:description].gsub!(/\n\s*\n\s*\n/,"\n\n"))
# gather and clean up the ticket changes
changes = []
(doc/"div.change").each do |c|
changes << { :name => (c/"h3").inner_html, :comment => (c/"[.comment]|[.changes]").inner_html }
end
changes.each do |change|
change[:name].gsub!(/<\/?[^>]*>/, "")
change[:name].strip!
change[:comment].gsub!(change[:name],"")
change[:comment].gsub!(/<\/?[^>]*>/, "")
change[:comment].gsub!(/\n\s*\n\s*\n/,"\n\n")
ticket[:comments] << change[:name] + "\n@@@\n" + change[:comment] + "\n@@@\n"
end
ticket[:comments] = unescapeHTML(ticket[:comments].join("\n"))
ticket[:comments].gsub!(/\((follow|in)[^\)]*\)/,'')
# gather and cleanup the attachments
(doc/"dl.attachments/dt/a").each do |a|
ticket[:attachments] << "http://merb.devjavu.com#{a.attributes['href']}"
end
ticket[:attachments] = unescapeHTML(ticket[:attachments].join("\n"))
# put together the final body
ticket[:body] = [ "Originally posted on Trac by #{ticket[:reporter]}", ticket[:trac_url], ticket[:description], "h3. Trac Attachments", ticket[:attachments], "h3. Trac Comments", ticket[:comments]].join("\n")
ticket[:tags] = [ticket[:priority],ticket[:component]]
ticket[:tags] << "patch" if ticket[:title].match /patch/i
ticket[:project_id] = get_project(ticket)
return ticket
end
def unescapeHTML(string)
# from CGI.rb - don't need the slow just the unescape
if string == nil
return ''
end
string.gsub(/&(.*?);/n) do
match = $1.dup
case match
when /\Aamp\z/ni then '&'
when /\Aquot\z/ni then '"'
when /\Agt\z/ni then '>'
when /\Alt\z/ni then '<'
when /\A#0*(\d+)\z/n then
if Integer($1) < 256
Integer($1).chr
else
if Integer($1) < 65536 and ($KCODE[0] == ?u or $KCODE[0] == ?U)
[Integer($1)].pack("U")
else
"&##{$1};"
end
end
when /\A#x([0-9a-f]+)\z/ni then
if $1.hex < 256
$1.hex.chr
else
if $1.hex < 65536 and ($KCODE[0] == ?u or $KCODE[0] == ?U)
[$1.hex].pack("U")
else
"&#x#{$1};"
end
end
else
"&#{match};"
end
end
end
def steal_cookie
# get request to gather tokens needed to hijack cookie
resp, data = @http.get2(@login, {'User-Agent' => @useragent})
cookie = resp.response['set-cookie']
data.match(/TOKEN\" value\=\"(\w+)\"/)
url_params = "user=#{@username}&password=#{@password}&__FORM_TOKEN=#{$1}"
@headers = {
'Cookie' => cookie,
'Referer' => 'http://' + @domain + @login,
'Content-Type' => 'application/x-www-form-urlencoded'
}
# post to login and grab cookie for later
resp, data = @http.post2(@login, url_params, @headers)
cookie = resp.response['set-cookie']
@headers = {
'Cookie' => cookie
}
end
def get_html_for_ticket(ticket)
#change url if you go somewhere other than /ticket/1 to pull up ticket #1
ticket_url = "/ticket/#{ticket}"
if @trac_basic_auth
resp = Net::HTTP.start(@domain) do |http|
req = Net::HTTP::Get.new(ticket_url)
req.basic_auth @trac_http_user, @trac_http_pass
resp = http.request(req)
end
data = resp.body
else
# change url in get2() if you go somewhere other than /ticket/1 to pull up ticket #1
resp, data = @http.get2(ticket_url, @headers)
end
Hpricot(unescapeHTML(data)) if resp.code == '200'
end
def create_ticket(trac_ticket)
ticket = Lighthouse::Ticket.new(:project_id => trac_ticket[:project_id])
ticket.title = trac_ticket[:title].to_s
ticket.tags = tag_prep(trac_ticket[:tags])
ticket.body = trac_ticket[:body].to_s
ticket.save
end
def import_tickets(tickets)
if not @trac_basic_auth
steal_cookie
end
new_tickets = []
tickets.each do |ticket|
# grab the page for this ticket
ticket_html = get_html_for_ticket(ticket)
# pull data for ticket
new_ticket = build_ticket(ticket_html,ticket)
# add to @tickets[]
new_tickets << new_ticket
end
# create and save to lighthouse
new_tickets.each do |ticket|
create_ticket(ticket)
end
end
def populate_tickets
# url should be the path to a trac report that shows you all tickets from
# all components
url = "/report/3"
ticket_list = []
if @trac_basic_auth
resp = Net::HTTP.start(@domain) do |http|
req = Net::HTTP::Get.new(url)
req.basic_auth @trac_http_user, @trac_http_pass
resp = http.request(req)
end
html = resp.body
else
resp, html = @http.get2(url, {'User-Agent' => @useragent})
end
html = Hpricot(html)
(html/".ticket").each do |a|
a.inner_html =~ /\#(\d{1,3})/
ticket_list << $1
end
ticket_list.sort
end
end