ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilRbacLogTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once './Services/Table/classes/class.ilTable2GUI.php';
5include_once "Services/AccessControl/classes/class.ilRbacLog.php";
6
19{
20 protected $operations = array();
21 protected $filter = array();
22 protected $action_map = array();
23
24 public function __construct($a_parent_obj, $a_parent_cmd, $a_ref_id)
25 {
26 global $ilCtrl, $lng, $ilAccess, $lng;
27
28 $this->setId("rbaclog");
29 $this->ref_id = $a_ref_id;
30
31 parent::__construct($a_parent_obj, $a_parent_cmd);
32 $this->setTitle($lng->txt("rbac_log"));
33 $this->setLimit(5);
34
35 $this->addColumn($this->lng->txt("date"), "", "15%");
36 $this->addColumn($this->lng->txt("name"), "", "10%");
37 $this->addColumn($this->lng->txt("login"), "", "10%");
38 $this->addColumn($this->lng->txt("action"), "", "15%");
39 $this->addColumn($this->lng->txt("rbac_changes"), "", "50%");
40
41 $this->setExternalSegmentation(true);
42 $this->setEnableHeader(true);
43 $this->setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
44 $this->setRowTemplate("tpl.rbac_log_row.html", "Services/AccessControl");
45 $this->setFilterCommand("applyLogFilter");
46 $this->setResetCommand("resetLogFilter");
47
48 $this->action_map = array(ilRbacLog::EDIT_PERMISSIONS => $this->lng->txt("rbac_log_edit_permissions"),
49 ilRbacLog::MOVE_OBJECT => $this->lng->txt("rbac_log_move_object"),
50 ilRbacLog::LINK_OBJECT => $this->lng->txt("rbac_log_link_object"),
51 ilRbacLog::COPY_OBJECT => $this->lng->txt("rbac_log_copy_object"),
52 ilRbacLog::CREATE_OBJECT => $this->lng->txt("rbac_log_create_object"),
53 ilRbacLog::EDIT_TEMPLATE => $this->lng->txt("rbac_log_edit_template"),
54 ilRbacLog::EDIT_TEMPLATE_EXISTING=> $this->lng->txt("rbac_log_edit_template_existing"),
55 ilRbacLog::CHANGE_OWNER=> $this->lng->txt("rbac_log_change_owner"));
56
57 $this->initFilter();
58
59 $this->getItems($this->ref_id, $this->filter);
60 }
61
62 public function initFilter()
63 {
65 $item->setOptions(array("" => $this->lng->txt("all"))+$this->action_map);
66 $this->filter["action"] = $item->getValue();
67
69 $this->filter["date"] = $item->getDate();
70 }
71
72 protected function getItems($a_ref_id, array $a_current_filter = null)
73 {
74 global $rbacreview;
75
77
78 foreach ($rbacreview->getOperations() as $op) {
79 $this->operations[$op["ops_id"]] = $op["operation"];
80 }
81
82 // special case: role folder should display root folder entries
83 if ($a_ref_id == ROLE_FOLDER_ID) {
84 $a_ref_id = ROOT_FOLDER_ID;
85 }
86
87 $data = ilRbacLog::getLogItems($a_ref_id, $this->getLimit(), $this->getOffset(), $a_current_filter);
88
89 $this->setData($data["set"]);
90 $this->setMaxCount($data["cnt"]);
91 }
92
93 protected function fillRow($a_set)
94 {
95 $this->tpl->setVariable("DATE", ilDatePresentation::formatDate(new ilDateTime($a_set["created"], IL_CAL_UNIX)));
96 $name = ilObjUser::_lookupName($a_set["user_id"]);
97 $this->tpl->setVariable("LASTNAME", $name["lastname"]);
98 $this->tpl->setVariable("FIRSTNAME", $name["firstname"]);
99 $this->tpl->setVariable("LOGIN", $name["login"]);
100 $this->tpl->setVariable("ACTION", $this->action_map[$a_set["action"]]);
101
102 if ($a_set["action"] == ilRbacLog::CHANGE_OWNER) {
103 $user = ilObjUser::_lookupFullname($a_set["data"][0]);
104 $changes = array(array("action"=>$this->lng->txt("rbac_log_changed_owner"), "operation"=>$user));
105 } elseif ($a_set["action"] == ilRbacLog::EDIT_TEMPLATE) {
106 $changes = $this->parseChangesTemplate($a_set["data"]);
107 } else {
108 $changes = $this->parseChangesFaPa($a_set["data"]);
109 }
110
111 $this->tpl->setCurrentBlock("changes");
112 foreach ($changes as $change) {
113 $this->tpl->setVariable("CHANGE_ACTION", $change["action"]);
114 $this->tpl->setVariable("CHANGE_OPERATION", $change["operation"]);
115 $this->tpl->parseCurrentBlock();
116 }
117 }
118
119 protected function parseChangesFaPa(array $raw)
120 {
121 $result = array();
122
123 $type = ilObject::_lookupType($this->ref_id, true);
124
125 if (isset($raw["src"])) {
126 $obj_id = ilObject::_lookupObjectId($raw["src"]);
127 if ($obj_id) {
128 include_once "./Services/Link/classes/class.ilLink.php";
129 $result[] = array("action"=>$this->lng->txt("rbac_log_source_object"),
130 "operation"=>"<a href=\"" . ilLink::_getLink($raw["src"]) . "\">" . ilObject::_lookupTitle($obj_id) . "</a>");
131 }
132
133 // added only
134 foreach ($raw["ops"] as $role_id => $ops) {
135 foreach ($ops as $op) {
136 $result[] = array("action"=>sprintf($this->lng->txt("rbac_log_operation_add"), ilObject::_lookupTitle($role_id)),
137 "operation"=>$this->getOPCaption($type, $op));
138 }
139 }
140 } elseif (isset($raw["ops"])) {
141 foreach ($raw["ops"] as $role_id => $actions) {
142 foreach ($actions as $action => $ops) {
143 foreach ((array) $ops as $op) {
144 $result[] = array("action"=>sprintf($this->lng->txt("rbac_log_operation_" . $action), ilObject::_lookupTitle($role_id)),
145 "operation"=>$this->getOPCaption($type, $op));
146 }
147 }
148 }
149 }
150
151 if (isset($raw["inht"])) {
152 foreach ($raw["inht"] as $action => $role_ids) {
153 foreach ((array) $role_ids as $role_id) {
154 $result[] = array("action"=>sprintf($this->lng->txt("rbac_log_inheritance_" . $action), ilObject::_lookupTitle($role_id)));
155 }
156 }
157 }
158
159 return $result;
160 }
161
162 protected function parseChangesTemplate(array $raw)
163 {
164 $result = array();
165 foreach ($raw as $type => $actions) {
166 foreach ($actions as $action => $ops) {
167 foreach ($ops as $op) {
168 $result[] = array("action"=>sprintf($this->lng->txt("rbac_log_operation_" . $action), $this->lng->txt("obj_" . $type)),
169 "operation"=>$this->getOPCaption($type, $op));
170 }
171 }
172 }
173 return $result;
174 }
175
176 // #10946
177 protected function getOPCaption($a_type, $a_op)
178 {
179 // #11717
180 if (is_array($a_op)) {
181 $res = array();
182 foreach ($a_op as $op) {
183 $res[] = $this->getOPCaption($a_type, $op);
184 }
185 return implode(", ", $res);
186 }
187
188 if (is_numeric($a_op) && isset($this->operations[$a_op])) {
189 $op_id = $this->operations[$a_op];
190 if (substr($op_id, 0, 7) != "create_") {
191 return $this->lng->txt($a_type . "_" . $this->operations[$a_op]);
192 } else {
193 return $this->lng->txt("rbac_" . $this->operations[$a_op]);
194 }
195 }
196 }
197}
sprintf('%.4f', $callTime)
$result
An exception for terminatinating execution or to throw for unit testing.
const IL_CAL_UNIX
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date @access public.
@classDescription Date and time handling
static _lookupName($a_user_id)
lookup user name
static _lookupFullname($a_user_id)
Lookup Full Name.
static _lookupTitle($a_id)
lookup object title
static _lookupObjectId($a_ref_id)
lookup object id
static _lookupType($a_id, $a_reference=false)
lookup object type
Class ilRbacLogTableGUI.
__construct($a_parent_obj, $a_parent_cmd, $a_ref_id)
ilTable2GUI constructor.
fillRow($a_set)
Standard Version of Fill Row.
getItems($a_ref_id, array $a_current_filter=null)
const EDIT_PERMISSIONS
static getLogItems($a_ref_id, $a_limit, $a_offset, array $a_filter=null)
const COPY_OBJECT
const MOVE_OBJECT
const EDIT_TEMPLATE_EXISTING
const CHANGE_OWNER
const LINK_OBJECT
const EDIT_TEMPLATE
const CREATE_OBJECT
Class ilTable2GUI.
setEnableHeader($a_enableheader)
Set Enable Header.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setData($a_data)
set table data @access public
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
getLimit()
Get limit.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
addFilterItemByMetaType($id, $type=self::FILTER_TEXT, $a_optional=false, $caption=null)
Add filter by standard type.
getOffset()
Get offset.
setExternalSegmentation($a_val)
Set external segmentation.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFilterCommand($a_val, $a_caption=null)
Set filter command.
setMaxCount($a_max_count)
set max.
$action
global $ilCtrl
Definition: ilias.php:18
if($format !==null) $name
Definition: metadata.php:146
$type
foreach($_POST as $key=> $value) $res
$a_type
Definition: workflow.php:92