forked from humhub-contrib/linklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Events.php
193 lines (165 loc) · 5.32 KB
/
Events.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2021 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\linklist;
use humhub\modules\comment\models\Comment;
use humhub\modules\linklist\models\StreamLink;
use humhub\modules\post\models\Post;
use Yii;
use yii\db\AfterSaveEvent;
class Events
{
/**
* Defines what to do if a spaces sidebar is initialzed.
*
* @param $event
*/
public static function onSpaceSidebarInit($event)
{
$space = $event->sender->space;
if ($space->isModuleEnabled('linklist')) {
$event->sender->addWidget(widgets\Sidebar::className(), array('contentContainer' => $space), array(
'sortOrder' => 200,
));
}
}
/**
* On build of a Space Navigation, check if this module is enabled.
* When enabled add a menu item
*
* @param $event
*/
public static function onSpaceMenuInit($event)
{
$space = $event->sender->space;
if ($space->isModuleEnabled('linklist') && $space->isMember()) {
$event->sender->addItem(array(
'label' => Yii::t('LinklistModule.base', 'Linklist'),
'group' => 'modules',
'url' => $space->createUrl('/linklist/linklist'),
'icon' => '<i class="fa fa-link"></i>',
'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'linklist')
));
}
}
/**
* On build of a Profile Navigation, check if this module is enabled.
* When enabled add a menu item
*
* @param $event
*/
public static function onProfileMenuInit($event)
{
$user = $event->sender->user;
// Is Module enabled on this workspace?
if ($user->isModuleEnabled('linklist') && !Yii::$app->user->isGuest && $user->id == Yii::$app->user->id) {
$event->sender->addItem(array(
'label' => Yii::t('LinklistModule.base', 'Linklist'),
'url' => $user->createUrl('/linklist/linklist'),
'icon' => '<i class="fa fa-link"></i>',
'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'linklist'),
));
}
}
/**
* Defines what to do if a spaces sidebar is initialzed.
*
* @param $event
*/
public static function onProfileSidebarInit($event)
{
$user = $event->sender->user;
if ($user->isModuleEnabled('linklist')) {
$event->sender->addWidget(widgets\Sidebar::className(), array('contentContainer' => $user), array(
'sortOrder' => 200,
));
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onPostAfterInsert($event)
{
if (!isset($event->sender)) {
return;
}
/** @var Post $post */
$post = $event->sender;
if (!empty($post->content->id) && !empty($post->message)) {
StreamLink::updateLinks($post->message, $post->content->id, Post::class, $post->id);
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onCommentAfterInsert($event)
{
if (!isset($event->sender)) {
return;
}
/** @var Comment $comment */
$comment = $event->sender;
if ($comment->object_model === Post::class && !empty($comment->content->id) && !empty($comment->message)) {
StreamLink::updateLinks($comment->message, $comment->content->id, Comment::class, $comment->id);
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onPostAfterUpdate($event)
{
if (!isset($event->sender, $event->changedAttributes)) {
return;
}
/** @var Post $post */
$post = $event->sender;
if (!empty($post->content->id) && !empty($post->message)) {
StreamLink::updateLinks($post->message, $post->content->id, Post::class, $post->id);
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onCommentAfterUpdate($event)
{
if (!isset($event->sender, $event->changedAttributes)) {
return;
}
/** @var Comment $comment */
$comment = $event->sender;
if ($comment->object_model === Post::class && !empty($comment->content->id) && !empty($comment->message)) {
StreamLink::updateLinks($comment->message, $comment->content->id, Comment::class, $comment->id);
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onPostAfterDelete($event)
{
if (!isset($event->sender)) {
return;
}
/** @var Post $post */
$post = $event->sender;
if ($post) {
StreamLink::deleteAll(['object_model' => Post::class, 'object_id' => $post->id]);
}
}
/**
* @param AfterSaveEvent $event
*/
public static function onCommentAfterDelete($event)
{
if (!isset($event->sender)) {
return;
}
/** @var Comment $comment */
$comment = $event->sender;
if ($comment) {
StreamLink::deleteAll(['object_model' => Comment::class, 'object_id' => $comment->id]);
}
}
}