2012-11-27 16:48:25 +01:00
|
|
|
module NamespacesHelper
|
|
|
|
def namespaces_options(selected = :current_user, scope = :default)
|
2013-01-17 16:35:57 +01:00
|
|
|
if current_user.admin
|
|
|
|
groups = Group.all
|
|
|
|
users = Namespace.root
|
|
|
|
else
|
|
|
|
groups = current_user.owned_groups.select {|n| n.type == 'Group'}
|
|
|
|
users = current_user.namespaces.reject {|n| n.type == 'Group'}
|
|
|
|
end
|
2012-11-27 16:48:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
global_opts = ["Global", [['/', Namespace.global_id]] ]
|
2013-02-19 08:13:19 +01:00
|
|
|
group_opts = ["Groups", groups.sort_by(&:human_name).map {|g| [g.human_name, g.id]} ]
|
|
|
|
users_opts = [ "Users", users.sort_by(&:human_name).map {|u| [u.human_name, u.id]} ]
|
2012-11-27 16:48:25 +01:00
|
|
|
|
|
|
|
options = []
|
|
|
|
options << global_opts if current_user.admin
|
|
|
|
options << group_opts
|
|
|
|
options << users_opts
|
|
|
|
|
|
|
|
if selected == :current_user && current_user.namespace
|
|
|
|
selected = current_user.namespace.id
|
|
|
|
end
|
|
|
|
|
|
|
|
grouped_options_for_select(options, selected)
|
|
|
|
end
|
|
|
|
end
|