From 0767bf487e2bff3f071459e36e56802d5b07c416 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Wed, 23 Mar 2016 15:22:34 +0100 Subject: [PATCH] Use the new onUpdateKeys in dataobject for tasks on-update of keys sets the hashkey column of the row to sha1(topic + '|' + callback) --- plugins/OStatus/classes/HubSub.php | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/plugins/OStatus/classes/HubSub.php b/plugins/OStatus/classes/HubSub.php index a2d6e2e51e..7b911d1d66 100644 --- a/plugins/OStatus/classes/HubSub.php +++ b/plugins/OStatus/classes/HubSub.php @@ -17,9 +17,7 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } /** * PuSH feed subscription record @@ -202,16 +200,25 @@ class HubSub extends Managed_DataObject } } - /** - * Insert wrapper; transparently set the hash key from topic and callback columns. - * @return mixed success - */ - function insert() + // set the hashkey automagically on insert + protected function onInsert() { - $this->hashkey = self::hashkey($this->getTopic(), $this->callback); + $this->setHashkey(); $this->created = common_sql_now(); $this->modified = common_sql_now(); - return parent::insert(); + } + + // update the hashkey automagically if needed + protected function onUpdateKeys(Managed_DataObject $orig) + { + if ($this->topic !== $orig->topic || $this->callback !== $orig->callback) { + $this->setHashkey(); + } + } + + protected function setHashkey() + { + $this->hashkey = self::hashkey($this->topic, $this->callback); } /** @@ -322,7 +329,7 @@ class HubSub extends Managed_DataObject if ($response->isOk()) { $orig = clone($this); $this->callback = $httpscallback; - $this->hashkey = self::hashkey($this->getTopic(), $this->callback); + // NOTE: hashkey will be set in $this->onUpdateKeys($orig) through updateWithKeys $this->updateWithKeys($orig); return true; }