19 declare(strict_types=1);
35 public function __construct(
string $id,
string $title,
string $class,
int $pos, array $types = [])
39 $this->
class = $class;
46 return hash(
"sha256", self::class .
"::" . $this->
id);
51 $types = implode(
",", $this->types);
52 return "Add custom rbac operation (id=$this->id;title=$this->title;class=$this->class;pos=$this->pos;types=($types))";
69 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
73 if ($this->
class ==
"create") {
78 if (is_null($ops_id)) {
79 $ops_id = $db->nextId(
"rbac_operations");
82 'ops_id' => [
'integer', $ops_id],
89 $db->insert(
"rbac_operations", $values);
92 foreach ($this->types as $type) {
95 $type_id = $db->nextId(
'object_data');
98 'obj_id' => [
'integer', $type_id],
99 'type' => [
'text',
'typ'],
100 'title' => [
'text', $type],
102 'owner' => [
'integer', -1],
103 'create_date' => [
'timestamp', $db->now()],
104 'last_update' => [
'timestamp', $db->now()]
106 $db->insert(
'object_data', $fields);
110 "SELECT typ_id, ops_id " . PHP_EOL
111 .
"FROM rbac_ta" . PHP_EOL
112 .
"WHERE typ_id = " . $db->quote($type_id,
"integer") . PHP_EOL
113 .
"AND ops_id = " . $db->quote($ops_id,
'integer') . PHP_EOL
116 $result = $db->query($sql);
117 if ($db->numRows($result)) {
122 "typ_id" => [
"integer", $type_id],
123 "ops_id" => [
"integer", $ops_id]
126 $db->insert(
"rbac_ta", $values);
135 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
144 foreach ($this->types as $key => $type) {
146 if (is_null($type_id)) {
151 "SELECT typ_id, ops_id " . PHP_EOL
152 .
"FROM rbac_ta" . PHP_EOL
153 .
"WHERE typ_id = " . $db->quote($type_id,
"integer") . PHP_EOL
154 .
"AND ops_id = " . $db->quote($ops_id,
'integer') . PHP_EOL
157 $result = $db->query($sql);
158 if ($db->numRows($result)) {
159 unset($this->types[$key]);
164 return count($this->types) && in_array($this->
class, [
'create',
'object',
'general']);
169 $db = $environment->getResource(
Setup\Environment::RESOURCE_DATABASE);
175 $DIC = self::NO_DIC_FOUND;
176 if (array_key_exists(
'DIC',
$GLOBALS)) {
179 $GLOBALS[
'DIC'] =
new DI\Container();
182 if (!defined(
'ILIAS_ABSOLUTE_PATH')) {
183 define(
'ILIAS_ABSOLUTE_PATH', dirname(__FILE__, 6));
191 if (
$dic !== self::NO_DIC_FOUND) {
static _getCustomRBACOperationId(string $operation, ?\ilDBInterface $ilDB=null)
initEnvironment(Setup\Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
achieve(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPreconditions(Environment $environment)
An environment holds resources to be used in the setup process.
__construct(string $id, string $title, string $class, int $pos, array $types=[])
isApplicable(Environment $environment)
static _getObjectTypeIdByTitle(string $type, ?\ilDBInterface $ilDB=null)