2011-05-15 18:31:30 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Brice Maron <brice@bmaron.net>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Christian Weiske <cweiske@cweiske.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Kamil Domanski <kdomanski@kdemail.net>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author michag86 <micha_g@arcor.de>
|
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-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author root <root@oc.(none)>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
2011-05-15 18:31:30 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2011-05-15 18:31:30 +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.
|
2014-05-21 14:14:10 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-05-15 18:31:30 +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.
|
2011-05-15 18:31:30 +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/>
|
2011-05-15 18:31:30 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-04-28 16:15:34 +03:00
|
|
|
namespace OC;
|
|
|
|
|
2016-01-14 19:35:28 +03:00
|
|
|
use OC\App\CodeChecker\CodeChecker;
|
|
|
|
use OC\App\CodeChecker\EmptyCheck;
|
|
|
|
use OC\App\CodeChecker\PrivateCheck;
|
2016-04-28 16:15:34 +03:00
|
|
|
use OC_App;
|
|
|
|
use OC_DB;
|
|
|
|
use OC_Helper;
|
2015-02-10 00:48:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides the functionality needed to install, update and remove plugins/apps
|
|
|
|
*/
|
2016-04-28 16:15:34 +03:00
|
|
|
class Installer {
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2011-05-15 18:31:30 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* This function installs an app. All information needed are passed in the
|
|
|
|
* associative array $data.
|
|
|
|
* The following keys are required:
|
|
|
|
* - source: string, can be "path" or "http"
|
|
|
|
*
|
|
|
|
* One of the following keys is required:
|
|
|
|
* - path: path to the file containing the app
|
|
|
|
* - href: link to the downloadable file containing the app
|
|
|
|
*
|
|
|
|
* The following keys are optional:
|
|
|
|
* - pretend: boolean, if set true the system won't do anything
|
|
|
|
* - noinstall: boolean, if true appinfo/install.php won't be loaded
|
|
|
|
* - inactive: boolean, if set true the appconfig/app.sample.php won't be
|
|
|
|
* renamed
|
|
|
|
*
|
|
|
|
* This function works as follows
|
|
|
|
* -# fetching the file
|
|
|
|
* -# unzipping it
|
2012-04-22 00:47:56 +04:00
|
|
|
* -# check the code
|
2011-05-28 19:33:25 +04:00
|
|
|
* -# installing the database at appinfo/database.xml
|
2011-05-15 18:31:30 +04:00
|
|
|
* -# including appinfo/install.php
|
|
|
|
* -# setting the installed version
|
|
|
|
*
|
|
|
|
* It is the task of oc_app_install to create the tables and do whatever is
|
|
|
|
* needed to get the app working.
|
2014-02-08 14:47:55 +04:00
|
|
|
*
|
2014-05-19 19:50:53 +04:00
|
|
|
* Installs an app
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param array $data with all information
|
|
|
|
* @throws \Exception
|
|
|
|
* @return integer
|
2011-05-15 18:31:30 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function installApp( $data = array()) {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2013-08-09 23:57:01 +04:00
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
list($extractDir, $path) = self::downloadApp($data);
|
|
|
|
|
2016-01-10 00:15:50 +03:00
|
|
|
$info = self::checkAppsIntegrity($data, $extractDir, $path);
|
|
|
|
$appId = OC_App::cleanAppId($info['id']);
|
|
|
|
$basedir = OC_App::getInstallPath().'/'.$appId;
|
2014-05-21 14:14:10 +04:00
|
|
|
//check if the destination directory already exists
|
|
|
|
if(is_dir($basedir)) {
|
|
|
|
OC_Helper::rmdirr($extractDir);
|
|
|
|
if($data['source']=='http') {
|
|
|
|
unlink($path);
|
|
|
|
}
|
|
|
|
throw new \Exception($l->t("App directory already exists"));
|
|
|
|
}
|
|
|
|
|
2014-06-02 23:37:39 +04:00
|
|
|
if(!empty($data['pretent'])) {
|
2014-05-21 14:14:10 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//copy the app to the correct place
|
|
|
|
if(@!mkdir($basedir)) {
|
|
|
|
OC_Helper::rmdirr($extractDir);
|
|
|
|
if($data['source']=='http') {
|
|
|
|
unlink($path);
|
|
|
|
}
|
|
|
|
throw new \Exception($l->t("Can't create app folder. Please fix permissions. %s", array($basedir)));
|
|
|
|
}
|
|
|
|
|
|
|
|
$extractDir .= '/' . $info['id'];
|
2015-08-10 10:36:16 +03:00
|
|
|
if(!file_exists($extractDir)) {
|
2015-08-10 11:34:44 +03:00
|
|
|
OC_Helper::rmdirr($basedir);
|
2015-08-10 10:36:16 +03:00
|
|
|
throw new \Exception($l->t("Archive does not contain a directory named %s", $info['id']));
|
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
OC_Helper::copyr($extractDir, $basedir);
|
|
|
|
|
|
|
|
//remove temporary files
|
|
|
|
OC_Helper::rmdirr($extractDir);
|
|
|
|
|
|
|
|
//install the database
|
|
|
|
if(is_file($basedir.'/appinfo/database.xml')) {
|
2015-07-03 15:16:29 +03:00
|
|
|
if (\OC::$server->getAppConfig()->getValue($info['id'], 'installed_version') === null) {
|
2014-05-21 14:14:10 +04:00
|
|
|
OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml');
|
|
|
|
} else {
|
|
|
|
OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 16:26:12 +03:00
|
|
|
\OC_App::setupBackgroundJobs($info['background-jobs']);
|
2016-08-09 00:31:26 +03:00
|
|
|
\OC::$server->getSettingsManager()->setupSettings($info['settings']);
|
2016-05-02 16:26:12 +03:00
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
//run appinfo/install.php
|
2016-01-14 19:26:30 +03:00
|
|
|
if((!isset($data['noinstall']) or $data['noinstall']==false)) {
|
|
|
|
self::includeAppScript($basedir . '/appinfo/install.php');
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
2016-04-28 11:07:29 +03:00
|
|
|
$appData = OC_App::getAppInfo($appId);
|
|
|
|
OC_App::executeRepairSteps($appId, $appData['repair-steps']['install']);
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
//set the installed version
|
2016-04-28 16:15:34 +03:00
|
|
|
\OC::$server->getConfig()->setAppValue($info['id'], 'installed_version', OC_App::getAppVersion($info['id']));
|
|
|
|
\OC::$server->getConfig()->setAppValue($info['id'], 'enabled', 'no');
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2016-04-28 16:15:34 +03:00
|
|
|
//set remote/public handlers
|
2014-05-21 14:14:10 +04:00
|
|
|
foreach($info['remote'] as $name=>$path) {
|
2016-04-28 16:15:34 +03:00
|
|
|
\OC::$server->getConfig()->setAppValue('core', 'remote_'.$name, $info['id'].'/'.$path);
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
foreach($info['public'] as $name=>$path) {
|
2016-04-28 16:15:34 +03:00
|
|
|
\OC::$server->getConfig()->setAppValue('core', 'public_'.$name, $info['id'].'/'.$path);
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
OC_App::setAppTypes($info['id']);
|
|
|
|
|
|
|
|
return $info['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief checks whether or not an app is installed
|
|
|
|
* @param string $app app
|
|
|
|
* @returns bool
|
|
|
|
*
|
|
|
|
* Checks whether or not an app is installed, i.e. registered in apps table.
|
|
|
|
*/
|
2016-04-28 16:15:34 +03:00
|
|
|
public static function isInstalled( $app ) {
|
|
|
|
return (\OC::$server->getConfig()->getAppValue($app, "installed_version", null) !== null);
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Update an application
|
2014-06-13 23:45:31 +04:00
|
|
|
* @param array $info
|
|
|
|
* @param bool $isShipped
|
2016-04-28 16:15:34 +03:00
|
|
|
* @throws \Exception
|
2016-01-10 00:15:50 +03:00
|
|
|
* @return bool
|
2014-05-21 14:14:10 +04:00
|
|
|
*
|
2013-10-28 21:01:54 +04:00
|
|
|
* This function could work like described below, but currently it disables and then
|
|
|
|
* enables the app again. This does result in an updated app.
|
|
|
|
*
|
|
|
|
*
|
2014-05-21 14:14:10 +04:00
|
|
|
* This function installs an app. All information needed are passed in the
|
2013-10-28 21:01:54 +04:00
|
|
|
* associative array $info.
|
2014-05-21 14:14:10 +04:00
|
|
|
* The following keys are required:
|
|
|
|
* - source: string, can be "path" or "http"
|
|
|
|
*
|
|
|
|
* One of the following keys is required:
|
|
|
|
* - path: path to the file containing the app
|
|
|
|
* - href: link to the downloadable file containing the app
|
|
|
|
*
|
|
|
|
* The following keys are optional:
|
|
|
|
* - pretend: boolean, if set true the system won't do anything
|
|
|
|
* - noupgrade: boolean, if true appinfo/upgrade.php won't be loaded
|
|
|
|
*
|
|
|
|
* This function works as follows
|
|
|
|
* -# fetching the file
|
|
|
|
* -# removing the old files
|
|
|
|
* -# unzipping new file
|
|
|
|
* -# including appinfo/upgrade.php
|
|
|
|
* -# setting the installed version
|
|
|
|
*
|
|
|
|
* upgrade.php can determine the current installed version of the app using
|
2015-07-03 15:16:29 +03:00
|
|
|
* "\OC::$server->getAppConfig()->getValue($appid, 'installed_version')"
|
2014-05-21 14:14:10 +04:00
|
|
|
*/
|
2016-01-10 00:15:50 +03:00
|
|
|
public static function updateApp($info=array(), $isShipped=false) {
|
2014-05-21 14:14:10 +04:00
|
|
|
list($extractDir, $path) = self::downloadApp($info);
|
2014-06-13 23:45:31 +04:00
|
|
|
$info = self::checkAppsIntegrity($info, $extractDir, $path, $isShipped);
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
$currentDir = OC_App::getAppPath($info['id']);
|
|
|
|
$basedir = OC_App::getInstallPath();
|
|
|
|
$basedir .= '/';
|
|
|
|
$basedir .= $info['id'];
|
|
|
|
|
2014-06-06 11:41:33 +04:00
|
|
|
if($currentDir !== false && is_writable($currentDir)) {
|
2014-05-21 14:14:10 +04:00
|
|
|
$basedir = $currentDir;
|
|
|
|
}
|
|
|
|
if(is_dir($basedir)) {
|
|
|
|
OC_Helper::rmdirr($basedir);
|
|
|
|
}
|
|
|
|
|
|
|
|
$appInExtractDir = $extractDir;
|
|
|
|
if (substr($extractDir, -1) !== '/') {
|
|
|
|
$appInExtractDir .= '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
$appInExtractDir .= $info['id'];
|
|
|
|
OC_Helper::copyr($appInExtractDir, $basedir);
|
|
|
|
OC_Helper::rmdirr($extractDir);
|
|
|
|
|
|
|
|
return OC_App::updateApp($info['id']);
|
|
|
|
}
|
|
|
|
|
2014-06-04 18:29:41 +04:00
|
|
|
/**
|
|
|
|
* update an app by it's id
|
2015-03-11 11:59:56 +03:00
|
|
|
*
|
|
|
|
* @param integer $ocsId
|
2014-06-04 18:29:41 +04:00
|
|
|
* @return bool
|
2016-04-28 16:15:34 +03:00
|
|
|
* @throws \Exception
|
2014-06-04 18:29:41 +04:00
|
|
|
*/
|
2015-03-11 11:59:56 +03:00
|
|
|
public static function updateAppByOCSId($ocsId) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$ocsClient = new OCSClient(
|
|
|
|
\OC::$server->getHTTPClientService(),
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
2015-12-18 17:26:54 +03:00
|
|
|
$appData = $ocsClient->getApplication($ocsId, \OCP\Util::getVersion());
|
|
|
|
$download = $ocsClient->getApplicationDownload($ocsId, \OCP\Util::getVersion());
|
2014-06-04 18:29:41 +04:00
|
|
|
|
|
|
|
if (isset($download['downloadlink']) && trim($download['downloadlink']) !== '') {
|
|
|
|
$download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']);
|
|
|
|
$info = array(
|
|
|
|
'source' => 'http',
|
|
|
|
'href' => $download['downloadlink'],
|
2015-03-11 11:59:56 +03:00
|
|
|
'appdata' => $appData
|
2014-06-04 18:29:41 +04:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
throw new \Exception('Could not fetch app info!');
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::updateApp($info);
|
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
2016-04-28 16:15:34 +03:00
|
|
|
* @throws \Exception
|
2014-05-21 14:14:10 +04:00
|
|
|
*/
|
|
|
|
public static function downloadApp($data = array()) {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!isset($data['source'])) {
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("No source specified when installing app"));
|
2011-05-28 19:33:25 +04:00
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2014-07-11 18:51:59 +04:00
|
|
|
//download the file if necessary
|
2012-09-07 17:22:01 +04:00
|
|
|
if($data['source']=='http') {
|
2014-07-11 18:51:59 +04:00
|
|
|
$pathInfo = pathinfo($data['href']);
|
2016-04-25 19:36:50 +03:00
|
|
|
$extension = isset($pathInfo['extension']) ? '.' . $pathInfo['extension'] : '';
|
|
|
|
$path = \OC::$server->getTempManager()->getTemporaryFile($extension);
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!isset($data['href'])) {
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("No href specified when installing app from http"));
|
2011-05-28 19:33:25 +04:00
|
|
|
}
|
2015-03-16 13:28:23 +03:00
|
|
|
$client = \OC::$server->getHTTPClientService()->newClient();
|
|
|
|
$client->get($data['href'], ['save_to' => $path]);
|
|
|
|
} else {
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!isset($data['path'])) {
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("No path specified when installing app from local file"));
|
2011-05-28 19:33:25 +04:00
|
|
|
}
|
|
|
|
$path=$data['path'];
|
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2012-03-29 02:07:28 +04:00
|
|
|
//detect the archive type
|
2015-11-26 12:18:32 +03:00
|
|
|
$mime = \OC::$server->getMimeTypeDetector()->detect($path);
|
2015-09-18 23:54:19 +03:00
|
|
|
if ($mime !=='application/zip' && $mime !== 'application/x-gzip' && $mime !== 'application/x-bzip2') {
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("Archives of type %s are not supported", array($mime)));
|
2012-03-29 02:07:28 +04:00
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2011-05-28 19:33:25 +04:00
|
|
|
//extract the archive in a temporary folder
|
2015-12-18 13:19:53 +03:00
|
|
|
$extractDir = \OC::$server->getTempManager()->getTemporaryFolder();
|
2012-04-22 00:47:56 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2011-05-28 19:33:25 +04:00
|
|
|
mkdir($extractDir);
|
2016-05-02 10:43:17 +03:00
|
|
|
if($archive=\OC\Archive\Archive::open($path)) {
|
2012-03-29 02:07:28 +04:00
|
|
|
$archive->extract($extractDir);
|
2011-05-28 19:33:25 +04:00
|
|
|
} else {
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2012-09-07 17:22:01 +04:00
|
|
|
if($data['source']=='http') {
|
2011-05-28 19:33:25 +04:00
|
|
|
unlink($path);
|
|
|
|
}
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("Failed to open archive when installing app"));
|
2011-05-28 19:33:25 +04:00
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
return array(
|
|
|
|
$extractDir,
|
|
|
|
$path
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check an app's integrity
|
|
|
|
* @param array $data
|
|
|
|
* @param string $extractDir
|
2016-01-10 00:15:50 +03:00
|
|
|
* @param string $path
|
2014-06-13 23:45:31 +04:00
|
|
|
* @param bool $isShipped
|
2014-05-21 14:14:10 +04:00
|
|
|
* @return array
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2016-01-10 00:15:50 +03:00
|
|
|
public static function checkAppsIntegrity($data, $extractDir, $path, $isShipped = false) {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2011-05-28 19:33:25 +04:00
|
|
|
//load the info.xml file of the app
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!is_file($extractDir.'/appinfo/info.xml')) {
|
2012-03-29 02:11:29 +04:00
|
|
|
//try to find it in a subdir
|
|
|
|
$dh=opendir($extractDir);
|
2013-09-04 15:06:04 +04:00
|
|
|
if(is_resource($dh)) {
|
|
|
|
while (($folder = readdir($dh)) !== false) {
|
|
|
|
if($folder[0]!='.' and is_dir($extractDir.'/'.$folder)) {
|
|
|
|
if(is_file($extractDir.'/'.$folder.'/appinfo/info.xml')) {
|
|
|
|
$extractDir.='/'.$folder;
|
|
|
|
}
|
2012-03-29 02:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!is_file($extractDir.'/appinfo/info.xml')) {
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2016-01-10 00:15:50 +03:00
|
|
|
if($data['source'] === 'http') {
|
2011-05-28 19:33:25 +04:00
|
|
|
unlink($path);
|
|
|
|
}
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("App does not provide an info.xml file"));
|
2011-05-28 19:33:25 +04:00
|
|
|
}
|
2016-01-10 00:15:50 +03:00
|
|
|
|
|
|
|
$info = OC_App::getAppInfo($extractDir.'/appinfo/info.xml', true);
|
2016-03-31 00:29:26 +03:00
|
|
|
if(!is_array($info)) {
|
|
|
|
throw new \Exception($l->t('App cannot be installed because appinfo file cannot be read.'));
|
|
|
|
}
|
2016-01-10 00:15:50 +03:00
|
|
|
|
|
|
|
// We can't trust the parsed info.xml file as it may have been tampered
|
|
|
|
// with by an attacker and thus we need to use the local data to check
|
|
|
|
// whether the application needs to be signed.
|
|
|
|
$appId = OC_App::cleanAppId($data['appdata']['id']);
|
|
|
|
$appBelongingToId = OC_App::getInternalAppIdByOcs($appId);
|
|
|
|
if(is_string($appBelongingToId)) {
|
|
|
|
$previouslySigned = \OC::$server->getConfig()->getAppValue($appBelongingToId, 'signed', 'false');
|
|
|
|
} else {
|
|
|
|
$appBelongingToId = $info['id'];
|
|
|
|
$previouslySigned = 'false';
|
|
|
|
}
|
|
|
|
if($data['appdata']['level'] === OC_App::officialApp || $previouslySigned === 'true') {
|
|
|
|
\OC::$server->getConfig()->setAppValue($appBelongingToId, 'signed', 'true');
|
|
|
|
$integrityResult = \OC::$server->getIntegrityCodeChecker()->verifyAppSignature(
|
|
|
|
$appBelongingToId,
|
|
|
|
$extractDir
|
|
|
|
);
|
|
|
|
if($integrityResult !== []) {
|
|
|
|
$e = new \Exception(
|
|
|
|
$l->t(
|
|
|
|
'Signature could not get checked. Please contact the app developer and check your admin screen.'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 02:39:59 +04:00
|
|
|
// check the code for not allowed calls
|
2016-04-28 16:15:34 +03:00
|
|
|
if(!$isShipped && !Installer::checkCode($extractDir)) {
|
2012-04-22 00:47:56 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2013-08-09 23:57:01 +04:00
|
|
|
throw new \Exception($l->t("App can't be installed because of not allowed code in the App"));
|
2012-04-22 00:47:56 +04:00
|
|
|
}
|
2012-05-18 17:54:36 +04:00
|
|
|
|
2012-07-24 02:39:59 +04:00
|
|
|
// check if the app is compatible with this version of ownCloud
|
2015-12-18 17:26:54 +03:00
|
|
|
if(!OC_App::isAppCompatible(\OCP\Util::getVersion(), $info)) {
|
2012-05-18 17:54:36 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2016-06-20 11:48:56 +03:00
|
|
|
throw new \Exception($l->t("App can't be installed because it is not compatible with this version of the server"));
|
2012-05-18 17:54:36 +04:00
|
|
|
}
|
|
|
|
|
2013-01-21 23:40:23 +04:00
|
|
|
// check if shipped tag is set which is only allowed for apps that are shipped with ownCloud
|
2014-06-13 23:45:31 +04:00
|
|
|
if(!$isShipped && isset($info['shipped']) && ($info['shipped']=='true')) {
|
2013-01-21 23:40:23 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2013-08-18 15:49:34 +04:00
|
|
|
throw new \Exception($l->t("App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps"));
|
2013-01-21 23:40:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// check if the ocs version is the same as the version in info.xml/version
|
2016-02-10 13:04:12 +03:00
|
|
|
$version = trim($info['version']);
|
2014-02-19 14:50:17 +04:00
|
|
|
|
2014-06-04 18:29:41 +04:00
|
|
|
if(isset($data['appdata']['version']) && $version<>trim($data['appdata']['version'])) {
|
2013-01-21 23:40:23 +04:00
|
|
|
OC_Helper::rmdirr($extractDir);
|
2016-02-10 13:04:12 +03:00
|
|
|
throw new \Exception($l->t("App can't be installed because the version in info.xml is not the same as the version reported from the app store"));
|
2013-01-21 23:40:23 +04:00
|
|
|
}
|
2013-11-18 15:19:16 +04:00
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
return $info;
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
|
|
|
|
2013-01-31 13:30:13 +04:00
|
|
|
/**
|
2014-05-21 14:14:10 +04:00
|
|
|
* Check if an update for the app is available
|
|
|
|
* @param string $app
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|false false or the version number of the update
|
2013-01-31 13:30:13 +04:00
|
|
|
*
|
|
|
|
* The function will check if an update for a version is available
|
|
|
|
*/
|
|
|
|
public static function isUpdateAvailable( $app ) {
|
2014-06-10 20:38:21 +04:00
|
|
|
static $isInstanceReadyForUpdates = null;
|
|
|
|
|
|
|
|
if ($isInstanceReadyForUpdates === null) {
|
|
|
|
$installPath = OC_App::getInstallPath();
|
|
|
|
if ($installPath === false || $installPath === null) {
|
|
|
|
$isInstanceReadyForUpdates = false;
|
|
|
|
} else {
|
|
|
|
$isInstanceReadyForUpdates = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isInstanceReadyForUpdates === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-03 15:16:29 +03:00
|
|
|
$ocsid=\OC::$server->getAppConfig()->getValue( $app, 'ocsid', '');
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2013-02-09 19:46:55 +04:00
|
|
|
if($ocsid<>'') {
|
2015-03-30 16:58:20 +03:00
|
|
|
$ocsClient = new OCSClient(
|
|
|
|
\OC::$server->getHTTPClientService(),
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
2015-12-18 17:26:54 +03:00
|
|
|
$ocsdata = $ocsClient->getApplication($ocsid, \OCP\Util::getVersion());
|
2013-01-30 15:08:14 +04:00
|
|
|
$ocsversion= (string) $ocsdata['version'];
|
2013-01-21 23:40:23 +04:00
|
|
|
$currentversion=OC_App::getAppVersion($app);
|
2014-07-10 19:17:55 +04:00
|
|
|
if (version_compare($ocsversion, $currentversion, '>')) {
|
2013-01-30 15:08:14 +04:00
|
|
|
return($ocsversion);
|
|
|
|
}else{
|
2013-10-25 17:33:45 +04:00
|
|
|
return false;
|
2013-01-30 15:08:14 +04:00
|
|
|
}
|
2013-01-21 23:40:23 +04:00
|
|
|
|
|
|
|
}else{
|
2013-10-25 17:33:45 +04:00
|
|
|
return false;
|
2013-01-21 23:40:23 +04:00
|
|
|
}
|
|
|
|
|
2013-01-31 13:30:13 +04:00
|
|
|
}
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2013-01-31 13:30:13 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if app is already downloaded
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $name name of the application to remove
|
|
|
|
* @return boolean
|
2013-01-31 13:30:13 +04:00
|
|
|
*
|
|
|
|
* The function will check if the app is already downloaded in the apps repository
|
|
|
|
*/
|
|
|
|
public static function isDownloaded( $name ) {
|
2016-04-28 16:15:34 +03:00
|
|
|
foreach(\OC::$APPSROOTS as $dir) {
|
2014-05-31 19:50:39 +04:00
|
|
|
$dirToTest = $dir['path'];
|
|
|
|
$dirToTest .= '/';
|
|
|
|
$dirToTest .= $name;
|
|
|
|
$dirToTest .= '/';
|
|
|
|
|
|
|
|
if (is_dir($dirToTest)) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-21 23:40:23 +04:00
|
|
|
}
|
2014-05-31 19:50:39 +04:00
|
|
|
|
|
|
|
return false;
|
2013-01-31 13:30:13 +04:00
|
|
|
}
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2011-05-15 18:31:30 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Removes an app
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $name name of the application to remove
|
2014-05-31 19:50:39 +04:00
|
|
|
* @return boolean
|
2011-05-15 18:31:30 +04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This function works as follows
|
2016-04-28 11:07:29 +03:00
|
|
|
* -# call uninstall repair steps
|
2011-05-15 18:31:30 +04:00
|
|
|
* -# removing the files
|
|
|
|
*
|
|
|
|
* The function will not delete preferences, tables and the configuration,
|
|
|
|
* this has to be done by the function oc_app_uninstall().
|
|
|
|
*/
|
2016-04-28 11:07:29 +03:00
|
|
|
public static function removeApp($appId) {
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2016-04-28 16:15:34 +03:00
|
|
|
if(Installer::isDownloaded( $appId )) {
|
2016-04-28 11:07:29 +03:00
|
|
|
$appDir=OC_App::getInstallPath() . '/' . $appId;
|
|
|
|
OC_Helper::rmdirr($appDir);
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2014-05-31 19:50:39 +04:00
|
|
|
return true;
|
2013-01-21 23:40:23 +04:00
|
|
|
}else{
|
2016-04-28 11:07:29 +03:00
|
|
|
\OCP\Util::writeLog('core', 'can\'t remove app '.$appId.'. It is not installed.', \OCP\Util::ERROR);
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2014-05-31 19:50:39 +04:00
|
|
|
return false;
|
2013-01-21 23:40:23 +04:00
|
|
|
}
|
|
|
|
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
2011-06-22 00:16:41 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Installs shipped apps
|
2011-06-22 00:16:41 +04:00
|
|
|
*
|
2012-04-29 16:38:56 +04:00
|
|
|
* This function installs all apps found in the 'apps' directory that should be enabled by default;
|
2016-03-21 18:31:59 +03:00
|
|
|
* @param bool $softErrors When updating we ignore errors and simply log them, better to have a
|
|
|
|
* working ownCloud at the end instead of an aborted update.
|
|
|
|
* @return array Array of error messages (appid => Exception)
|
2011-06-22 00:16:41 +04:00
|
|
|
*/
|
2016-03-21 18:31:59 +03:00
|
|
|
public static function installShippedApps($softErrors = false) {
|
|
|
|
$errors = [];
|
2016-04-28 16:15:34 +03:00
|
|
|
foreach(\OC::$APPSROOTS as $app_dir) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if($dir = opendir( $app_dir['path'] )) {
|
|
|
|
while( false !== ( $filename = readdir( $dir ))) {
|
|
|
|
if( substr( $filename, 0, 1 ) != '.' and is_dir($app_dir['path']."/$filename") ) {
|
2015-10-16 18:25:22 +03:00
|
|
|
if( file_exists( $app_dir['path']."/$filename/appinfo/info.xml" )) {
|
2016-04-28 16:15:34 +03:00
|
|
|
if(!Installer::isInstalled($filename)) {
|
2012-06-23 18:17:59 +04:00
|
|
|
$info=OC_App::getAppInfo($filename);
|
|
|
|
$enabled = isset($info['default_enable']);
|
2016-01-04 18:17:54 +03:00
|
|
|
if (($enabled || in_array($filename, \OC::$server->getAppManager()->getAlwaysEnabledApps()))
|
|
|
|
&& \OC::$server->getConfig()->getAppValue($filename, 'enabled') !== 'no') {
|
2016-03-21 18:31:59 +03:00
|
|
|
if ($softErrors) {
|
|
|
|
try {
|
2016-04-28 16:15:34 +03:00
|
|
|
Installer::installShippedApp($filename);
|
2016-03-21 18:31:59 +03:00
|
|
|
} catch (\Doctrine\DBAL\Exception\TableExistsException $e) {
|
|
|
|
$errors[$filename] = $e;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
2016-04-28 16:15:34 +03:00
|
|
|
Installer::installShippedApp($filename);
|
2016-03-21 18:31:59 +03:00
|
|
|
}
|
2016-01-04 18:17:54 +03:00
|
|
|
\OC::$server->getConfig()->setAppValue($filename, 'enabled', 'yes');
|
2012-06-23 18:17:59 +04:00
|
|
|
}
|
2012-06-05 00:37:00 +04:00
|
|
|
}
|
2011-06-22 00:16:41 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-23 18:21:47 +04:00
|
|
|
closedir( $dir );
|
2011-06-22 00:16:41 +04:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 18:31:59 +03:00
|
|
|
|
|
|
|
return $errors;
|
2011-06-22 00:16:41 +04:00
|
|
|
}
|
2011-08-22 16:17:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* install an app already placed in the app folder
|
|
|
|
* @param string $app id of the app to install
|
2014-02-08 14:47:55 +04:00
|
|
|
* @return integer
|
2011-08-22 16:17:38 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function installShippedApp($app) {
|
2011-08-22 16:17:38 +04:00
|
|
|
//install the database
|
2016-01-14 19:26:30 +03:00
|
|
|
$appPath = OC_App::getAppPath($app);
|
|
|
|
if(is_file("$appPath/appinfo/database.xml")) {
|
|
|
|
OC_DB::createDbFromStructure("$appPath/appinfo/database.xml");
|
2011-08-22 16:17:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//run appinfo/install.php
|
2016-05-10 12:49:55 +03:00
|
|
|
\OC_App::registerAutoloading($app, $appPath);
|
2016-01-14 19:26:30 +03:00
|
|
|
self::includeAppScript("$appPath/appinfo/install.php");
|
|
|
|
|
|
|
|
$info = OC_App::getAppInfo($app);
|
2014-01-15 20:11:29 +04:00
|
|
|
if (is_null($info)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-02 16:26:12 +03:00
|
|
|
\OC_App::setupBackgroundJobs($info['background-jobs']);
|
2015-12-02 17:56:59 +03:00
|
|
|
|
2016-04-28 11:07:29 +03:00
|
|
|
OC_App::executeRepairSteps($app, $info['repair-steps']['install']);
|
|
|
|
|
2015-12-02 17:56:59 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
|
|
|
$config->setAppValue($app, 'installed_version', OC_App::getAppVersion($app));
|
2014-05-31 20:02:59 +04:00
|
|
|
if (array_key_exists('ocsid', $info)) {
|
2015-12-02 17:56:59 +03:00
|
|
|
$config->setAppValue($app, 'ocsid', $info['ocsid']);
|
2014-05-31 20:02:59 +04:00
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2015-01-29 00:08:50 +03:00
|
|
|
//set remote/public handlers
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($info['remote'] as $name=>$path) {
|
2015-12-02 17:56:59 +03:00
|
|
|
$config->setAppValue('core', 'remote_'.$name, $app.'/'.$path);
|
2012-05-11 22:58:23 +04:00
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($info['public'] as $name=>$path) {
|
2015-12-02 17:56:59 +03:00
|
|
|
$config->setAppValue('core', 'public_'.$name, $app.'/'.$path);
|
2012-05-11 22:58:23 +04:00
|
|
|
}
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2012-05-15 00:49:20 +04:00
|
|
|
OC_App::setAppTypes($info['id']);
|
2012-08-04 23:25:03 +04:00
|
|
|
|
2012-08-05 03:40:19 +04:00
|
|
|
return $info['id'];
|
2011-08-22 16:17:38 +04:00
|
|
|
}
|
2012-04-22 00:47:56 +04:00
|
|
|
|
2012-07-24 02:39:59 +04:00
|
|
|
/**
|
|
|
|
* check the code of an app with some static code checks
|
|
|
|
* @param string $folder the folder of the app to check
|
2014-02-08 14:47:55 +04:00
|
|
|
* @return boolean true for app is o.k. and false for app is not o.k.
|
2012-07-24 02:39:59 +04:00
|
|
|
*/
|
2015-01-30 19:31:51 +03:00
|
|
|
public static function checkCode($folder) {
|
2012-04-22 00:47:56 +04:00
|
|
|
// is the code checker enabled?
|
2015-12-02 17:56:59 +03:00
|
|
|
if(!\OC::$server->getConfig()->getSystemValue('appcodechecker', false)) {
|
2012-07-24 02:39:59 +04:00
|
|
|
return true;
|
2012-04-22 00:47:56 +04:00
|
|
|
}
|
2015-01-30 19:31:51 +03:00
|
|
|
|
2016-01-14 19:35:28 +03:00
|
|
|
$codeChecker = new CodeChecker(new PrivateCheck(new EmptyCheck()));
|
2015-01-30 19:31:51 +03:00
|
|
|
$errors = $codeChecker->analyseFolder($folder);
|
|
|
|
|
|
|
|
return empty($errors);
|
2012-07-24 02:39:59 +04:00
|
|
|
}
|
2016-01-14 19:26:30 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $basedir
|
|
|
|
*/
|
|
|
|
private static function includeAppScript($script) {
|
|
|
|
if ( file_exists($script) ){
|
|
|
|
include $script;
|
|
|
|
}
|
|
|
|
}
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|