2011-03-03 23:55:32 +03:00
|
|
|
<?php
|
2011-03-11 17:25:48 +03:00
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @author Jakob Sack
|
2012-05-26 22:40:12 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-03-11 17:25:48 +03:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* This class manages the apps. It allows them to register and integrate in the
|
|
|
|
* owncloud ecosystem. Furthermore, this class is responsible for installing,
|
|
|
|
* upgrading and removing apps.
|
|
|
|
*/
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_App{
|
2011-06-20 21:50:25 +04:00
|
|
|
static private $activeapp = '';
|
2011-03-11 17:25:48 +03:00
|
|
|
static private $navigation = array();
|
2011-08-09 01:32:54 +04:00
|
|
|
static private $settingsForms = array();
|
|
|
|
static private $adminForms = array();
|
|
|
|
static private $personalForms = array();
|
2012-03-30 16:39:07 +04:00
|
|
|
static private $appInfo = array();
|
2012-04-14 19:53:02 +04:00
|
|
|
static private $appTypes = array();
|
2012-06-04 23:30:58 +04:00
|
|
|
static private $loadedApps = array();
|
2012-06-27 16:56:34 +04:00
|
|
|
static private $checkedApps = array();
|
2011-03-03 23:55:32 +03:00
|
|
|
|
|
|
|
/**
|
2011-03-11 16:59:24 +03:00
|
|
|
* @brief loads all apps
|
2012-03-30 16:39:07 +04:00
|
|
|
* @param array $types
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2011-03-03 23:55:32 +03:00
|
|
|
*
|
2011-03-11 16:59:24 +03:00
|
|
|
* This function walks through the owncloud directory and loads all apps
|
|
|
|
* it can find. A directory contains an app if the file /appinfo/app.php
|
|
|
|
* exists.
|
2012-03-30 16:39:07 +04:00
|
|
|
*
|
|
|
|
* if $types is set, only apps of those types will be loaded
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function loadApps($types=null) {
|
2012-05-31 15:00:58 +04:00
|
|
|
// Load the enabled apps here
|
2012-03-30 16:00:24 +04:00
|
|
|
$apps = self::getEnabledApps();
|
2012-05-26 22:40:12 +04:00
|
|
|
// prevent app.php from printing output
|
|
|
|
ob_start();
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach( $apps as $app ) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if((is_null($types) or self::isType($app, $types)) && !in_array($app, self::$loadedApps)) {
|
2012-05-14 02:28:22 +04:00
|
|
|
self::loadApp($app);
|
2012-06-04 23:30:58 +04:00
|
|
|
self::$loadedApps[] = $app;
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
2012-05-26 22:40:12 +04:00
|
|
|
ob_end_clean();
|
2011-03-03 23:55:32 +03:00
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
if (!defined('DEBUG') || !DEBUG) {
|
2012-09-07 18:20:13 +04:00
|
|
|
if (is_null($types)
|
|
|
|
&& empty(OC_Util::$core_scripts)
|
|
|
|
&& empty(OC_Util::$core_styles)) {
|
2012-05-15 01:15:53 +04:00
|
|
|
OC_Util::$core_scripts = OC_Util::$scripts;
|
|
|
|
OC_Util::$scripts = array();
|
2012-05-14 19:57:43 +04:00
|
|
|
OC_Util::$core_styles = OC_Util::$styles;
|
|
|
|
OC_Util::$styles = array();
|
|
|
|
}
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
// return
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-14 02:28:22 +04:00
|
|
|
/**
|
|
|
|
* load a single app
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app
|
2012-05-14 02:28:22 +04:00
|
|
|
*/
|
2012-09-04 14:32:27 +04:00
|
|
|
public static function loadApp($app) {
|
2012-09-04 16:21:52 +04:00
|
|
|
if(is_file(self::getAppPath($app).'/appinfo/app.php')) {
|
2012-06-26 22:41:11 +04:00
|
|
|
self::checkUpgrade($app);
|
2012-09-04 14:32:27 +04:00
|
|
|
require_once $app.'/appinfo/app.php';
|
2012-05-14 02:28:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-30 16:39:07 +04:00
|
|
|
/**
|
2012-05-14 19:58:50 +04:00
|
|
|
* check if an app is of a specific type
|
2012-03-30 16:39:07 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string/array $types
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2012-03-30 16:39:07 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isType($app,$types) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(is_string($types)) {
|
2012-03-30 16:39:07 +04:00
|
|
|
$types=array($types);
|
|
|
|
}
|
2012-04-14 19:53:02 +04:00
|
|
|
$appTypes=self::getAppTypes($app);
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($types as $type) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(array_search($type, $appTypes)!==false) {
|
2012-03-30 16:39:07 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-04-14 19:53:02 +04:00
|
|
|
/**
|
|
|
|
* get the types of an app
|
|
|
|
* @param string $app
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
private static function getAppTypes($app) {
|
2012-04-14 19:53:02 +04:00
|
|
|
//load the cache
|
2012-09-04 14:32:27 +04:00
|
|
|
if(count(self::$appTypes)==0) {
|
|
|
|
self::$appTypes=OC_Appconfig::getValues(false, 'types');
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
if(isset(self::$appTypes[$app])) {
|
|
|
|
return explode(',', self::$appTypes[$app]);
|
2012-05-20 20:51:45 +04:00
|
|
|
}else{
|
|
|
|
return array();
|
|
|
|
}
|
2012-05-15 00:49:20 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-05-15 00:49:20 +04:00
|
|
|
/**
|
|
|
|
* read app types from info.xml and cache them in the database
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function setAppTypes($app) {
|
2012-05-15 00:49:20 +04:00
|
|
|
$appData=self::getAppInfo($app);
|
2012-06-04 23:30:58 +04:00
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
if(isset($appData['types'])) {
|
|
|
|
$appTypes=implode(',', $appData['types']);
|
2012-05-15 00:49:20 +04:00
|
|
|
}else{
|
|
|
|
$appTypes='';
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Appconfig::setValue($app, 'types', $appTypes);
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2012-03-30 16:39:07 +04:00
|
|
|
|
2012-03-30 16:00:24 +04:00
|
|
|
/**
|
|
|
|
* get all enabled apps
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getEnabledApps() {
|
2012-06-22 01:29:18 +04:00
|
|
|
if(!OC_Config::getValue('installed', false))
|
|
|
|
return array();
|
2012-05-03 22:47:18 +04:00
|
|
|
$apps=array('files');
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'SELECT `appid` FROM `*PREFIX*appconfig` WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' );
|
2012-04-01 19:31:44 +04:00
|
|
|
$result=$query->execute();
|
2012-09-07 17:22:01 +04:00
|
|
|
while($row=$result->fetchRow()) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(array_search($row['appid'], $apps)===false) {
|
2012-05-03 22:47:18 +04:00
|
|
|
$apps[]=$row['appid'];
|
|
|
|
}
|
2012-03-30 16:00:24 +04:00
|
|
|
}
|
|
|
|
return $apps;
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:18:52 +04:00
|
|
|
/**
|
|
|
|
* @brief checks whether or not an app is enabled
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @return bool
|
2011-06-19 17:18:52 +04:00
|
|
|
*
|
|
|
|
* This function checks whether or not an app is enabled.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isEnabled( $app ) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if( 'files'==$app or 'yes' == OC_Appconfig::getValue( $app, 'enabled' )) {
|
2011-06-19 17:18:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief enables an app
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param mixed $app app
|
|
|
|
* @return bool
|
2011-06-19 17:18:52 +04:00
|
|
|
*
|
|
|
|
* This function set an app as enabled in appconfig.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function enable( $app ) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!OC_Installer::isInstalled($app)) {
|
2012-01-06 22:08:35 +04:00
|
|
|
// check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!is_numeric($app)) {
|
2012-08-05 03:40:19 +04:00
|
|
|
$app = OC_Installer::installShippedApp($app);
|
2012-01-06 22:08:35 +04:00
|
|
|
}else{
|
2012-09-04 14:32:27 +04:00
|
|
|
$download=OC_OCSClient::getApplicationDownload($app, 1);
|
2012-04-14 14:57:03 +04:00
|
|
|
if(isset($download['downloadlink']) and $download['downloadlink']!='') {
|
2012-01-27 20:34:47 +04:00
|
|
|
$app=OC_Installer::installApp(array('source'=>'http','href'=>$download['downloadlink']));
|
2012-01-06 22:08:35 +04:00
|
|
|
}
|
|
|
|
}
|
2011-08-22 16:17:38 +04:00
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
if($app!==false) {
|
2012-05-26 22:40:12 +04:00
|
|
|
// check if the app is compatible with this version of ownCloud
|
|
|
|
$info=OC_App::getAppInfo($app);
|
2012-06-04 23:30:58 +04:00
|
|
|
$version=OC_Util::getVersion();
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!isset($info['require']) or ($version[0]>$info['require'])) {
|
|
|
|
OC_Log::write('core', 'App "'.$info['name'].'" can\'t be installed because it is not compatible with this version of ownCloud', OC_Log::ERROR);
|
2012-05-26 22:40:12 +04:00
|
|
|
return false;
|
|
|
|
}else{
|
|
|
|
OC_Appconfig::setValue( $app, 'enabled', 'yes' );
|
|
|
|
return true;
|
|
|
|
}
|
2012-04-14 14:57:03 +04:00
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-11-09 14:32:06 +04:00
|
|
|
* @brief disables an app
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @return bool
|
2011-06-19 17:18:52 +04:00
|
|
|
*
|
2011-11-09 14:32:06 +04:00
|
|
|
* This function set an app as disabled in appconfig.
|
2011-06-19 17:18:52 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function disable( $app ) {
|
2012-01-06 22:08:35 +04:00
|
|
|
// check if app is a shiped app or not. if not delete
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Appconfig::setValue( $app, 'enabled', 'no' );
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
|
|
|
* @brief adds an entry to the navigation
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $data array containing the data
|
|
|
|
* @return bool
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
|
|
|
* This function adds a new entry to the navigation visible to users. $data
|
|
|
|
* is an associative array.
|
|
|
|
* The following keys are required:
|
2011-06-20 21:50:25 +04:00
|
|
|
* - id: unique id for this entry ('addressbook_index')
|
2011-03-11 16:59:24 +03:00
|
|
|
* - href: link to the page
|
2011-06-20 21:50:25 +04:00
|
|
|
* - name: Human readable name ('Addressbook')
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
|
|
|
* The following keys are optional:
|
|
|
|
* - icon: path to the icon of the app
|
|
|
|
* - order: integer, that influences the position of your application in
|
|
|
|
* the navigation. Lower values come first.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function addNavigationEntry( $data ) {
|
2011-07-29 21:38:01 +04:00
|
|
|
$data['active']=false;
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!isset($data['icon'])) {
|
2011-07-29 21:38:01 +04:00
|
|
|
$data['icon']='';
|
|
|
|
}
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_App::$navigation[] = $data;
|
2011-03-11 16:59:24 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief marks a navigation entry as active
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $id id of the entry
|
|
|
|
* @return bool
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
2011-06-20 21:50:25 +04:00
|
|
|
* This function sets a navigation entry as active and removes the 'active'
|
2011-03-11 16:59:24 +03:00
|
|
|
* property from all other entries. The templates can use this for
|
|
|
|
* highlighting the current position of the user.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function setActiveNavigationEntry( $id ) {
|
2011-04-16 12:26:18 +04:00
|
|
|
self::$activeapp = $id;
|
2011-03-11 16:59:24 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-16 19:49:57 +04:00
|
|
|
/**
|
|
|
|
* @brief gets the active Menu entry
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return string id or empty string
|
2011-04-16 19:49:57 +04:00
|
|
|
*
|
|
|
|
* This function returns the id of the active navigation entry (set by
|
|
|
|
* setActiveNavigationEntry
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getActiveNavigationEntry() {
|
2011-04-16 19:49:57 +04:00
|
|
|
return self::$activeapp;
|
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2011-04-17 21:38:04 +04:00
|
|
|
* @brief Returns the Settings Navigation
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return array
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
2011-04-17 21:38:04 +04:00
|
|
|
* This function returns an array containing all settings pages added. The
|
2011-06-20 21:50:25 +04:00
|
|
|
* entries are sorted by the key 'order' ascending.
|
2011-03-11 16:59:24 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getSettingsNavigation() {
|
2012-08-31 01:51:44 +04:00
|
|
|
$l=OC_L10N::get('lib');
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2012-03-23 18:52:41 +04:00
|
|
|
$settings = array();
|
2011-10-05 14:31:33 +04:00
|
|
|
// by default, settings only contain the help menu
|
2012-09-04 14:32:27 +04:00
|
|
|
if(OC_Config::getValue('knowledgebaseenabled', true)==true) {
|
2012-03-23 18:52:41 +04:00
|
|
|
$settings = array(
|
|
|
|
array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "help.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "settings", "help.svg" ))
|
2012-08-29 22:34:44 +04:00
|
|
|
);
|
2012-03-23 18:52:41 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
|
|
|
// if the user is logged-in
|
|
|
|
if (OC_User::isLoggedIn()) {
|
|
|
|
// personal menu
|
|
|
|
$settings[] = array( "id" => "personal", "order" => 1, "href" => OC_Helper::linkTo( "settings", "personal.php" ), "name" => $l->t("Personal"), "icon" => OC_Helper::imagePath( "settings", "personal.svg" ));
|
|
|
|
|
2012-09-23 04:39:11 +04:00
|
|
|
// if there are some settings forms
|
2011-10-05 14:31:33 +04:00
|
|
|
if(!empty(self::$settingsForms))
|
|
|
|
// settings menu
|
|
|
|
$settings[]=array( "id" => "settings", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "settings.php" ), "name" => $l->t("Settings"), "icon" => OC_Helper::imagePath( "settings", "settings.svg" ));
|
|
|
|
|
2012-07-15 18:31:28 +04:00
|
|
|
//SubAdmins are also allowed to access user management
|
2012-09-04 14:32:27 +04:00
|
|
|
if(OC_SubAdmin::isSubAdmin($_SESSION["user_id"]) || OC_Group::inGroup( $_SESSION["user_id"], "admin" )) {
|
2011-10-05 14:31:33 +04:00
|
|
|
// admin users menu
|
|
|
|
$settings[] = array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "settings", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "settings", "users.svg" ));
|
2012-07-15 18:31:28 +04:00
|
|
|
}
|
2012-08-05 03:40:19 +04:00
|
|
|
|
|
|
|
|
2012-07-15 18:31:28 +04:00
|
|
|
// if the user is an admin
|
|
|
|
if(OC_Group::inGroup( $_SESSION["user_id"], "admin" )) {
|
2011-10-05 14:31:33 +04:00
|
|
|
// admin apps menu
|
2012-02-16 22:48:20 +04:00
|
|
|
$settings[] = array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "settings", "apps.php" ).'?installed', "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "settings", "apps.svg" ));
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-10-16 23:08:44 +04:00
|
|
|
$settings[]=array( "id" => "admin", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "admin.php" ), "name" => $l->t("Admin"), "icon" => OC_Helper::imagePath( "settings", "admin.svg" ));
|
2011-10-05 14:31:33 +04:00
|
|
|
}
|
2012-08-29 22:34:44 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-08 23:42:25 +04:00
|
|
|
$navigation = self::proceedNavigation($settings);
|
|
|
|
return $navigation;
|
2011-04-17 21:38:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This is private as well. It simply works, so don't ask for more details
|
2012-09-07 17:22:01 +04:00
|
|
|
private static function proceedNavigation( $list ) {
|
|
|
|
foreach( $list as &$naventry ) {
|
2011-06-20 21:50:25 +04:00
|
|
|
$naventry['subnavigation'] = array();
|
2012-09-04 14:32:27 +04:00
|
|
|
if( $naventry['id'] == self::$activeapp ) {
|
2011-06-20 21:50:25 +04:00
|
|
|
$naventry['active'] = true;
|
2011-04-16 12:26:18 +04:00
|
|
|
}
|
2011-04-17 21:38:04 +04:00
|
|
|
else{
|
2011-06-20 21:50:25 +04:00
|
|
|
$naventry['active'] = false;
|
2011-04-17 21:38:04 +04:00
|
|
|
}
|
2011-06-20 21:50:25 +04:00
|
|
|
} unset( $naventry );
|
2011-04-16 12:26:18 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
usort( $list, create_function( '$a, $b', 'if( $a["order"] == $b["order"] ) {return 0;}elseif( $a["order"] < $b["order"] ) {return -1;}else{return 1;}' ));
|
2011-04-17 21:38:04 +04:00
|
|
|
|
|
|
|
return $list;
|
2011-04-16 12:26:18 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-06-15 01:00:02 +04:00
|
|
|
/**
|
2012-07-24 02:39:59 +04:00
|
|
|
* Get the path where to install apps
|
|
|
|
*/
|
2012-06-15 01:00:02 +04:00
|
|
|
public static function getInstallPath() {
|
|
|
|
if(OC_Config::getValue('appstoreenabled', true)==false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach(OC::$APPSROOTS as $dir) {
|
|
|
|
if(isset($dir['writable']) && $dir['writable']===true)
|
|
|
|
return $dir['path'];
|
|
|
|
}
|
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write('core', 'No application directories are marked as writable.', OC_Log::ERROR);
|
2012-06-15 01:00:02 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected static function findAppInDirectories($appid) {
|
2012-06-28 23:54:33 +04:00
|
|
|
static $app_dir = array();
|
|
|
|
if (isset($app_dir[$appid])) {
|
|
|
|
return $app_dir[$appid];
|
|
|
|
}
|
2012-06-15 01:00:02 +04:00
|
|
|
foreach(OC::$APPSROOTS as $dir) {
|
|
|
|
if(file_exists($dir['path'].'/'.$appid)) {
|
2012-06-28 23:54:33 +04:00
|
|
|
return $app_dir[$appid]=$dir;
|
2012-06-15 01:00:02 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-23 04:39:11 +04:00
|
|
|
return false;
|
2012-06-15 01:00:02 +04:00
|
|
|
}
|
2012-06-02 02:05:20 +04:00
|
|
|
/**
|
|
|
|
* Get the directory for the given app.
|
|
|
|
* If the app is defined in multiple directory, the first one is taken. (false if not found)
|
|
|
|
*/
|
|
|
|
public static function getAppPath($appid) {
|
2012-06-15 01:00:02 +04:00
|
|
|
if( ($dir = self::findAppInDirectories($appid)) != false) {
|
|
|
|
return $dir['path'].'/'.$appid;
|
2012-06-04 01:13:30 +04:00
|
|
|
}
|
2012-09-23 04:39:11 +04:00
|
|
|
return false;
|
2012-06-04 01:13:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the path for the given app on the access
|
|
|
|
* If the app is defined in multiple directory, the first one is taken. (false if not found)
|
|
|
|
*/
|
|
|
|
public static function getAppWebPath($appid) {
|
2012-06-15 01:00:02 +04:00
|
|
|
if( ($dir = self::findAppInDirectories($appid)) != false) {
|
2012-06-22 11:56:54 +04:00
|
|
|
return OC::$WEBROOT.$dir['url'].'/'.$appid;
|
2012-06-02 02:05:20 +04:00
|
|
|
}
|
2012-09-23 04:39:11 +04:00
|
|
|
return false;
|
2012-06-02 02:05:20 +04:00
|
|
|
}
|
|
|
|
|
2012-04-14 18:27:58 +04:00
|
|
|
/**
|
|
|
|
* get the last version of the app, either from appinfo/version or from appinfo/info.xml
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAppVersion($appid) {
|
2012-06-02 02:05:20 +04:00
|
|
|
$file= self::getAppPath($appid).'/appinfo/version';
|
2012-04-14 18:27:58 +04:00
|
|
|
$version=@file_get_contents($file);
|
2012-09-04 14:32:27 +04:00
|
|
|
if($version) {
|
2012-06-24 03:57:08 +04:00
|
|
|
return trim($version);
|
2012-04-14 18:27:58 +04:00
|
|
|
}else{
|
|
|
|
$appData=self::getAppInfo($appid);
|
2012-08-04 21:39:36 +04:00
|
|
|
return isset($appData['version'])? $appData['version'] : '';
|
2012-04-14 18:27:58 +04:00
|
|
|
}
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2012-09-18 17:35:27 +04:00
|
|
|
* @brief Read all app metadata from the info.xml file
|
2011-05-28 19:33:25 +04:00
|
|
|
* @param string $appid id of the app or the path of the info.xml file
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param boolean $path (optional)
|
|
|
|
* @return array
|
2012-09-18 17:35:27 +04:00
|
|
|
* @note all data is read from info.xml, not just pre-defined fields
|
2011-05-15 18:31:30 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAppInfo($appid,$path=false) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if($path) {
|
2011-05-28 19:33:25 +04:00
|
|
|
$file=$appid;
|
|
|
|
}else{
|
2012-09-04 14:32:27 +04:00
|
|
|
if(isset(self::$appInfo[$appid])) {
|
2012-03-30 16:39:07 +04:00
|
|
|
return self::$appInfo[$appid];
|
|
|
|
}
|
2012-06-02 02:05:20 +04:00
|
|
|
$file= self::getAppPath($appid).'/appinfo/info.xml';
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
|
|
|
$data=array();
|
2012-03-31 02:03:21 +04:00
|
|
|
$content=@file_get_contents($file);
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!$content) {
|
2012-09-23 04:39:11 +04:00
|
|
|
return null;
|
2012-03-30 15:48:44 +04:00
|
|
|
}
|
2011-05-16 18:20:56 +04:00
|
|
|
$xml = new SimpleXMLElement($content);
|
|
|
|
$data['info']=array();
|
2012-05-11 22:32:37 +04:00
|
|
|
$data['remote']=array();
|
|
|
|
$data['public']=array();
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($xml->children() as $child) {
|
2012-09-23 04:39:11 +04:00
|
|
|
/**
|
|
|
|
* @var $child SimpleXMLElement
|
|
|
|
*/
|
2012-09-04 14:32:27 +04:00
|
|
|
if($child->getName()=='remote') {
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($child->children() as $remote) {
|
2012-09-23 04:39:11 +04:00
|
|
|
/**
|
|
|
|
* @var $remote SimpleXMLElement
|
|
|
|
*/
|
2012-05-11 22:32:37 +04:00
|
|
|
$data['remote'][$remote->getName()]=(string)$remote;
|
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
}elseif($child->getName()=='public') {
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($child->children() as $public) {
|
2012-09-23 04:39:11 +04:00
|
|
|
/**
|
|
|
|
* @var $public SimpleXMLElement
|
|
|
|
*/
|
2012-05-11 22:32:37 +04:00
|
|
|
$data['public'][$public->getName()]=(string)$public;
|
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
}elseif($child->getName()=='types') {
|
2012-03-30 16:39:07 +04:00
|
|
|
$data['types']=array();
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($child->children() as $type) {
|
2012-09-23 04:39:11 +04:00
|
|
|
/**
|
|
|
|
* @var $type SimpleXMLElement
|
|
|
|
*/
|
2012-03-30 16:39:07 +04:00
|
|
|
$data['types'][]=$type->getName();
|
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
}elseif($child->getName()=='description') {
|
2012-08-31 00:17:54 +04:00
|
|
|
$xml=(string)$child->asXML();
|
2012-09-04 14:32:27 +04:00
|
|
|
$data[$child->getName()]=substr($xml, 13, -14);//script <description> tags
|
2012-03-30 16:39:07 +04:00
|
|
|
}else{
|
|
|
|
$data[$child->getName()]=(string)$child;
|
|
|
|
}
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
2012-03-30 16:39:07 +04:00
|
|
|
self::$appInfo[$appid]=$data;
|
2012-09-18 17:35:27 +04:00
|
|
|
|
2011-05-15 18:31:30 +04:00
|
|
|
return $data;
|
2011-03-11 16:59:24 +03:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-08 23:42:25 +04:00
|
|
|
/**
|
|
|
|
* @brief Returns the navigation
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return array
|
2011-08-08 23:42:25 +04:00
|
|
|
*
|
|
|
|
* This function returns an array containing all entries added. The
|
|
|
|
* entries are sorted by the key 'order' ascending. Additional to the keys
|
|
|
|
* given for each app the following keys exist:
|
|
|
|
* - active: boolean, signals if the user is on this navigation entry
|
|
|
|
* - children: array that is empty if the key 'active' is false or
|
|
|
|
* contains the subentries if the key 'active' is true
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getNavigation() {
|
2011-08-08 23:42:25 +04:00
|
|
|
$navigation = self::proceedNavigation( self::$navigation );
|
|
|
|
return $navigation;
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-07-25 22:12:35 +04:00
|
|
|
/**
|
|
|
|
* get the id of loaded app
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getCurrentApp() {
|
2012-09-04 14:32:27 +04:00
|
|
|
$script=substr($_SERVER["SCRIPT_NAME"], strlen(OC::$WEBROOT)+1);
|
|
|
|
$topFolder=substr($script, 0, strpos($script, '/'));
|
|
|
|
if($topFolder=='apps') {
|
2011-07-25 22:12:35 +04:00
|
|
|
$length=strlen($topFolder);
|
2012-09-04 14:32:27 +04:00
|
|
|
return substr($script, $length+1, strpos($script, '/', $length+1)-$length-1);
|
2011-07-25 22:12:35 +04:00
|
|
|
}else{
|
|
|
|
return $topFolder;
|
|
|
|
}
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* get the forms for either settings, admin or personal
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getForms($type) {
|
2011-08-09 01:32:54 +04:00
|
|
|
$forms=array();
|
2012-09-07 17:22:01 +04:00
|
|
|
switch($type) {
|
2011-08-09 01:32:54 +04:00
|
|
|
case 'settings':
|
|
|
|
$source=self::$settingsForms;
|
|
|
|
break;
|
|
|
|
case 'admin':
|
|
|
|
$source=self::$adminForms;
|
|
|
|
break;
|
|
|
|
case 'personal':
|
|
|
|
$source=self::$personalForms;
|
|
|
|
break;
|
2012-09-23 04:39:11 +04:00
|
|
|
default:
|
|
|
|
return array();
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($source as $form) {
|
2011-08-09 01:32:54 +04:00
|
|
|
$forms[]=include $form;
|
|
|
|
}
|
|
|
|
return $forms;
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* register a settings form to be shown
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function registerSettings($app,$page) {
|
2012-06-23 02:05:39 +04:00
|
|
|
self::$settingsForms[]= $app.'/'.$page.'.php';
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* register an admin form to be shown
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function registerAdmin($app,$page) {
|
2012-06-23 02:05:39 +04:00
|
|
|
self::$adminForms[]= $app.'/'.$page.'.php';
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* register a personal form to be shown
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function registerPersonal($app,$page) {
|
2012-06-23 02:05:39 +04:00
|
|
|
self::$personalForms[]= $app.'/'.$page.'.php';
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
/**
|
2012-09-18 17:35:27 +04:00
|
|
|
* @brief: get a list of all apps in the apps folder
|
|
|
|
* @return array or app names (string IDs)
|
|
|
|
* @todo: change the name of this method to getInstalledApps, which is more accurate
|
2011-08-10 14:20:43 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAllApps() {
|
2012-09-18 17:35:27 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
$apps=array();
|
2012-09-18 17:35:27 +04:00
|
|
|
|
|
|
|
foreach ( OC::$APPSROOTS as $apps_dir ) {
|
2012-09-19 23:26:57 +04:00
|
|
|
if(! is_readable($apps_dir['path'])) {
|
|
|
|
OC_Log::write('core', 'unable to read app folder : ' .$apps_dir['path'] , OC_Log::WARN);
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
$dh = opendir( $apps_dir['path'] );
|
|
|
|
|
|
|
|
while( $file = readdir( $dh ) ) {
|
|
|
|
|
|
|
|
if (
|
|
|
|
$file[0] != '.'
|
|
|
|
and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' )
|
|
|
|
) {
|
|
|
|
|
|
|
|
$apps[] = $file;
|
|
|
|
|
2012-06-02 02:05:20 +04:00
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
return $apps;
|
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief: get a list of all apps on apps.owncloud.com
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description
|
2012-09-18 17:35:27 +04:00
|
|
|
*/
|
|
|
|
public static function getAppstoreApps( $filter = 'approved' ) {
|
|
|
|
$catagoryNames = OC_OCSClient::getCategories();
|
|
|
|
if ( is_array( $catagoryNames ) ) {
|
2012-09-18 19:51:55 +04:00
|
|
|
// Check that categories of apps were retrieved correctly
|
|
|
|
if ( ! $categories = array_keys( $catagoryNames ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
|
|
|
|
$page = 0;
|
|
|
|
$remoteApps = OC_OCSClient::getApplications( $categories, $page, $filter );
|
|
|
|
$app1 = array();
|
|
|
|
$i = 0;
|
|
|
|
foreach ( $remoteApps as $app ) {
|
|
|
|
$app1[$i] = $app;
|
|
|
|
$app1[$i]['author'] = $app['personid'];
|
|
|
|
$app1[$i]['ocs_id'] = $app['id'];
|
|
|
|
$app1[$i]['internal'] = $app1[$i]['active'] = 0;
|
2012-10-08 17:49:48 +04:00
|
|
|
|
|
|
|
// rating img
|
|
|
|
if($app['score']>=0 and $app['score']<5) $img=OC_Helper::imagePath( "core", "rating/s1.png" );
|
|
|
|
elseif($app['score']>=5 and $app['score']<15) $img=OC_Helper::imagePath( "core", "rating/s2.png" );
|
|
|
|
elseif($app['score']>=15 and $app['score']<25) $img=OC_Helper::imagePath( "core", "rating/s3.png" );
|
|
|
|
elseif($app['score']>=25 and $app['score']<35) $img=OC_Helper::imagePath( "core", "rating/s4.png" );
|
|
|
|
elseif($app['score']>=35 and $app['score']<45) $img=OC_Helper::imagePath( "core", "rating/s5.png" );
|
|
|
|
elseif($app['score']>=45 and $app['score']<55) $img=OC_Helper::imagePath( "core", "rating/s6.png" );
|
|
|
|
elseif($app['score']>=55 and $app['score']<65) $img=OC_Helper::imagePath( "core", "rating/s7.png" );
|
|
|
|
elseif($app['score']>=65 and $app['score']<75) $img=OC_Helper::imagePath( "core", "rating/s8.png" );
|
|
|
|
elseif($app['score']>=75 and $app['score']<85) $img=OC_Helper::imagePath( "core", "rating/s9.png" );
|
|
|
|
elseif($app['score']>=85 and $app['score']<95) $img=OC_Helper::imagePath( "core", "rating/s10.png" );
|
|
|
|
elseif($app['score']>=95 and $app['score']<100) $img=OC_Helper::imagePath( "core", "rating/s11.png" );
|
|
|
|
|
|
|
|
$app1[$i]['score'] = '<img src="'.$img.'"> Score: '.$app['score'].'%';
|
2012-09-18 17:35:27 +04:00
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
2012-10-08 17:49:48 +04:00
|
|
|
|
2012-09-18 19:51:55 +04:00
|
|
|
if ( empty( $app1 ) ) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $app1;
|
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
}
|
2012-03-16 19:00:12 +04:00
|
|
|
|
2011-12-12 01:08:01 +04:00
|
|
|
/**
|
2012-06-26 22:41:11 +04:00
|
|
|
* check if the app need updating and update when needed
|
2011-12-12 01:08:01 +04:00
|
|
|
*/
|
2012-06-26 22:41:11 +04:00
|
|
|
public static function checkUpgrade($app) {
|
2012-06-27 16:56:34 +04:00
|
|
|
if (in_array($app, self::$checkedApps)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self::$checkedApps[] = $app;
|
2012-03-30 15:48:44 +04:00
|
|
|
$versions = self::getAppVersions();
|
2012-06-26 22:41:11 +04:00
|
|
|
$currentVersion=OC_App::getAppVersion($app);
|
|
|
|
if ($currentVersion) {
|
|
|
|
$installedVersion = $versions[$app];
|
|
|
|
if (version_compare($currentVersion, $installedVersion, '>')) {
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write($app, 'starting app upgrade from '.$installedVersion.' to '.$currentVersion, OC_Log::DEBUG);
|
2012-09-22 01:32:52 +04:00
|
|
|
try {
|
|
|
|
OC_App::updateApp($app);
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
|
|
|
echo 'Failed to upgrade "'.$app.'". Exception="'.$e->getMessage().'"';
|
|
|
|
die;
|
|
|
|
}
|
2012-06-26 22:41:11 +04:00
|
|
|
OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app));
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
|
|
|
}
|
2012-06-16 22:50:52 +04:00
|
|
|
}
|
2012-06-04 23:30:58 +04:00
|
|
|
|
2012-06-16 22:50:52 +04:00
|
|
|
/**
|
|
|
|
* check if the current enabled apps are compatible with the current
|
|
|
|
* ownCloud version. disable them if not.
|
|
|
|
* This is important if you upgrade ownCloud and have non ported 3rd
|
|
|
|
* party apps installed.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function checkAppsRequirements($apps = array()) {
|
2012-06-16 22:50:52 +04:00
|
|
|
if (empty($apps)) {
|
|
|
|
$apps = OC_App::getEnabledApps();
|
|
|
|
}
|
|
|
|
$version = OC_Util::getVersion();
|
2012-05-26 22:40:12 +04:00
|
|
|
foreach($apps as $app) {
|
|
|
|
// check if the app is compatible with this version of ownCloud
|
2012-10-02 14:10:45 +04:00
|
|
|
$info = OC_App::getAppInfo($app);
|
|
|
|
if(!isset($info['require']) or (($version[0].'.'.$version[1])>$info['require'])) {
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write('core', 'App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud', OC_Log::ERROR);
|
2012-05-26 22:40:12 +04:00
|
|
|
OC_App::disable( $app );
|
|
|
|
}
|
|
|
|
}
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-03-16 19:00:12 +04:00
|
|
|
|
2012-03-30 15:48:44 +04:00
|
|
|
/**
|
2012-06-29 00:01:46 +04:00
|
|
|
* get the installed version of all apps
|
2012-03-30 15:48:44 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAppVersions() {
|
2012-06-26 22:53:28 +04:00
|
|
|
static $versions;
|
|
|
|
if (isset($versions)) { // simple cache, needs to be fixed
|
|
|
|
return $versions; // when function is used besides in checkUpgrade
|
|
|
|
}
|
2012-03-30 15:48:44 +04:00
|
|
|
$versions=array();
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig` WHERE `configkey` = \'installed_version\'' );
|
2012-03-30 15:48:44 +04:00
|
|
|
$result = $query->execute();
|
2012-09-07 17:22:01 +04:00
|
|
|
while($row = $result->fetchRow()) {
|
2012-03-30 15:48:44 +04:00
|
|
|
$versions[$row['appid']]=$row['configvalue'];
|
|
|
|
}
|
|
|
|
return $versions;
|
|
|
|
}
|
|
|
|
|
2011-12-12 01:08:01 +04:00
|
|
|
/**
|
|
|
|
* update the database for the app and call the update script
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $appid
|
2011-12-12 01:08:01 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function updateApp($appid) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')) {
|
2012-06-02 02:05:20 +04:00
|
|
|
OC_DB::updateDbFromStructure(self::getAppPath($appid).'/appinfo/database.xml');
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
if(!self::isEnabled($appid)) {
|
2012-05-19 04:00:46 +04:00
|
|
|
return;
|
|
|
|
}
|
2012-09-04 14:32:27 +04:00
|
|
|
if(file_exists(self::getAppPath($appid).'/appinfo/update.php')) {
|
2012-06-15 13:18:38 +04:00
|
|
|
self::loadApp($appid);
|
2012-06-02 02:05:20 +04:00
|
|
|
include self::getAppPath($appid).'/appinfo/update.php';
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-05-11 22:32:37 +04:00
|
|
|
|
2012-09-23 04:39:11 +04:00
|
|
|
//set remote/public handlers
|
2012-05-11 22:32:37 +04:00
|
|
|
$appData=self::getAppInfo($appid);
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($appData['remote'] as $name=>$path) {
|
2012-07-14 00:44:35 +04:00
|
|
|
OCP\CONFIG::setAppValue('core', 'remote_'.$name, $appid.'/'.$path);
|
2012-05-11 22:32:37 +04:00
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($appData['public'] as $name=>$path) {
|
2012-06-05 00:37:00 +04:00
|
|
|
OCP\CONFIG::setAppValue('core', 'public_'.$name, $appid.'/'.$path);
|
2012-05-11 22:32:37 +04:00
|
|
|
}
|
2012-05-15 00:49:20 +04:00
|
|
|
|
|
|
|
self::setAppTypes($appid);
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-02-09 00:01:09 +04:00
|
|
|
|
|
|
|
/**
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $appid
|
2012-02-09 00:01:09 +04:00
|
|
|
* @return OC_FilesystemView
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getStorage($appid) {
|
2012-09-04 14:32:27 +04:00
|
|
|
if(OC_App::isEnabled($appid)) {//sanity check
|
|
|
|
if(OC_User::isLoggedIn()) {
|
2012-04-24 02:26:33 +04:00
|
|
|
$view = new OC_FilesystemView('/'.OC_User::getUser());
|
|
|
|
if(!$view->file_exists($appid)) {
|
|
|
|
$view->mkdir($appid);
|
|
|
|
}
|
2012-02-09 00:01:09 +04:00
|
|
|
return new OC_FilesystemView('/'.OC_User::getUser().'/'.$appid);
|
|
|
|
}else{
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write('core', 'Can\'t get app storage, app, user not logged in', OC_Log::ERROR);
|
2012-02-09 00:01:09 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}else{
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR);
|
2012-09-18 17:35:27 +04:00
|
|
|
return false;
|
2012-02-09 00:01:09 +04:00
|
|
|
}
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|