From: Evan Prodromou Date: Mon, 15 Dec 2008 13:48:24 +0000 (-0500) Subject: correctly handle remote re-subscribe X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9ef3f7cee601c80d93924eec2216a36bcbce73ef;p=quix0rs-gnu-social.git correctly handle remote re-subscribe darcs-hash:20081215134824-84dde-de48c99b6cb45cc461125a7f8f382eb57de0bf28.gz --- diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php index 97f9720430..58040683fd 100644 --- a/actions/finishremotesubscribe.php +++ b/actions/finishremotesubscribe.php @@ -188,13 +188,31 @@ class FinishremotesubscribeAction extends Action { } $sub = new Subscription(); + $sub->subscriber = $remote->id; $sub->subscribed = $user->id; + + $sub_exists = false; + + if ($sub->find(true)) { + $sub_exists = true; + $orig_sub = clone($sub); + } else { + $sub_exists = false; + $sub->created = DB_DataObject_Cast::dateTime(); # current time + } + $sub->token = $newtok; $sub->secret = $newsecret; - $sub->created = DB_DataObject_Cast::dateTime(); # current time - if (!$sub->insert()) { + if ($sub_exists) { + $result = $sub->update($orig_sub); + } else { + $result = $sub->insert(); + } + + if (!$result) { + common_log_db_error($sub, ($sub_exists) ? 'UPDATE' : 'INSERT', __FILE__); common_user_error(_('Couldn\'t insert new subscription.')); return; }