push exception on missing profile down to Notice::getProfile()

This commit is contained in:
Evan Prodromou 2010-07-13 10:51:25 -04:00
parent ab149755b6
commit dfd65a4290
2 changed files with 9 additions and 7 deletions

View File

@ -90,7 +90,13 @@ class Notice extends Memcached_DataObject
function getProfile()
{
return Profile::staticGet('id', $this->profile_id);
$profile = Profile::staticGet('id', $this->profile_id);
if (empty($profile)) {
throw new ServerException(sprintf(_('No such profile (%d) for notice (%d)'), $this->profile_id, $this->id));
}
return $profile;
}
function delete()

View File

@ -462,10 +462,6 @@ class ApiAction extends Action
{
$profile = $notice->getProfile();
if (empty($profile)) {
throw new ServerException(sprintf(_('No such profile: %d'), $notice->profile_id));
}
$entry = array();
// We trim() to avoid extraneous whitespace in the output
@ -798,7 +794,7 @@ class ApiAction extends Action
$entry = $this->twitterRssEntryArray($n);
$this->showTwitterRssItem($entry);
} catch (Exception $e) {
common_log(LOG_ERR, "Error with notice {$n->id}: " . $e->getMessage());
common_log(LOG_ERR, $e->getMessage());
// continue on exceptions
}
}
@ -808,7 +804,7 @@ class ApiAction extends Action
$entry = $this->twitterRssEntryArray($notice);
$this->showTwitterRssItem($entry);
} catch (Exception $e) {
common_log(LOG_ERR, "Error with notice {$n->id}: " . $e->getMessage());
common_log(LOG_ERR, $e->getMessage());
// continue on exceptions
}
}