2012-11-20 07:56:52 +00:00
|
|
|
module OrbitApp
|
|
|
|
module Module
|
|
|
|
module SideBarRegisition
|
2013-03-22 06:19:10 +00:00
|
|
|
Version = "0.2"
|
2012-11-20 07:56:52 +00:00
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
@@side_bars = []
|
|
|
|
|
|
|
|
def add(var)
|
|
|
|
@@side_bars << var
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_by_key(key)
|
|
|
|
@@side_bars.each{|t|
|
|
|
|
return t if t.name == key
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2012-12-05 10:35:58 +00:00
|
|
|
def render_all(request,params,user,current_module_app)
|
|
|
|
@@side_bars.collect{|t| t.render(request,params,user,current_module_app)}.join.html_safe
|
|
|
|
end
|
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
def all
|
|
|
|
return @@side_bars
|
|
|
|
end
|
2013-02-04 10:14:00 +00:00
|
|
|
|
|
|
|
def all_get_ordered!
|
|
|
|
@@side_bars.sort! {|x,y| x.get_sidebar_order! <=> y.get_sidebar_order! }
|
|
|
|
end
|
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
extend ClassMethods
|
|
|
|
def self.included( other )
|
|
|
|
other.extend( ClassMethods )
|
|
|
|
end
|
|
|
|
|
|
|
|
class SideBar
|
|
|
|
# include ApplicationHelper
|
|
|
|
# include AdminHelper
|
|
|
|
include SideBarRenderer
|
2013-03-13 06:09:10 +00:00
|
|
|
|
2013-07-10 08:42:25 +00:00
|
|
|
def initialize(name = '',key,get_module_app, approvable_with_link, authorizable_with_link, &block)
|
2012-11-20 07:56:52 +00:00
|
|
|
@head_label = name
|
|
|
|
@context_links = []
|
|
|
|
@available_for = []
|
|
|
|
@active_for_controllers = []
|
|
|
|
@active_for_object_auth = []
|
|
|
|
@active_for_app_auth = []
|
2013-07-02 08:46:44 +00:00
|
|
|
@active_for_tag = []
|
2012-11-20 07:56:52 +00:00
|
|
|
@head_link = ""
|
|
|
|
@app_base_path = ''
|
2012-12-03 10:52:36 +00:00
|
|
|
@module_app_key = key
|
2012-12-05 10:35:58 +00:00
|
|
|
@get_module_app = get_module_app
|
2013-02-04 10:14:00 +00:00
|
|
|
@sidebar_order = 0
|
2013-07-10 08:42:25 +00:00
|
|
|
@approvable_with_link = approvable_with_link
|
|
|
|
@authorizable_with_link = authorizable_with_link
|
2012-11-20 07:56:52 +00:00
|
|
|
block.arity < 1 ? instance_eval(&block) : block.call(self) if block_given?
|
2012-11-29 06:21:46 +00:00
|
|
|
# setup_module_app(module_app_key)
|
|
|
|
finalize!
|
|
|
|
SideBarRegisition.add(self)
|
2013-02-04 10:14:00 +00:00
|
|
|
SideBarRegisition.all_get_ordered!
|
2012-11-20 07:56:52 +00:00
|
|
|
end
|
|
|
|
|
2013-02-04 10:14:00 +00:00
|
|
|
def get_sidebar_order!
|
2013-02-18 07:13:31 +00:00
|
|
|
@sidebar_order = (get_module_app.sidebar_order rescue 0)
|
2013-02-04 10:14:00 +00:00
|
|
|
end
|
2013-07-02 08:46:44 +00:00
|
|
|
|
|
|
|
def get_icon_class
|
|
|
|
@icon_class
|
|
|
|
end
|
2013-02-04 10:14:00 +00:00
|
|
|
|
2012-12-05 10:35:58 +00:00
|
|
|
def get_module_app
|
|
|
|
@get_module_app.call
|
|
|
|
end
|
2012-11-20 07:56:52 +00:00
|
|
|
|
2013-07-02 08:46:44 +00:00
|
|
|
def get_module_app_key
|
|
|
|
@module_app_key
|
|
|
|
end
|
|
|
|
|
2012-11-29 06:21:46 +00:00
|
|
|
def head_label_i18n(var,options ={})
|
2012-11-20 07:56:52 +00:00
|
|
|
@head_label = var
|
2012-11-29 06:21:46 +00:00
|
|
|
@icon_class = options[:icon_class]
|
2012-11-20 07:56:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def available_for(var)
|
|
|
|
@available_for = var
|
|
|
|
end
|
|
|
|
|
|
|
|
def active_for_controllers(var)
|
|
|
|
@active_for_controllers = var
|
|
|
|
end
|
|
|
|
|
|
|
|
def active_for_object_auth(var)
|
|
|
|
@active_for_object_auth = var
|
|
|
|
end
|
|
|
|
|
|
|
|
def head_link_path(var)
|
|
|
|
@head_link = var
|
|
|
|
end
|
|
|
|
|
|
|
|
def context_link(*var)
|
2012-12-05 10:35:58 +00:00
|
|
|
var[1].merge!({:module_app_key=>@module_app_key,:get_module_app=>@get_module_app}) unless @module_app_key.nil?
|
2012-11-20 07:56:52 +00:00
|
|
|
new_context_link = ContextLink.new(*var)
|
|
|
|
@context_links << new_context_link
|
|
|
|
end
|
|
|
|
|
|
|
|
def finalize!
|
|
|
|
set_controllers_scope
|
2012-11-29 06:21:46 +00:00
|
|
|
# set_default_active_app_auth
|
2013-07-10 08:42:25 +00:00
|
|
|
current_priority = @context_links.count
|
|
|
|
if @approvable_with_link
|
|
|
|
context_link 'approval_setting',
|
2013-10-02 07:35:42 +00:00
|
|
|
:link_path => "admin_authorizations_path(get_module_app.key, 'category_approval')",
|
2013-07-10 08:42:25 +00:00
|
|
|
:priority => current_priority + 1,
|
|
|
|
:available_for => [:manager]
|
|
|
|
end
|
|
|
|
if @authorizable_with_link
|
|
|
|
context_link 'module_authorization',
|
|
|
|
:link_path => "admin_authorizations_path(get_module_app.key)",
|
|
|
|
:priority => current_priority + 2,
|
|
|
|
:available_for => [:manager]
|
|
|
|
end
|
2012-11-20 07:56:52 +00:00
|
|
|
@context_links.each do |t|
|
2012-11-29 06:21:46 +00:00
|
|
|
# t.set_module_app = @module_app
|
2012-11-20 07:56:52 +00:00
|
|
|
t.finalize!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
2012-11-29 06:21:46 +00:00
|
|
|
# def setup_module_app(var)
|
|
|
|
# @module_app_title = var
|
|
|
|
# @module_app = ModuleApp.where(:key=>var).desc(:create_date).first
|
|
|
|
# @module_app_key = @module_app.key
|
|
|
|
# end
|
|
|
|
|
|
|
|
# def set_default_active_app_auth
|
|
|
|
# @active_for_app_auth = @module_app.title
|
|
|
|
# end
|
2012-11-20 07:56:52 +00:00
|
|
|
|
|
|
|
def set_controllers_scope
|
|
|
|
var = @active_for_controllers
|
|
|
|
@active_for_controllers = []
|
|
|
|
var[:private].each do |controller|
|
|
|
|
@active_for_controllers << "panel/#{@module_app_key}/back_end/"+controller
|
|
|
|
end unless var[:private].nil?
|
|
|
|
var[:public].each do |controller|
|
|
|
|
@active_for_controllers << controller
|
|
|
|
end unless var[:public].nil?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ContextLink
|
|
|
|
include ContextLinkRenderer
|
|
|
|
attr_reader :label_i18n,:available_for,:priority,:path,:active_for_action
|
|
|
|
|
|
|
|
def initialize(label_i18n="NoNameLink",options={})
|
|
|
|
@label_i18n = label_i18n
|
|
|
|
@priority = options[:priority] || 0
|
|
|
|
@path = options[:link_path] || ""
|
2013-03-07 08:51:47 +00:00
|
|
|
set_available_for_avoiding_sensitive_links(options[:available_for] )
|
2012-11-20 07:56:52 +00:00
|
|
|
@active_for_action = options[:active_for_action] || []
|
|
|
|
@active_for_object_auth = options[:active_for_object_auth] || []
|
|
|
|
@active_for_app_auth = options[:active_for_app_auth] || []
|
2013-07-02 08:46:44 +00:00
|
|
|
@active_for_category = options[:active_for_category] || []
|
|
|
|
@active_for_tag = options[:active_for_tag] || []
|
2012-12-03 10:52:36 +00:00
|
|
|
@module_app_key = options[:module_app_key]
|
2012-12-05 10:35:58 +00:00
|
|
|
@get_module_app = options[:get_module_app]
|
|
|
|
end
|
|
|
|
|
2013-03-07 08:51:47 +00:00
|
|
|
def set_available_for_avoiding_sensitive_links(available_for)
|
|
|
|
sensitive_list = {}
|
|
|
|
sensitive_list[:module_app] =/.*manager_auth_proc.*/
|
|
|
|
sensitive_list[:object_auth] = /.*object_auth.*/
|
|
|
|
|
|
|
|
sensitive_list.each do |index,regx|
|
|
|
|
if @path.match(regx)
|
|
|
|
@available_for = case index
|
|
|
|
when :module_app
|
|
|
|
[:admin]
|
|
|
|
when :object_auth
|
|
|
|
[:manager,:admin]
|
|
|
|
end #of case
|
|
|
|
end #of if
|
|
|
|
end #of each
|
|
|
|
@available_for = available_for if @available_for.nil?
|
|
|
|
end #of def
|
|
|
|
|
2012-12-05 10:35:58 +00:00
|
|
|
def get_module_app
|
|
|
|
@get_module_app.call
|
2012-11-20 07:56:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def active?
|
2012-12-03 10:52:36 +00:00
|
|
|
for_action = @active_for_action.blank? ? false : active_for_action?
|
|
|
|
for_app_auth = @active_for_app_auth.blank? ? false : active_for_app_auth?
|
|
|
|
for_ob_auth = @active_for_object_auth.blank? ? false : active_for_ob_auths?
|
2013-07-02 08:46:44 +00:00
|
|
|
for_category = @active_for_category.blank? ? false : active_for_category?
|
|
|
|
for_tag = @active_for_tag.blank? ? false : active_for_tag?
|
|
|
|
for_action || for_app_auth || for_ob_auth || for_tag
|
2012-11-20 07:56:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def active_for_action?
|
|
|
|
@active_for_action[controller] == action
|
|
|
|
end
|
|
|
|
|
2012-11-29 06:21:46 +00:00
|
|
|
# def set_module_app=(var)
|
|
|
|
# @module_app = var
|
|
|
|
# @module_app_key = var.key
|
|
|
|
# end
|
2012-11-20 07:56:52 +00:00
|
|
|
|
|
|
|
def finalize!
|
|
|
|
set_active_actions
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
def set_active_actions
|
|
|
|
controller_action_hash = @active_for_action
|
|
|
|
@active_for_action = Hash[controller_action_hash.map{|controller,action| ["panel/#{@module_app_key}/back_end/"+controller.to_s,action.to_s]}]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|