Project

General

Profile

Download (3.19 KB) Statistics
| Branch: | Tag: | Revision:
module HomeHelper

def class_for_setting_page
setting_options.map{|o| o[1]}.include?(controller_name.to_sym) ? "active" : ""
end

def setting_options
choices = [
['Environments', :environments],
['Global Parameters', :common_parameters],
['Host Groups', :hostgroups],
['Puppet Classes', :puppetclasses],
['Smart Variables', :lookup_keys],
['Smart Proxies', :smart_proxies]
]

choices += [ [:divider] ]
if (SETTINGS[:organizations_enabled] or SETTINGS[:locations_enabled])
choices += [ ['Locations', :locations] ] if SETTINGS[:locations_enabled]
choices += [ ['Organizations', :organizations] ] if SETTINGS[:organizations_enabled]
choices += [ [:divider ] ]
end


if SETTINGS[:unattended]

choices += [
['Architectures', :architectures],
['Compute Resources', :compute_resources],
['Domains', :domains],
['Hardware Models', :models],
['Installation Media', :media],
['Operating Systems', :operatingsystems],
['Partition Tables', :ptables],
['Provisioning Templates', :config_templates],
['Subnets', :subnets]
]
end

choices += [
[:divider],
['LDAP Authentication', :auth_source_ldaps],
['Users', :users],
['User Groups', :usergroups],
] if SETTINGS[:login]

choices += [
['Roles', :roles]
] if SETTINGS[:login] && User.current && User.current.admin?

choices += [
[:divider],
['Bookmarks', :bookmarks],
['Settings', :settings]
]

#prevent adjacent dividers
last_item = nil
choices = choices.map do |item|
if item == [:divider]
if last_item
last_item = nil
item
end
elsif authorized_for(item[1], :index)
last_item = item
item
end
end.compact
choices.pop if (choices.last == [:divider])
choices
end

def menu(tab, myBookmarks ,path = nil)
path ||= eval("hash_for_#{tab}_path")
return '' unless authorized_for(path[:controller], path[:action] )
b = myBookmarks.map{|b| b if b.controller == path[:controller]}.compact
out = content_tag :li, :id => "menu_tab_#{tab}" do
link_to_if_authorized(tab.capitalize, path, :class => b.empty? ? "" : "narrow-right")
end
out += content_tag :li, :class => "dropdown hidden-tablet hidden-phone " do
link_to(content_tag(:span,'', :'data-toggle'=> 'dropdown', :class=>'caret hidden-phone hidden-tablet'), "#", :class => "dropdown-toggle narrow-left hidden-phone hidden-tablet") + menu_dropdown(b)
end unless b.empty?
out
end

def menu_dropdown bookmark
return "" if bookmark.empty?
render("bookmarks/list", :bookmarks => bookmark)
end

# filters out any non allowed actions from the setting menu.
def allowed_choices choices, action = "index"
choices.map do |opt|
name, kontroller = opt
url = eval("#{kontroller}_url")
authorized_for(kontroller, action) ? [name, url] : nil
end.compact.sort
end
end
(16-16/43)