2013-08-17 13:16:48 +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 Bernhard Posselt <dev@bernhard-posselt.com>
|
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 Thomas Müller <thomas.mueller@tmit.eu>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-17 13:16:48 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
namespace OC\AppFramework\Core;
|
2013-08-21 03:02:15 +04:00
|
|
|
use OCP\AppFramework\IApi;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is used to wrap the owncloud static api calls into an object to make the
|
|
|
|
* code better abstractable for use in the dependency injection container
|
|
|
|
*
|
|
|
|
* Should you find yourself in need for more methods, simply inherit from this
|
|
|
|
* class and add your methods
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2013-08-21 03:02:15 +04:00
|
|
|
class API implements IApi{
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
private $appName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* constructor
|
|
|
|
* @param string $appName the name of your application
|
|
|
|
*/
|
|
|
|
public function __construct($appName){
|
|
|
|
$this->appName = $appName;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the userid of the current user
|
|
|
|
* @return string the user id of the current user
|
2014-11-12 19:39:25 +03:00
|
|
|
* @deprecated Use \OC::$server->getUserSession()->getUser()->getUID()
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function getUserId(){
|
|
|
|
return \OCP\User::getUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new javascript file
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated include javascript and css in template files
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $scriptName the name of the javascript in js/ without the suffix
|
|
|
|
* @param string $appName the name of the app, defaults to the current one
|
|
|
|
*/
|
|
|
|
public function addScript($scriptName, $appName=null){
|
|
|
|
if($appName === null){
|
|
|
|
$appName = $this->appName;
|
|
|
|
}
|
|
|
|
\OCP\Util::addScript($appName, $scriptName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new css file
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated include javascript and css in template files
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $styleName the name of the css file in css/without the suffix
|
|
|
|
* @param string $appName the name of the app, defaults to the current one
|
|
|
|
*/
|
|
|
|
public function addStyle($styleName, $appName=null){
|
|
|
|
if($appName === null){
|
|
|
|
$appName = $this->appName;
|
|
|
|
}
|
|
|
|
\OCP\Util::addStyle($appName, $styleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated include javascript and css in template files
|
2013-08-17 13:16:48 +04:00
|
|
|
* shorthand for addScript for files in the 3rdparty directory
|
|
|
|
* @param string $name the name of the file without the suffix
|
|
|
|
*/
|
|
|
|
public function add3rdPartyScript($name){
|
|
|
|
\OCP\Util::addScript($this->appName . '/3rdparty', $name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated include javascript and css in template files
|
2013-08-17 13:16:48 +04:00
|
|
|
* shorthand for addStyle for files in the 3rdparty directory
|
|
|
|
* @param string $name the name of the file without the suffix
|
|
|
|
*/
|
|
|
|
public function add3rdPartyStyle($name){
|
|
|
|
\OCP\Util::addStyle($this->appName . '/3rdparty', $name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated communication between apps should happen over built in
|
|
|
|
* callbacks or interfaces (check the contacts and calendar managers)
|
2013-08-17 13:16:48 +04:00
|
|
|
* Checks if an app is enabled
|
2014-12-16 21:50:31 +03:00
|
|
|
* also use \OC::$server->getAppManager()->isEnabledForUser($appName)
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $appName the name of an app
|
|
|
|
* @return bool true if app is enabled
|
|
|
|
*/
|
|
|
|
public function isAppEnabled($appName){
|
|
|
|
return \OCP\App::isEnabled($appName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-08-29 19:21:52 +04:00
|
|
|
* used to return and open a new event source
|
|
|
|
* @return \OCP\IEventSource a new open EventSource class
|
2014-11-12 19:39:25 +03:00
|
|
|
* @deprecated Use \OC::$server->createEventSource();
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function openEventSource(){
|
2014-09-04 03:10:02 +04:00
|
|
|
return \OC::$server->createEventSource();
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated register hooks directly for class that build in hook interfaces
|
2014-05-19 19:50:53 +04:00
|
|
|
* connects a function to a hook
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $signalClass class name of emitter
|
|
|
|
* @param string $signalName name of signal
|
|
|
|
* @param string $slotClass class name of slot
|
|
|
|
* @param string $slotName name of slot, in another word, this is the
|
|
|
|
* name of the method that will be called when registered
|
|
|
|
* signal is emitted.
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return bool always true
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function connectHook($signalClass, $signalName, $slotClass, $slotName) {
|
|
|
|
return \OCP\Util::connectHook($signalClass, $signalName, $slotClass, $slotName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated implement the emitter interface instead
|
2014-05-19 19:50:53 +04:00
|
|
|
* Emits a signal. To get data from the slot use references!
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $signalClass class name of emitter
|
|
|
|
* @param string $signalName name of signal
|
2014-05-11 17:24:42 +04:00
|
|
|
* @param array $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
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function emitHook($signalClass, $signalName, $params = array()) {
|
|
|
|
return \OCP\Util::emitHook($signalClass, $signalName, $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* clear hooks
|
2014-12-16 21:50:31 +03:00
|
|
|
* @deprecated clear hooks directly for class that build in hook interfaces
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $signalClass
|
|
|
|
* @param string $signalName
|
|
|
|
*/
|
|
|
|
public function clearHook($signalClass=false, $signalName=false) {
|
|
|
|
if ($signalClass) {
|
|
|
|
\OC_Hook::clear($signalClass, $signalName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a backgroundjob task
|
|
|
|
* @param string $className full namespace and class name of the class
|
|
|
|
* @param string $methodName the name of the static method that should be
|
|
|
|
* called
|
2014-11-12 19:39:25 +03:00
|
|
|
* @deprecated Use \OC::$server->getJobList()->add();
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function addRegularTask($className, $methodName) {
|
|
|
|
\OCP\Backgroundjob::addRegularTask($className, $methodName);
|
|
|
|
}
|
|
|
|
|
2013-09-25 13:05:24 +04:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
/**
|
|
|
|
* Tells ownCloud to include a template in the admin overview
|
|
|
|
* @param string $mainPath the path to the main php file without the php
|
|
|
|
* suffix, relative to your apps directory! not the template directory
|
|
|
|
* @param string $appName the name of the app, defaults to the current one
|
|
|
|
*/
|
|
|
|
public function registerAdmin($mainPath, $appName=null) {
|
|
|
|
if($appName === null){
|
|
|
|
$appName = $this->appName;
|
|
|
|
}
|
|
|
|
|
|
|
|
\OCP\App::registerAdmin($appName, $mainPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|