19 declare(strict_types=1);
44 $this->calendar_id = $a_calendar_id;
45 $this->db = $DIC->database();
46 $this->rbacreview = $DIC->rbac()->review();
55 $query =
"DELETE FROM cal_shared WHERE cal_id = " .
$ilDB->quote($a_cal_id,
'integer') .
" ";
67 $query =
"DELETE FROM cal_shared WHERE obj_id = " .
$ilDB->quote($a_user_id,
'integer') .
" ";
79 $rbacreview = $DIC[
'rbacreview'];
81 $query =
'SELECT * FROM cal_shared ' .
82 "WHERE cal_id = " .
$ilDB->quote($a_calendar_id,
'integer') .
" ";
86 $obj_ids[(
int) $row->obj_id] = (
string) $row->obj_type;
89 foreach ($obj_ids as
$id => $type) {
92 if ($a_usr_id ==
$id) {
97 if (in_array(
$id, $assigned_roles)) {
110 $ilDB = $DIC[
'ilDB'];
111 $ilUser = $DIC[
'ilUser'];
112 $rbacreview = $DIC[
'rbacreview'];
115 $a_usr_id = $ilUser->getId();
118 $query =
"SELECT * FROM cal_shared " .
119 "WHERE obj_type = " .
$ilDB->quote(self::TYPE_USR,
'integer') .
" " .
120 "AND obj_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" " .
121 "ORDER BY create_date";
123 $calendars = array();
126 $calendars[] = (
int) $row->cal_id;
128 $shared[(
int) $row->cal_id][
'cal_id'] = (
int) $row->cal_id;
129 $shared[(
int) $row->cal_id][
'create_date'] = (string) $row->create_date;
130 $shared[(
int) $row->cal_id][
'obj_type'] = (string) $row->obj_type;
133 $assigned_roles = $rbacreview->
assignedRoles($ilUser->getId());
135 $query =
"SELECT * FROM cal_shared " .
136 "WHERE obj_type = " .
$ilDB->quote(self::TYPE_ROLE,
'integer') .
" " .
137 "AND " .
$ilDB->in(
'obj_id', $assigned_roles,
false,
'integer');
141 if (in_array($row->cal_id, $calendars)) {
148 $shared[(
int) $row->cal_id][
'cal_id'] = (
int) $row->cal_id;
149 $shared[(
int) $row->cal_id][
'create_date'] = (
string) $row->create_date;
150 $shared[(
int) $row->cal_id][
'obj_type'] = (
string) $row->obj_type;
177 return isset($this->shared[$a_obj_id]);
182 foreach ($this->shared as $info) {
183 if (!$info[
'writable']) {
187 switch ($info[
'obj_type']) {
189 if ($info[
'obj_id'] == $a_user_id) {
194 case self::TYPE_ROLE:
195 if ($this->rbacreview->isAssigned($a_user_id, $info[
'obj_id'])) {
204 public function share(
int $a_obj_id,
int $a_type,
bool $a_writable =
false): void
209 $query =
"INSERT INTO cal_shared (cal_id,obj_id,obj_type,create_date,writable) " .
212 $this->db->quote($a_obj_id,
'integer') .
", " .
213 $this->db->quote($a_type,
'integer') .
", " .
214 $this->db->now() .
", " .
215 $this->db->quote((
int) $a_writable,
'integer') .
' ' .
218 $res = $this->db->manipulate($query);
227 $query =
"DELETE FROM cal_shared WHERE cal_id = " . $this->db->quote($this->
getCalendarId(),
'integer') .
" " .
228 "AND obj_id = " . $this->db->quote($a_obj_id,
'integer') .
" ";
229 $res = $this->db->manipulate($query);
235 protected function read(): void
237 $this->shared = $this->shared_users = $this->shared_roles = array();
238 $query =
"SELECT * FROM cal_shared WHERE cal_id = " . $this->db->quote($this->
getCalendarId(),
'integer');
239 $res = $this->db->query($query);
241 switch ($row->obj_type) {
243 $this->shared_users[(
int) $row->obj_id][
'obj_id'] = (
int) $row->obj_id;
244 $this->shared_users[(
int) $row->obj_id][
'obj_type'] = (
string) $row->obj_type;
245 $this->shared_users[(
int) $row->obj_id][
'create_date'] = (
string) $row->create_date;
246 $this->shared_users[(
int) $row->obj_id][
'writable'] = (
bool) $row->writable;
249 case self::TYPE_ROLE:
250 $this->shared_roles[(
int) $row->obj_id][
'obj_id'] = (
int) $row->obj_id;
251 $this->shared_roles[(
int) $row->obj_id][
'obj_type'] = (
string) $row->obj_type;
252 $this->shared_roles[(
int) $row->obj_id][
'create_date'] = (
string) $row->create_date;
253 $this->shared_roles[(
int) $row->obj_id][
'writable'] = (
bool) $row->writable;
257 $this->shared[(
int) $row->obj_id][
'obj_id'] = (
int) $row->obj_id;
258 $this->shared[(
int) $row->obj_id][
'obj_type'] = (
string) $row->obj_type;
259 $this->shared[(
int) $row->obj_id][
'create_date'] = (
string) $row->create_date;
260 $this->shared[(
int) $row->obj_id][
'writable'] = (
bool) $row->writable;
static deleteByCalendar(int $a_cal_id)
share(int $a_obj_id, int $a_type, bool $a_writable=false)
__construct(int $a_calendar_id)
Handles shared calendars.
isEditableForUser(int $a_user_id)
static _isOwner(int $a_usr_id, int $a_cal_id)
check if user is owner of a category
stopSharing(int $a_obj_id)
static isSharedWithUser(int $a_usr_id, int $a_calendar_id)
is shared with user
static getSharedCalendarsForUser(int $a_usr_id=0)
static deleteByUser(int $a_user_id)
Delete all entries for a specific user.
static deleteStatus(int $a_id, int $a_calendar_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
assignedRoles(int $a_usr_id)
get all assigned roles to a given user