remove string-checks from code using Notice::saveNew()
This commit is contained in:
parent
0a57d1ccee
commit
89ac81c344
|
@ -255,13 +255,6 @@ class NewnoticeAction extends Action
|
|||
$notice = Notice::saveNew($user->id, $content_shortened, 'web', 1,
|
||||
($replyto == 'false') ? null : $replyto);
|
||||
|
||||
if (is_string($notice)) {
|
||||
if (isset($filename)) {
|
||||
$this->deleteFile($filename);
|
||||
}
|
||||
$this->clientError($notice);
|
||||
}
|
||||
|
||||
if (isset($mimetype)) {
|
||||
$this->attachFile($notice, $fileRecord);
|
||||
}
|
||||
|
|
|
@ -297,11 +297,6 @@ class TwitapistatusesAction extends TwitterapiAction
|
|||
html_entity_decode($status, ENT_NOQUOTES, 'UTF-8'),
|
||||
$source, 1, $reply_to);
|
||||
|
||||
if (is_string($notice)) {
|
||||
$this->serverError($notice);
|
||||
return;
|
||||
}
|
||||
|
||||
common_broadcast_notice($notice);
|
||||
$apidata['api_arg'] = $notice->id;
|
||||
}
|
||||
|
|
|
@ -468,11 +468,11 @@ class FacebookAction extends Action
|
|||
|
||||
$replyto = $this->trimmed('inreplyto');
|
||||
|
||||
$notice = Notice::saveNew($user->id, $content,
|
||||
'web', 1, ($replyto == 'false') ? null : $replyto);
|
||||
|
||||
if (is_string($notice)) {
|
||||
$this->showPage($notice);
|
||||
try {
|
||||
$notice = Notice::saveNew($user->id, $content,
|
||||
'web', 1, ($replyto == 'false') ? null : $replyto);
|
||||
} catch (Exception $e) {
|
||||
$this->showPage($e->getMessage());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -156,7 +156,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore
|
|||
return $this->new_access_token($consumer);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Revoke specified OAuth token
|
||||
*
|
||||
|
@ -363,9 +362,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore
|
|||
false,
|
||||
null,
|
||||
$omb_notice->getIdentifierURI());
|
||||
if (is_string($notice)) {
|
||||
throw new Exception($notice);
|
||||
}
|
||||
|
||||
common_broadcast_notice($notice, true);
|
||||
}
|
||||
|
||||
|
|
|
@ -260,10 +260,11 @@ class MailerDaemon
|
|||
|
||||
function add_notice($user, $msg, $fileRecords)
|
||||
{
|
||||
$notice = Notice::saveNew($user->id, $msg, 'mail');
|
||||
if (is_string($notice)) {
|
||||
$this->log(LOG_ERR, $notice);
|
||||
return $notice;
|
||||
try {
|
||||
$notice = Notice::saveNew($user->id, $msg, 'mail');
|
||||
} catch (Exception $e) {
|
||||
$this->log(LOG_ERR, $e->getMessage());
|
||||
return $e->getMessage();
|
||||
}
|
||||
foreach($fileRecords as $fileRecord){
|
||||
$this->attachFile($notice, $fileRecord);
|
||||
|
|
|
@ -323,12 +323,15 @@ class XMPPDaemon extends Daemon
|
|||
mb_strlen($content_shortened)));
|
||||
return;
|
||||
}
|
||||
$notice = Notice::saveNew($user->id, $content_shortened, 'xmpp');
|
||||
if (is_string($notice)) {
|
||||
$this->log(LOG_ERR, $notice);
|
||||
$this->from_site($user->jabber, $notice);
|
||||
|
||||
try {
|
||||
$notice = Notice::saveNew($user->id, $content_shortened, 'xmpp');
|
||||
} catch (Exception $e) {
|
||||
$this->log(LOG_ERR, $e->getMessage());
|
||||
$this->from_site($user->jabber, $e->getMessage());
|
||||
return;
|
||||
}
|
||||
|
||||
common_broadcast_notice($notice);
|
||||
$this->log(LOG_INFO,
|
||||
'Added notice ' . $notice->id . ' from user ' . $user->nickname);
|
||||
|
|
Loading…
Reference in New Issue
Block a user