2011-07-27 21:07:28 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2011-07-27 21:07:28 +04:00
|
|
|
*/
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Hook{
|
2015-03-24 12:19:30 +03:00
|
|
|
public static $thrownExceptions = [];
|
|
|
|
|
2011-07-27 21:07:28 +04:00
|
|
|
static private $registered = array();
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* connects a function to a hook
|
2015-04-02 18:53:40 +03:00
|
|
|
*
|
|
|
|
* @param string $signalClass class name of emitter
|
|
|
|
* @param string $signalName name of signal
|
|
|
|
* @param string|object $slotClass class name of slot
|
|
|
|
* @param string $slotName name of slot
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2011-07-27 21:07:28 +04:00
|
|
|
*
|
|
|
|
* This function makes it very easy to connect to use hooks.
|
|
|
|
*
|
|
|
|
* TODO: write example
|
|
|
|
*/
|
2015-04-02 18:53:40 +03:00
|
|
|
static public function connect($signalClass, $signalName, $slotClass, $slotName ) {
|
2013-02-22 20:21:57 +04:00
|
|
|
// If we're trying to connect to an emitting class that isn't
|
2013-02-06 21:43:03 +04:00
|
|
|
// yet registered, register it
|
2015-04-02 18:53:40 +03:00
|
|
|
if( !array_key_exists($signalClass, self::$registered )) {
|
|
|
|
self::$registered[$signalClass] = array();
|
2011-07-27 21:07:28 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
// If we're trying to connect to an emitting method that isn't
|
2013-02-06 21:43:03 +04:00
|
|
|
// yet registered, register it with the emitting class
|
2015-04-02 18:53:40 +03:00
|
|
|
if( !array_key_exists( $signalName, self::$registered[$signalClass] )) {
|
|
|
|
self::$registered[$signalClass][$signalName] = array();
|
2011-07-27 21:07:28 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2016-01-11 14:26:04 +03:00
|
|
|
// don't connect hooks twice
|
2015-04-02 18:53:40 +03:00
|
|
|
foreach (self::$registered[$signalClass][$signalName] as $hook) {
|
|
|
|
if ($hook['class'] === $slotClass and $hook['name'] === $slotName) {
|
2014-06-05 23:08:30 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 21:43:03 +04:00
|
|
|
// Connect the hook handler to the requested emitter
|
2015-04-02 18:53:40 +03:00
|
|
|
self::$registered[$signalClass][$signalName][] = array(
|
|
|
|
"class" => $slotClass,
|
|
|
|
"name" => $slotName
|
2013-02-10 01:44:11 +04:00
|
|
|
);
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2011-07-27 21:07:28 +04:00
|
|
|
// No chance for failure ;-)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* emits a signal
|
2015-04-01 13:35:42 +03:00
|
|
|
*
|
|
|
|
* @param string $signalClass class name of emitter
|
|
|
|
* @param string $signalName name of signal
|
2014-05-13 02:27:36 +04:00
|
|
|
* @param mixed $params default: array() array with additional data
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return bool true if slots exists or false if not
|
2016-01-11 14:26:04 +03:00
|
|
|
* @throws \OC\HintException
|
|
|
|
* @throws \OC\ServerNotAvailableException Emits a signal. To get data from the slot use references!
|
2011-07-27 21:07:28 +04:00
|
|
|
*
|
|
|
|
* TODO: write example
|
|
|
|
*/
|
2015-06-15 15:10:10 +03:00
|
|
|
static public function emit($signalClass, $signalName, $params = []) {
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-06 21:43:03 +04:00
|
|
|
// Return false if no hook handlers are listening to this
|
|
|
|
// emitting class
|
2015-04-01 13:35:42 +03:00
|
|
|
if( !array_key_exists($signalClass, self::$registered )) {
|
2011-07-27 21:07:28 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-06 21:43:03 +04:00
|
|
|
// Return false if no hook handlers are listening to this
|
|
|
|
// emitting method
|
2015-04-01 13:35:42 +03:00
|
|
|
if( !array_key_exists( $signalName, self::$registered[$signalClass] )) {
|
2011-07-27 21:07:28 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2011-07-27 21:07:28 +04:00
|
|
|
// Call all slots
|
2015-04-01 13:35:42 +03:00
|
|
|
foreach( self::$registered[$signalClass][$signalName] as $i ) {
|
2012-12-16 23:29:36 +04:00
|
|
|
try {
|
|
|
|
call_user_func( array( $i["class"], $i["name"] ), $params );
|
|
|
|
} catch (Exception $e){
|
2015-03-24 12:19:30 +03:00
|
|
|
self::$thrownExceptions[] = $e;
|
2016-01-11 14:26:04 +03:00
|
|
|
\OC::$server->getLogger()->logException($e);
|
2015-11-13 19:14:08 +03:00
|
|
|
if($e instanceof \OC\HintException) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2015-04-10 15:51:21 +03:00
|
|
|
if($e instanceof \OC\ServerNotAvailableException) {
|
2015-04-01 18:12:28 +03:00
|
|
|
throw $e;
|
|
|
|
}
|
2012-12-16 23:29:36 +04:00
|
|
|
}
|
2011-07-27 21:07:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-05-11 22:33:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clear hooks
|
2016-01-11 14:26:04 +03:00
|
|
|
* @param string $signalClass
|
|
|
|
* @param string $signalName
|
2012-05-11 22:33:23 +04:00
|
|
|
*/
|
2016-01-11 14:26:04 +03:00
|
|
|
static public function clear($signalClass='', $signalName='') {
|
|
|
|
if ($signalClass) {
|
|
|
|
if ($signalName) {
|
|
|
|
self::$registered[$signalClass][$signalName]=array();
|
2012-05-11 22:33:23 +04:00
|
|
|
}else{
|
2016-01-11 14:26:04 +03:00
|
|
|
self::$registered[$signalClass]=array();
|
2012-05-11 22:33:23 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
self::$registered=array();
|
|
|
|
}
|
|
|
|
}
|
2013-12-19 23:18:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DO NOT USE!
|
|
|
|
* For unit tests ONLY!
|
|
|
|
*/
|
|
|
|
static public function getHooks() {
|
|
|
|
return self::$registered;
|
|
|
|
}
|
2011-07-27 21:07:28 +04:00
|
|
|
}
|