Project

General

Profile

Download (806 Bytes) Statistics
| Branch: | Tag: | Revision:
class HostClass < ActiveRecord::Base
include Authorization
audited :associated_with => :host, :allow_mass_assignment => true
belongs_to_host :foreign_key => :host_id
belongs_to :puppetclass

validates :host_id, :presence => true
validates :puppetclass_id, :presence => true, :uniqueness => {:scope => :host_id}

def name
"#{host} - #{puppetclass}"
end

private

def enforce_permissions operation
if operation == "edit" and new_record?
return true # We get called again with the operation being set to create
end
if User.current.allowed_to?(:edit_classes) && Host.my_hosts.pluck(:id).include?(self.host_id)
return true
else
errors.add(:base, _("You do not have permission to edit Puppet classes on this host"))
return false
end
end

end
(15-15/51)