forked from GNUsocial/gnu-social
Add events for filtering and logging new notices
This commit is contained in:
parent
47c5d508b3
commit
4ad5d55ecf
@ -76,3 +76,9 @@ StartShowContentBlock: Showing before the content container
|
|||||||
EndShowContentBlock: Showing after the content container
|
EndShowContentBlock: Showing after the content container
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
|
StartNoticeSave: before inserting a notice (good place for content filters)
|
||||||
|
- $notice: notice being saved (no ID or URI)
|
||||||
|
|
||||||
|
EndNoticeSave: after inserting a notice and related code
|
||||||
|
- $notice: notice that was saved (with ID and URI)
|
||||||
|
|
||||||
|
@ -98,7 +98,12 @@ class NewnoticeAction extends Action
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
$this->saveNewNotice();
|
$this->saveNewNotice();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
$this->showForm($e->getMessage());
|
||||||
|
return;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$this->showForm();
|
$this->showForm();
|
||||||
}
|
}
|
||||||
@ -123,15 +128,13 @@ class NewnoticeAction extends Action
|
|||||||
$content = $this->trimmed('status_textarea');
|
$content = $this->trimmed('status_textarea');
|
||||||
|
|
||||||
if (!$content) {
|
if (!$content) {
|
||||||
$this->showForm(_('No content!'));
|
$this->clientError(_('No content!'));
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
$content_shortened = common_shorten_links($content);
|
$content_shortened = common_shorten_links($content);
|
||||||
|
|
||||||
if (mb_strlen($content_shortened) > 140) {
|
if (mb_strlen($content_shortened) > 140) {
|
||||||
$this->showForm(_('That\'s too long. '.
|
$this->clientError(_('That\'s too long. '.
|
||||||
'Max notice size is 140 chars.'));
|
'Max notice size is 140 chars.'));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,7 +157,7 @@ class NewnoticeAction extends Action
|
|||||||
($replyto == 'false') ? null : $replyto);
|
($replyto == 'false') ? null : $replyto);
|
||||||
|
|
||||||
if (is_string($notice)) {
|
if (is_string($notice)) {
|
||||||
$this->showForm($notice);
|
$this->clientError($notice);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,6 +154,8 @@ class Notice extends Memcached_DataObject
|
|||||||
$notice->source = $source;
|
$notice->source = $source;
|
||||||
$notice->uri = $uri;
|
$notice->uri = $uri;
|
||||||
|
|
||||||
|
if (Event::handle('StartNoticeSave', array(&$notice))) {
|
||||||
|
|
||||||
$id = $notice->insert();
|
$id = $notice->insert();
|
||||||
|
|
||||||
if (!$id) {
|
if (!$id) {
|
||||||
@ -181,6 +183,9 @@ class Notice extends Memcached_DataObject
|
|||||||
$notice->addToInboxes();
|
$notice->addToInboxes();
|
||||||
$notice->query('COMMIT');
|
$notice->query('COMMIT');
|
||||||
|
|
||||||
|
Event::handle('EndNoticeSave', array($notice));
|
||||||
|
}
|
||||||
|
|
||||||
# Clear the cache for subscribed users, so they'll update at next request
|
# Clear the cache for subscribed users, so they'll update at next request
|
||||||
# XXX: someone clever could prepend instead of clearing the cache
|
# XXX: someone clever could prepend instead of clearing the cache
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user