. */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } // @todo FIXME: Documentation needed. class SubeditAction extends Action { var $profile = null; function prepare(array $args = array()) { parent::prepare($args); if (!common_logged_in()) { // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); } $id = $this->trimmed('profile'); if (!$id) { // TRANS: Client error displayed trying a change a subscription without providing a profile. $this->clientError(_('No profile specified.')); } $this->profile = Profile::getKV('id', $id); if (!$this->profile) { // TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. $this->clientError(_('No profile with that ID.')); } return true; } function handle() { parent::handle(); if ($_SERVER['REQUEST_METHOD'] == 'POST') { $cur = common_current_user(); $sub = Subscription::pkeyGet(array('subscriber' => $cur->id, 'subscribed' => $this->profile->id)); if (!$sub) { // TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. $this->clientError(_('You are not subscribed to that profile.')); } $orig = clone($sub); $sub->jabber = $this->boolean('jabber'); $sub->sms = $this->boolean('sms'); $result = $sub->update($orig); if (!$result) { common_log_db_error($sub, 'UPDATE', __FILE__); // TRANS: Server error displayed when updating a subscription fails with a database error. $this->serverError(_('Could not save subscription.')); } common_redirect(common_local_url('subscriptions', array('nickname' => $cur->nickname)), 303); } } }