16 lines
489 B
Ruby
16 lines
489 B
Ruby
require 'net/http'
|
|
require 'nokogiri'
|
|
|
|
Client.register_command("bug") { |args|
|
|
if args[0] =~ /^[0-9]+$/ then
|
|
doc = Nokogiri::HTML(Net::HTTP.get(URI(Config[:commands][:bug][:url] + args[0])))
|
|
[Config[:commands][:bug][:url] + args[0], doc.title().delete!('\n'),
|
|
doc.xpath('//span[@id="static_bug_status"]').inner_text.split,
|
|
doc.xpath('//td[@id="field_container_product"]').inner_text,
|
|
].join('; ')
|
|
else
|
|
"invalid bug url"
|
|
end
|
|
}
|
|
|