metasploit-framework/lib/msf/util/svn.rb

89 lines
1.4 KiB
Ruby

###
#
# framework-util-svn
# --------------
#
# The class provides methods for parsing the SVN information in the framework directory
#
###
require 'date'
module Msf
module Util
class SVN
def self.load_root
info = {}
path = ::File.join(::File.dirname(__FILE__), "..", "..", "..", ".svn", "entries")
if !::File.exists?(path)
return info
end
ents = []
File.open(path, "rb") do |fd|
ents = fd.read(::File.size(path)).split("\x0c")
end
ents[0].split("\n").each do |line|
line.strip!
next if line.empty?
case line
when /framework3/
info[:root] = line
when /^\d+$/
info[:revision] = line.to_i
when /^\d{4}-\d.*T/
info[:updated] = line
end
break if (info[:root] and info[:revision] and info[:updated])
end
info
end
def self.revision
info = load_root
info[:revision]
end
def self.updated
info = load_root
info[:updated]
end
def self.root
info = load_root
info[:root]
end
def self.days_since_update
info = load_root
svnt = info[:updated]
if(not svnt)
return
end
diff = (Date.parse(Time.now.to_s) - Date.parse(svnt)).to_f
end
def self.last_updated_friendly
diff = self.days_since_update
case diff
when nil
"at a unknown date"
when -2.0 .. 1.0
"today"
when 1.0 .. 2.0
"yesterday"
else
if (diff.to_i > 7)
"%red#{diff.to_i} days ago%c"
else
"#{diff.to_i} days ago"
end
end
end
end
end
end