Project

General

Profile

« Previous | Next » 

Revision a67b0923

Added by Paul Kelly about 14 years ago

  • ID a67b092319ec685ce08e4f222f9d4e0398c13297

Fixes #101 - Generate rdoc files and html links on the puppetclasses page

Rewite rdocs if required by the prepare phase
Incorporate Fank Sweetser's :: patch
Incorporate a url_helper suggested by Ohad
Added a new interface via links on the supported environments list

View differences:

app/models/puppetclass.rb
validates_associated :environments
validates_format_of :name, :with => /\A(\S+\s?)+\Z/, :message => "can't be blank or contain white spaces."
acts_as_audited
default_scope :order => "name"
before_destroy Ensure_not_used_by.new(:hosts)
before_destroy Ensure_not_used_by.new(:hostgroups)
......
20
end
# Retrieve the manifestdir from the puppet configuration
# Returns: String
def self.manifestdir
ps = Puppet.settings.instance_variable_get(:@values)
ps[:main][:manifestdir] || ps[:puppetmasterd][:manifestdir] || ps[:puppetd][:manifestdir] || Puppet.settings[:manifestdir] || "/etc/puppet/manifests"
end
# Populates the rdoc tree with information about all the classes in your modules.
# Firstly, we prepare the modules tree
# Secondly we run puppetdoc over the modulespath and manifestdir for all environments
# The results are written into document_root/puppet/rdoc/<env>/<class>"
def self.rdoc root
debug, verbose = false, false
relocated = root != "/" # This is true if the prepare phase copied the modules tree
# Retrieve an optional http server's DocumentRoot from the settings.yaml file, and prepare it for writing
doc_root = Pathname.new(SETTINGS[:document_root] || RAILS_ROOT + "/public") + "puppet/rdoc"
doc_root.mkpath
unless doc_root.directory? and doc_root.writable?
puts "Unable to write html to #{doc_root}"
return false
end
# For each environment we write a puppetdoc tree
for env, path in Environment.puppetEnvs
# We may need to rewrite the modulepaths because they have been changed by the prepare step
modulepaths = relocated ? path.split(":").map{|p| root + p}.join(":") : path
# Identify and prepare the output directory
out = doc_root + env.id2name
out.rmtree if out.directory?
# Create the documentation
cmd = "puppetdoc -o #{out} --modulepath #{modulepaths} --manifestdir #{manifestdir} -m rdoc"
sh %{#{cmd} #{verbose ? "" : "2>/dev/null"}} do |ok, res|
if ok
if relocated and (files = %x{find #{out} -exec grep -l '#{root}' {} \\;}.gsub(/\n/, " ")) != ""
puts "Rewriting..." if verbose
cmd = "ruby -p -i -e 'rex=%r{#{root}};$_.gsub!(rex,\"\")' #{files}"
puts cmd if debug
%x{#{cmd}}
# Now relocate the files/* files to match the rewritten url
mv Dir.glob("#{out}/files/#{root}/*"), "#{out}/files", :verbose => verbose
end
else
puts "Failed to process puppetdocs for #{out}"
end
end
end
end
# Optionally creates a copy of the current puppet modules and sanitizes it.
# If your 'live' manifests and modules can be parsed by puppetdoc
# then you do not neeed to do this step. (Unfortunately some sites have circular
# symlinks which have to be removed.)
# If the executable RAILS_ROOT/script/rdoc_prepare_script exists then it is run
# and passed a list of all directory paths in all environments.
# It should return the directory into which it has copied the cleaned modules"
def self.prepare_rdoc root
debug, verbose = false, false
prepare_script = Pathname.new(RAILS_ROOT) + "script/rdoc_prepare_script.rb"
if prepare_script.executable?
dirs = Environment.puppetEnvs.values.join(":").split(":").uniq.sort.join(" ")
puts "Running #{prepare_script} #{dirs}" if debug
location = %x{#{prepare_script} #{dirs}}
if $? == 0
root = location.chomp
puts "Relocated modules to #{root}" if verbose
end
else
puts "No executable #{prepare_script} found so using the uncopied module sources" if verbose
end
root
end
end

Also available in: Unified diff