orbit-basic/app/models/module_app.rb

63 lines
1.7 KiB
Ruby
Raw Normal View History

2011-11-19 06:33:26 +00:00
class ModuleApp
include Mongoid::Document
include Mongoid::Timestamps
2011-12-23 10:34:21 +00:00
field :title
field :version
field :organization
field :author
field :intro
field :update_info
field :create_date
2012-01-05 08:20:51 +00:00
field :enable_frontend,type: Boolean
2011-12-20 08:47:17 +00:00
field :app_pages ,type: Array
2012-01-05 08:20:51 +00:00
field :widgets ,type: Array
2011-12-20 08:47:17 +00:00
2012-01-13 10:20:04 +00:00
has_many :managers,as: :managing_app ,:class_name => "AppManager" #,:dependent => :destroy,:foreign_key => "managing_app_id",:inverse_of => :managing_app
has_many :sub_managers,as: :sub_managing_app ,:class_name => "AppManager"#, :dependent => :destroy,:foreign_key => "sub_managing_app_id",:inverse_of => :sub_managing_app
2011-12-20 08:47:17 +00:00
has_one :app_auth,dependent: :delete
2012-01-13 10:20:04 +00:00
def assign_manager(user,assigner)
manager = AppManager.first(conditions: {managing_app_id: self.id,user_id: user.id}) rescue nil
if manager.nil?
manager = self.managers.create(:user => user,:rule_creator => assigner)
end
manager
end
def assign_sub_manager(user,assigner)
submanager = AppManager.first(conditions: {sub_managing_app_id: self.id,user_id: user.id}) rescue nil
if submanager.nil?
submanager = self.sub_managers.create(:user => user,:rule_creator => assigner)
end
submanager
end
def remove_manager(user)
manager = AppManager.first(conditions: {managing_app_id: self.id,user_id: user.id}) rescue nil
if manager
manager.destroy
else
false
end
end
2012-01-05 08:20:51 +00:00
2012-01-13 10:20:04 +00:00
def remove_sub_manager(user)
submanager = AppManager.first(conditions: {sub_managing_app_id: self.id,user_id: user.id}) rescue nil
if submanager
submanager.destroy
else
false
end
end
2011-12-23 10:34:21 +00:00
field :app_pages ,type: Array
has_one :app_auth,dependent: :delete
end