2009-10-16 00:27:56 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* A PermissionRoleCode represents a single permission code assigned to a {@link PermissionRole}.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2010-04-23 03:04:16 +02:00
|
|
|
* @subpackage security
|
2014-01-26 04:17:17 +01:00
|
|
|
*
|
|
|
|
* @property string Code
|
|
|
|
*
|
|
|
|
* @property int RoleID
|
|
|
|
*
|
|
|
|
* @method PermissionRole Role()
|
2009-10-16 00:27:56 +02:00
|
|
|
*/
|
|
|
|
class PermissionRoleCode extends DataObject {
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $db = array(
|
2009-10-16 00:27:56 +02:00
|
|
|
"Code" => "Varchar",
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $has_one = array(
|
2009-10-16 00:27:56 +02:00
|
|
|
"Role" => "PermissionRole",
|
|
|
|
);
|
2013-08-30 13:59:38 +02:00
|
|
|
|
2013-12-19 04:27:54 +01:00
|
|
|
public function validate() {
|
2013-08-30 13:59:38 +02:00
|
|
|
$result = parent::validate();
|
|
|
|
|
|
|
|
// Check that new code doesn't increase privileges, unless an admin is editing.
|
|
|
|
$privilegedCodes = Config::inst()->get('Permission', 'privileged_permissions');
|
|
|
|
if(
|
|
|
|
$this->Code
|
|
|
|
&& in_array($this->Code, $privilegedCodes)
|
|
|
|
&& !Permission::check('ADMIN')
|
|
|
|
) {
|
|
|
|
$result->error(sprintf(
|
|
|
|
_t(
|
|
|
|
'PermissionRoleCode.PermsError',
|
|
|
|
'Can\'t assign code "%s" with privileged permissions (requires ADMIN access)'
|
|
|
|
),
|
|
|
|
$this->Code
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function canCreate($member = null) {
|
|
|
|
return Permission::check('APPLY_ROLES', 'any', $member);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function canEdit($member = null) {
|
|
|
|
return Permission::check('APPLY_ROLES', 'any', $member);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function canDelete($member = null) {
|
|
|
|
return Permission::check('APPLY_ROLES', 'any', $member);
|
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|