Blame view

sources/lib/private/installer.php 16.9 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
  <?php
  /**
   * ownCloud
   *
   * @author Robin Appelman
   * @copyright 2012 Frank Karlitschek frank@owncloud.org
   *
6d9380f96   Cédric Dupont   Update sources OC...
8
9
10
   * @author Georg Ehrke
   * @copytight 2014 Georg Ehrke georg@ownCloud.com
   *
03e52840d   Kload   Init
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library 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 along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  /**
   * This class provides the functionality needed to install, update and remove plugins/apps
   */
  class OC_Installer{
6d9380f96   Cédric Dupont   Update sources OC...
30

03e52840d   Kload   Init
31
  	/**
03e52840d   Kload   Init
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  	 *
  	 * 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
  	 *   -# check the code
  	 *   -# installing the database at appinfo/database.xml
  	 *   -# 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.
6d9380f96   Cédric Dupont   Update sources OC...
58
59
60
61
62
  	 *
  	 * Installs an app
  	 * @param array $data with all information
  	 * @throws \Exception
  	 * @return integer
03e52840d   Kload   Init
63
64
  	 */
  	public static function installApp( $data = array()) {
31b7f2792   Kload   Upgrade to ownclo...
65
  		$l = \OC_L10N::get('lib');
6d9380f96   Cédric Dupont   Update sources OC...
66
67
  		list($extractDir, $path) = self::downloadApp($data);
  		$info = self::checkAppsIntegrity($data, $extractDir, $path);
03e52840d   Kload   Init
68
69
70
71
  
  		$basedir=OC_App::getInstallPath().'/'.$info['id'];
  		//check if the destination directory already exists
  		if(is_dir($basedir)) {
03e52840d   Kload   Init
72
73
74
75
  			OC_Helper::rmdirr($extractDir);
  			if($data['source']=='http') {
  				unlink($path);
  			}
31b7f2792   Kload   Upgrade to ownclo...
76
  			throw new \Exception($l->t("App directory already exists"));
03e52840d   Kload   Init
77
  		}
6d9380f96   Cédric Dupont   Update sources OC...
78
  		if(!empty($data['pretent'])) {
03e52840d   Kload   Init
79
80
81
82
83
  			return false;
  		}
  
  		//copy the app to the correct place
  		if(@!mkdir($basedir)) {
03e52840d   Kload   Init
84
85
86
87
  			OC_Helper::rmdirr($extractDir);
  			if($data['source']=='http') {
  				unlink($path);
  			}
31b7f2792   Kload   Upgrade to ownclo...
88
  			throw new \Exception($l->t("Can't create app folder. Please fix permissions. %s", array($basedir)));
03e52840d   Kload   Init
89
  		}
6d9380f96   Cédric Dupont   Update sources OC...
90
91
  
  		$extractDir .= '/' . $info['id'];
03e52840d   Kload   Init
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  		OC_Helper::copyr($extractDir, $basedir);
  
  		//remove temporary files
  		OC_Helper::rmdirr($extractDir);
  
  		//install the database
  		if(is_file($basedir.'/appinfo/database.xml')) {
  			if (OC_Appconfig::getValue($info['id'], 'installed_version') === null) {
  				OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml');
  			} else {
  				OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml');
  			}
  		}
  
  		//run appinfo/install.php
  		if((!isset($data['noinstall']) or $data['noinstall']==false) and file_exists($basedir.'/appinfo/install.php')) {
  			include $basedir.'/appinfo/install.php';
  		}
  
  		//set the installed version
  		OC_Appconfig::setValue($info['id'], 'installed_version', OC_App::getAppVersion($info['id']));
  		OC_Appconfig::setValue($info['id'], 'enabled', 'no');
  
  		//set remote/public handelers
  		foreach($info['remote'] as $name=>$path) {
  			OCP\CONFIG::setAppValue('core', 'remote_'.$name, $info['id'].'/'.$path);
  		}
  		foreach($info['public'] as $name=>$path) {
  			OCP\CONFIG::setAppValue('core', 'public_'.$name, $info['id'].'/'.$path);
  		}
  
  		OC_App::setAppTypes($info['id']);
  
  		return $info['id'];
  	}
  
  	/**
  	 * @brief checks whether or not an app is installed
6d9380f96   Cédric Dupont   Update sources OC...
130
131
  	 * @param string $app app
  	 * @returns bool
03e52840d   Kload   Init
132
133
134
135
  	 *
  	 * Checks whether or not an app is installed, i.e. registered in apps table.
  	 */
  	public static function isInstalled( $app ) {
6d9380f96   Cédric Dupont   Update sources OC...
136
  		return (OC_Appconfig::getValue($app, "installed_version") !== null);
03e52840d   Kload   Init
137
138
139
140
  	}
  
  	/**
  	 * @brief Update an application
6d9380f96   Cédric Dupont   Update sources OC...
141
142
143
144
145
146
  	 * @param array $info
  	 * @param bool $isShipped
  	 *
  	 * This function could work like described below, but currently it disables and then
  	 * enables the app again. This does result in an updated app.
  	 *
03e52840d   Kload   Init
147
148
  	 *
  	 * This function installs an app. All information needed are passed in the
6d9380f96   Cédric Dupont   Update sources OC...
149
  	 * associative array $info.
03e52840d   Kload   Init
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
  	 * 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
  	 * "OC_Appconfig::getValue($appid, 'installed_version')"
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
  	public static function updateApp( $info=array(), $isShipped=false) {
  		list($extractDir, $path) = self::downloadApp($info);
  		$info = self::checkAppsIntegrity($info, $extractDir, $path, $isShipped);
  
  		$currentDir = OC_App::getAppPath($info['id']);
  		$basedir  = OC_App::getInstallPath();
  		$basedir .= '/';
  		$basedir .= $info['id'];
  
  		if($currentDir !== false && is_writable($currentDir)) {
  			$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']);
  	}
  
  	/**
  	 * update an app by it's id
  	 * @param integer $ocsid
  	 * @param bool $isShipped
  	 * @return bool
  	 * @throws Exception
  	 */
  	public static function updateAppByOCSId($ocsid, $isShipped=false) {
  		$appdata = OC_OCSClient::getApplication($ocsid);
  		$download = OC_OCSClient::getApplicationDownload($ocsid, 1);
  
  		if (isset($download['downloadlink']) && trim($download['downloadlink']) !== '') {
  			$download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']);
  			$info = array(
  				'source' => 'http',
  				'href' => $download['downloadlink'],
  				'appdata' => $appdata
  			);
  		} else {
  			throw new \Exception('Could not fetch app info!');
  		}
  
  		return self::updateApp($info);
  	}
  
  	/**
  	 * @param array $data
  	 * @return array
  	 * @throws Exception
  	 */
  	public static function downloadApp($data = array()) {
  		$l = \OC_L10N::get('lib');
  
  		if(!isset($data['source'])) {
  			throw new \Exception($l->t("No source specified when installing app"));
  		}
  
  		//download the file if necessary
  		if($data['source']=='http') {
  			$pathInfo = pathinfo($data['href']);
  			$path=OC_Helper::tmpFile('.' . $pathInfo['extension']);
  			if(!isset($data['href'])) {
  				throw new \Exception($l->t("No href specified when installing app from http"));
  			}
  			copy($data['href'], $path);
  		}else{
  			if(!isset($data['path'])) {
  				throw new \Exception($l->t("No path specified when installing app from local file"));
  			}
  			$path=$data['path'];
  		}
  
  		//detect the archive type
  		$mime=OC_Helper::getMimeType($path);
  		if ($mime !=='application/zip' && $mime !== 'application/x-gzip') {
  			throw new \Exception($l->t("Archives of type %s are not supported", array($mime)));
  		}
  
  		//extract the archive in a temporary folder
  		$extractDir=OC_Helper::tmpFolder();
  		OC_Helper::rmdirr($extractDir);
  		mkdir($extractDir);
  		if($archive=OC_Archive::open($path)) {
  			$archive->extract($extractDir);
  		} else {
  			OC_Helper::rmdirr($extractDir);
  			if($data['source']=='http') {
  				unlink($path);
  			}
  			throw new \Exception($l->t("Failed to open archive when installing app"));
  		}
  
  		return array(
  			$extractDir,
  			$path
  		);
  	}
  
  	/**
  	 * check an app's integrity
  	 * @param array $data
  	 * @param string $extractDir
  	 * @param bool $isShipped
  	 * @return array
  	 * @throws \Exception
  	 */
  	public static function checkAppsIntegrity($data = array(), $extractDir, $path, $isShipped=false) {
  		$l = \OC_L10N::get('lib');
  		//load the info.xml file of the app
  		if(!is_file($extractDir.'/appinfo/info.xml')) {
  			//try to find it in a subdir
  			$dh=opendir($extractDir);
  			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;
  						}
  					}
  				}
  			}
  		}
  		if(!is_file($extractDir.'/appinfo/info.xml')) {
  			OC_Helper::rmdirr($extractDir);
  			if($data['source']=='http') {
  				unlink($path);
  			}
  			throw new \Exception($l->t("App does not provide an info.xml file"));
  		}
  		$info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml', true);
  		// check the code for not allowed calls
  		if(!$isShipped && !OC_Installer::checkCode($info['id'], $extractDir)) {
  			OC_Helper::rmdirr($extractDir);
  			throw new \Exception($l->t("App can't be installed because of not allowed code in the App"));
  		}
  
  		// check if the app is compatible with this version of ownCloud
  		if(!OC_App::isAppCompatible(OC_Util::getVersion(), $info)) {
  			OC_Helper::rmdirr($extractDir);
  			throw new \Exception($l->t("App can't be installed because it is not compatible with this version of ownCloud"));
  		}
  
  		// check if shipped tag is set which is only allowed for apps that are shipped with ownCloud
  		if(!$isShipped && isset($info['shipped']) && ($info['shipped']=='true')) {
  			OC_Helper::rmdirr($extractDir);
  			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"));
  		}
  
  		// check if the ocs version is the same as the version in info.xml/version
  		$versionFile= $extractDir.'/appinfo/version';
  		if(is_file($versionFile)) {
  			$version = trim(file_get_contents($versionFile));
  		}else{
  			$version = trim($info['version']);
  		}
  
  		if(isset($data['appdata']['version']) && $version<>trim($data['appdata']['version'])) {
  			OC_Helper::rmdirr($extractDir);
  			throw new \Exception($l->t("App can't be installed because the version in info.xml/version is not the same as the version reported from the app store"));
  		}
  
  		return $info;
03e52840d   Kload   Init
341
342
343
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
344
345
346
  	 * Check if an update for the app is available
  	 * @param string $app
  	 * @return string|false false or the version number of the update
03e52840d   Kload   Init
347
348
349
350
  	 *
  	 * The function will check if an update for a version is available
  	 */
  	public static function isUpdateAvailable( $app ) {
6d9380f96   Cédric Dupont   Update sources OC...
351
352
353
354
355
356
357
358
359
360
361
362
363
364
  		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;
  		}
03e52840d   Kload   Init
365
366
367
368
369
370
371
  		$ocsid=OC_Appconfig::getValue( $app, 'ocsid', '');
  
  		if($ocsid<>'') {
  
  			$ocsdata=OC_OCSClient::getApplication($ocsid);
  			$ocsversion= (string) $ocsdata['version'];
  			$currentversion=OC_App::getAppVersion($app);
6d9380f96   Cédric Dupont   Update sources OC...
372
  			if (version_compare($ocsversion, $currentversion, '>')) {
03e52840d   Kload   Init
373
  				return($ocsversion);
03e52840d   Kload   Init
374
  			}else{
31b7f2792   Kload   Upgrade to ownclo...
375
  				return false;
03e52840d   Kload   Init
376
377
378
  			}
  
  		}else{
31b7f2792   Kload   Upgrade to ownclo...
379
  			return false;
03e52840d   Kload   Init
380
381
382
383
384
  		}
  
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
385
386
387
  	 * Check if app is already downloaded
  	 * @param string $name name of the application to remove
  	 * @return boolean
03e52840d   Kload   Init
388
389
390
391
  	 *
  	 * The function will check if the app is already downloaded in the apps repository
  	 */
  	public static function isDownloaded( $name ) {
03e52840d   Kload   Init
392
  		foreach(OC::$APPSROOTS as $dir) {
6d9380f96   Cédric Dupont   Update sources OC...
393
394
395
396
397
398
399
400
  			$dirToTest  = $dir['path'];
  			$dirToTest .= '/';
  			$dirToTest .= $name;
  			$dirToTest .= '/';
  
  			if (is_dir($dirToTest)) {
  				return true;
  			}
03e52840d   Kload   Init
401
  		}
6d9380f96   Cédric Dupont   Update sources OC...
402
403
  
  		return false;
03e52840d   Kload   Init
404
405
406
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
407
408
409
410
  	 * Removes an app
  	 * @param string $name name of the application to remove
  	 * @param array $options options
  	 * @return boolean
03e52840d   Kload   Init
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
  	 *
  	 * This function removes an app. $options is an associative array. The
  	 * following keys are optional:ja
  	 *   - keeppreferences: boolean, if true the user preferences won't be deleted
  	 *   - keepappconfig: boolean, if true the config will be kept
  	 *   - keeptables: boolean, if true the database will be kept
  	 *   - keepfiles: boolean, if true the user files will be kept
  	 *
  	 * This function works as follows
  	 *   -# including appinfo/remove.php
  	 *   -# removing the files
  	 *
  	 * The function will not delete preferences, tables and the configuration,
  	 * this has to be done by the function oc_app_uninstall().
  	 */
  	public static function removeApp( $name, $options = array()) {
  
  		if(isset($options['keeppreferences']) and $options['keeppreferences']==false ) {
  			// todo
  			// remove preferences
  		}
  
  		if(isset($options['keepappconfig']) and $options['keepappconfig']==false ) {
  			// todo
  			// remove app config
  		}
  
  		if(isset($options['keeptables']) and $options['keeptables']==false ) {
  			// todo
  			// remove app database tables
  		}
  
  		if(isset($options['keepfiles']) and $options['keepfiles']==false ) {
  			// todo
  			// remove user files
  		}
  
  		if(OC_Installer::isDownloaded( $name )) {
  			$appdir=OC_App::getInstallPath().'/'.$name;
  			OC_Helper::rmdirr($appdir);
6d9380f96   Cédric Dupont   Update sources OC...
451
  			return true;
03e52840d   Kload   Init
452
453
  		}else{
  			OC_Log::write('core', 'can\'t remove app '.$name.'. It is not installed.', OC_Log::ERROR);
6d9380f96   Cédric Dupont   Update sources OC...
454
  			return false;
03e52840d   Kload   Init
455
456
457
458
459
  		}
  
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
460
  	 * Installs shipped apps
03e52840d   Kload   Init
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
  	 *
  	 * This function installs all apps found in the 'apps' directory that should be enabled by default;
  	 */
  	public static function installShippedApps() {
  		foreach(OC::$APPSROOTS as $app_dir) {
  			if($dir = opendir( $app_dir['path'] )) {
  				while( false !== ( $filename = readdir( $dir ))) {
  					if( substr( $filename, 0, 1 ) != '.' and is_dir($app_dir['path']."/$filename") ) {
  						if( file_exists( $app_dir['path']."/$filename/appinfo/app.php" )) {
  							if(!OC_Installer::isInstalled($filename)) {
  								$info=OC_App::getAppInfo($filename);
  								$enabled = isset($info['default_enable']);
  								if( $enabled ) {
  									OC_Installer::installShippedApp($filename);
  									OC_Appconfig::setValue($filename, 'enabled', 'yes');
  								}
  							}
  						}
  					}
  				}
  				closedir( $dir );
  			}
  		}
  	}
  
  	/**
  	 * install an app already placed in the app folder
  	 * @param string $app id of the app to install
6d9380f96   Cédric Dupont   Update sources OC...
489
  	 * @return integer
03e52840d   Kload   Init
490
491
492
493
494
495
496
497
498
499
500
501
  	 */
  	public static function installShippedApp($app) {
  		//install the database
  		if(is_file(OC_App::getAppPath($app)."/appinfo/database.xml")) {
  			OC_DB::createDbFromStructure(OC_App::getAppPath($app)."/appinfo/database.xml");
  		}
  
  		//run appinfo/install.php
  		if(is_file(OC_App::getAppPath($app)."/appinfo/install.php")) {
  			include OC_App::getAppPath($app)."/appinfo/install.php";
  		}
  		$info=OC_App::getAppInfo($app);
6d9380f96   Cédric Dupont   Update sources OC...
502
503
504
  		if (is_null($info)) {
  			return false;
  		}
03e52840d   Kload   Init
505
  		OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app));
6d9380f96   Cédric Dupont   Update sources OC...
506
507
508
  		if (array_key_exists('ocsid', $info)) {
  			OC_Appconfig::setValue($app, 'ocsid', $info['ocsid']);
  		}
03e52840d   Kload   Init
509
510
511
512
513
514
515
516
517
518
519
520
521
  
  		//set remote/public handelers
  		foreach($info['remote'] as $name=>$path) {
  			OCP\CONFIG::setAppValue('core', 'remote_'.$name, $app.'/'.$path);
  		}
  		foreach($info['public'] as $name=>$path) {
  			OCP\CONFIG::setAppValue('core', 'public_'.$name, $app.'/'.$path);
  		}
  
  		OC_App::setAppTypes($info['id']);
  
  		return $info['id'];
  	}
03e52840d   Kload   Init
522
523
524
  	/**
  	 * check the code of an app with some static code checks
  	 * @param string $folder the folder of the app to check
6d9380f96   Cédric Dupont   Update sources OC...
525
  	 * @return boolean true for app is o.k. and false for app is not o.k.
03e52840d   Kload   Init
526
527
  	 */
  	public static function checkCode($appname, $folder) {
03e52840d   Kload   Init
528
  		$blacklist=array(
31b7f2792   Kload   Upgrade to ownclo...
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
  			// classes replaced by the public api
  			'OC_API::',
  			'OC_App::',
  			'OC_AppConfig::',
  			'OC_Avatar',
  			'OC_BackgroundJob::',
  			'OC_Config::',
  			'OC_DB::',
  			'OC_Files::',
  			'OC_Helper::',
  			'OC_Hook::',
  			'OC_Image::',
  			'OC_JSON::',
  			'OC_L10N::',
  			'OC_Log::',
  			'OC_Mail::',
  			'OC_Preferences::',
  			'OC_Request::',
  			'OC_Response::',
  			'OC_Template::',
  			'OC_User::',
  			'OC_Util::',
03e52840d   Kload   Init
551
552
553
  		);
  
  		// is the code checker enabled?
6d9380f96   Cédric Dupont   Update sources OC...
554
  		if(OC_Config::getValue('appcodechecker', true)) {
03e52840d   Kload   Init
555
  			// check if grep is installed
6d9380f96   Cédric Dupont   Update sources OC...
556
  			$grep = exec('command -v grep');
03e52840d   Kload   Init
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
  			if($grep=='') {
  				OC_Log::write('core',
  					'grep not installed. So checking the code of the app "'.$appname.'" was not possible',
  					OC_Log::ERROR);
  				return true;
  			}
  
  			// iterate the bad patterns
  			foreach($blacklist as $bl) {
  				$cmd = 'grep -ri '.escapeshellarg($bl).' '.$folder.'';
  				$result = exec($cmd);
  				// bad pattern found
  				if($result<>'') {
  					OC_Log::write('core',
  						'App "'.$appname.'" is using a not allowed call "'.$bl.'". Installation refused.',
  						OC_Log::ERROR);
  					return false;
  				}
  			}
  			return true;
  
  		}else{
  			return true;
  		}
  	}
  }