rosa-build/app/models/role.rb

118 lines
2.8 KiB
Ruby
Raw Normal View History

class Role < ActiveRecord::Base
has_many :permissions
2011-10-23 22:39:44 +01:00
has_many :rights, :through => :permissions
has_many :relations, :through => :role_lines
2011-10-23 22:39:44 +01:00
serialize :can_see, Hash
validate :name, :presence => true
2011-10-28 00:35:00 +01:00
scope :exclude_acter, lambda {|obj|
t = self.arel_table
where(t[:to].not_eq((obj != :all) ? obj.to_s : ''))
}
scope :exclude_target, lambda {|targ|
t = self.arel_table
where(t[:on].not_eq((targ != :system) ? targ.to_s : ''))
}
2011-10-28 00:35:00 +01:00
scope :by_acter, lambda {|obj|
t = self.arel_table
where(t[:to].eq((obj != :all) ? obj.to_s : ''))
}
scope :by_target, lambda {|targ|
t = self.arel_table
where(t[:on].eq((targ != :system) ? targ.to_s : ''))
}
scope :default, where(:use_default => true)
scope :owner_default, where(:use_default_for_owner => true)
before_save :check_default, :check_owner_default
def to_dump
tmp = attributes.reject {|k,v| ['created_at', 'updated_at'].include? k}
tmp['rights'] = rights.inject({}) do |h, right|
h[right.controller] ||= []
h[right.controller] << right.action
h[right.controller].uniq!
h
end
return tmp
end
protected
def check_default
if on_changed? and !on || on == ''
roles = Role.by_acter(to).by_target('').default
if roles and roles.size > 0
roles.each {|r| r.update_attributes(:use_default => false)}
end
end
true
end
def check_owner_default
self[:use_default_for_owner] = false if use_default_for_owner and (to.nil? || to == '')
true
end
class << self
def save_dump filename = 'config/roles.yml'
fn = File.expand_path filename
2011-10-26 10:31:58 +01:00
File.open(fn, 'w'){|f| f.puts dump_roles}
return filename
end
def dump_roles
roles = Role.find(:all, :include => :rights)
roles = roles.map(&:to_dump)
return {:Roles => roles}.to_yaml
end
def all_from_dump! dump_hash
arr = []
dump_hash[:Roles].each do |role|
arr << from_dump!(role)
end
arr
end
def all_from_dump dump_hash
arr = []
dump_hash[:Roles].each do |role|
arr << from_dump(role)
end
arr
end
def from_dump! fields
from_dump(fields).save
end
def from_dump fields
rights = fields.delete('rights')
2011-10-26 14:26:10 +01:00
a = begin
find(fields['id'])
2011-10-27 21:06:53 +01:00
rescue ActiveRecord::RecordNotFound
2011-10-26 14:26:10 +01:00
new
end
a.rights = []
a.attributes = fields
Permission.delete_all(['role_id = ?', a.id])
rights.each do |con, acts|
acts.each do |act|
unless r = Right.where(:controller => con, :action => act)
r = Right.create(:controller => con, :action => act)
end
a.rights << r
end
end
return a
end
end
end