2011-03-03 23:55:32 +03:00
|
|
|
<?php
|
2011-03-11 17:25:48 +03:00
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @author Jakob Sack
|
|
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
|
|
*
|
|
|
|
* 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-03-03 23:55:32 +03:00
|
|
|
static private $init = false;
|
|
|
|
static private $apps = array();
|
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();
|
2011-03-03 23:55:32 +03:00
|
|
|
|
|
|
|
/**
|
2011-03-11 16:59:24 +03:00
|
|
|
* @brief loads all apps
|
|
|
|
* @returns true/false
|
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.
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2011-03-04 01:08:11 +03:00
|
|
|
public static function loadApps(){
|
|
|
|
global $SERVERROOT;
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
// Did we allready load everything?
|
2011-03-18 16:12:06 +03:00
|
|
|
if( self::$init ){
|
|
|
|
return true;
|
2011-03-11 16:59:24 +03:00
|
|
|
}
|
|
|
|
|
2011-04-16 11:46:58 +04:00
|
|
|
// Our very own core apps are hardcoded
|
2011-08-10 14:36:32 +04:00
|
|
|
foreach( array( 'admin', 'files', 'help', 'settings' ) as $app ){
|
2011-06-20 21:50:25 +04:00
|
|
|
require( $app.'/appinfo/app.php' );
|
2011-04-16 11:46:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// The rest comes here
|
2011-07-29 23:36:03 +04:00
|
|
|
$apps = OC_Appconfig::getApps();
|
2011-06-19 02:55:19 +04:00
|
|
|
foreach( $apps as $app ){
|
2011-06-19 17:18:52 +04:00
|
|
|
if( self::isEnabled( $app )){
|
2011-06-20 21:50:25 +04:00
|
|
|
if(is_file($SERVERROOT.'/apps/'.$app.'/appinfo/app.php')){
|
|
|
|
require( 'apps/'.$app.'/appinfo/app.php' );
|
2011-06-20 00:30:47 +04:00
|
|
|
}
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
|
2011-03-18 16:12:06 +03:00
|
|
|
self::$init = true;
|
2011-03-11 16:59:24 +03:00
|
|
|
|
2011-03-03 23:55:32 +03:00
|
|
|
// return
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:18:52 +04:00
|
|
|
/**
|
|
|
|
* @brief checks whether or not an app is enabled
|
|
|
|
* @param $app app
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* This function checks whether or not an app is enabled.
|
|
|
|
*/
|
|
|
|
public static function isEnabled( $app ){
|
2011-07-29 23:36:03 +04:00
|
|
|
if( 'yes' == OC_Appconfig::getValue( $app, 'enabled' )){
|
2011-06-19 17:18:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief enables an app
|
|
|
|
* @param $app app
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* This function set an app as enabled in appconfig.
|
|
|
|
*/
|
|
|
|
public static function enable( $app ){
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Appconfig::setValue( $app, 'enabled', 'yes' );
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief enables an app
|
|
|
|
* @param $app app
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* This function set an app as enabled in appconfig.
|
|
|
|
*/
|
|
|
|
public static function disable( $app ){
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Appconfig::setValue( $app, 'enabled', 'no' );
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
2011-03-03 23:55:32 +03:00
|
|
|
/**
|
2011-03-11 16:59:24 +03:00
|
|
|
* @brief makes owncloud aware of this app
|
|
|
|
* @param $data array with all information
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* This function registers the application. $data is an associative array.
|
|
|
|
* The following keys are required:
|
2011-06-20 21:50:25 +04:00
|
|
|
* - id: id of the application, has to be unique ('addressbook')
|
|
|
|
* - name: Human readable name ('Addressbook')
|
2011-03-11 17:25:48 +03:00
|
|
|
* - version: array with Version (major, minor, bugfix) ( array(1, 0, 2))
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
|
|
|
* The following keys are optional:
|
|
|
|
* - order: integer, that influences the position of your application in
|
|
|
|
* a list of applications. Lower values come first.
|
2011-03-03 23:55:32 +03:00
|
|
|
*
|
|
|
|
*/
|
2011-03-11 16:59:24 +03:00
|
|
|
public static function register( $data ){
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_App::$apps[] = $data;
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-03-11 16:59:24 +03:00
|
|
|
* @brief returns information of all apps
|
|
|
|
* @return array with all information
|
2011-03-03 23:55:32 +03:00
|
|
|
*
|
2011-03-11 16:59:24 +03:00
|
|
|
* This function returns all data it got via register().
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2011-03-11 16:59:24 +03:00
|
|
|
public static function get(){
|
2011-07-29 23:36:03 +04:00
|
|
|
return OC_App::$apps;
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
|
|
|
* @brief adds an entry to the navigation
|
|
|
|
* @param $data array containing the data
|
|
|
|
* @returns true/false
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
public static function addNavigationEntry( $data ){
|
2011-07-29 21:38:01 +04:00
|
|
|
$data['active']=false;
|
|
|
|
if(!isset($data['icon'])){
|
|
|
|
$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
|
|
|
|
* @param $id id of the entry
|
|
|
|
* @returns true/false
|
|
|
|
*
|
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.
|
|
|
|
*/
|
2011-04-16 19:49:57 +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
|
|
|
|
* @returns id or empty string
|
|
|
|
*
|
|
|
|
* This function returns the id of the active navigation entry (set by
|
|
|
|
* setActiveNavigationEntry
|
|
|
|
*/
|
|
|
|
public static function getActiveNavigationEntry(){
|
|
|
|
return self::$activeapp;
|
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2011-04-17 21:38:04 +04:00
|
|
|
* @brief Returns the Settings Navigation
|
2011-03-11 16:59:24 +03:00
|
|
|
* @returns associative array
|
|
|
|
*
|
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
|
|
|
*/
|
2011-04-17 21:38:04 +04:00
|
|
|
public static function getSettingsNavigation(){
|
2011-08-09 19:54:02 +04:00
|
|
|
$l=new OC_L10N('core');
|
2011-08-08 23:42:25 +04:00
|
|
|
$admin=array(
|
2011-08-11 20:59:01 +04:00
|
|
|
array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "admin", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "admin", "users.svg" )),
|
|
|
|
array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "admin", "apps.php?installed" ), "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "admin", "apps.svg" )),
|
|
|
|
// array( "id" => "files_administration", "order" => 3, "href" => OC_Helper::linkTo( "files", "admin.php" ), "name" => $l->t("Files"), "icon" => OC_Helper::imagePath( "settings", "options.svg" )),
|
2011-08-08 23:42:25 +04:00
|
|
|
);
|
|
|
|
$settings=array(
|
2011-08-11 20:59:01 +04:00
|
|
|
array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "help", "index.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "help", "help.svg" )),
|
|
|
|
array( "id" => "settings", "order" => 1, "href" => OC_Helper::linkTo( "settings", "index.php" ), "name" => $l->t("Personal"), "icon" => OC_Helper::imagePath( "settings", "personal.svg" ))
|
2011-08-08 23:42:25 +04:00
|
|
|
);
|
|
|
|
if( OC_Group::inGroup( $_SESSION["user_id"], "admin" )){
|
|
|
|
$settings=array_merge($admin,$settings);
|
2011-07-29 21:38:01 +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
|
|
|
|
private static function proceedNavigation( $list ){
|
|
|
|
foreach( $list as &$naventry ){
|
2011-06-20 21:50:25 +04:00
|
|
|
$naventry['subnavigation'] = array();
|
|
|
|
if( $naventry['id'] == self::$activeapp ){
|
|
|
|
$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
|
|
|
|
2011-04-17 21:38:04 +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;}' ));
|
|
|
|
|
|
|
|
return $list;
|
2011-04-16 12:26:18 +04:00
|
|
|
}
|
2011-05-15 18:31:30 +04:00
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2011-05-15 18:31:30 +04:00
|
|
|
* @brief Read 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
|
2011-05-15 18:31:30 +04:00
|
|
|
* @returns array
|
|
|
|
*/
|
|
|
|
public static function getAppInfo($appid){
|
2011-05-28 19:33:25 +04:00
|
|
|
if(is_file($appid)){
|
|
|
|
$file=$appid;
|
|
|
|
}else{
|
2011-08-10 14:20:43 +04:00
|
|
|
$file=OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/info.xml';
|
2011-05-28 19:33:25 +04:00
|
|
|
if(!is_file($file)){
|
|
|
|
return array();
|
|
|
|
}
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
|
|
|
$data=array();
|
2011-05-16 18:20:56 +04:00
|
|
|
$content=file_get_contents($file);
|
|
|
|
$xml = new SimpleXMLElement($content);
|
|
|
|
$data['info']=array();
|
2011-05-28 19:33:25 +04:00
|
|
|
foreach($xml->children() as $child){
|
2011-05-16 18:20:56 +04:00
|
|
|
$data[$child->getName()]=(string)$child;
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
|
|
|
return $data;
|
2011-03-11 16:59:24 +03:00
|
|
|
}
|
2011-07-25 22:12:35 +04:00
|
|
|
|
2011-08-08 23:42:25 +04:00
|
|
|
/**
|
|
|
|
* @brief Returns the navigation
|
|
|
|
* @returns associative array
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
public static function getNavigation(){
|
|
|
|
$navigation = self::proceedNavigation( self::$navigation );
|
|
|
|
return $navigation;
|
|
|
|
}
|
|
|
|
|
2011-07-25 22:12:35 +04:00
|
|
|
/**
|
|
|
|
* get the id of loaded app
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getCurrentApp(){
|
|
|
|
global $WEBROOT;
|
|
|
|
$script=substr($_SERVER["SCRIPT_NAME"],strlen($WEBROOT)+1);
|
|
|
|
$topFolder=substr($script,0,strpos($script,'/'));
|
|
|
|
if($topFolder=='apps'){
|
|
|
|
$length=strlen($topFolder);
|
|
|
|
return substr($script,$length+1,strpos($script,'/',$length+1)-$length-1);
|
|
|
|
}else{
|
|
|
|
return $topFolder;
|
|
|
|
}
|
|
|
|
}
|
2011-08-09 01:32:54 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the forms for either settings, admin or personal
|
|
|
|
*/
|
|
|
|
public static function getForms($type){
|
|
|
|
$forms=array();
|
|
|
|
switch($type){
|
|
|
|
case 'settings':
|
|
|
|
$source=self::$settingsForms;
|
|
|
|
break;
|
|
|
|
case 'admin':
|
|
|
|
$source=self::$adminForms;
|
|
|
|
break;
|
|
|
|
case 'personal':
|
|
|
|
$source=self::$personalForms;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
foreach($source as $form){
|
|
|
|
$forms[]=include $form;
|
|
|
|
}
|
|
|
|
return $forms;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* register a settings form to be shown
|
|
|
|
*/
|
|
|
|
public static function registerSettings($app,$page){
|
|
|
|
self::$settingsForms[]='apps/'.$app.'/'.$page.'.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* register an admin form to be shown
|
|
|
|
*/
|
|
|
|
public static function registerAdmin($app,$page){
|
|
|
|
self::$adminForms[]='apps/'.$app.'/'.$page.'.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* register a personal form to be shown
|
|
|
|
*/
|
|
|
|
public static function registerPersonal($app,$page){
|
|
|
|
self::$personalForms[]='apps/'.$app.'/'.$page.'.php';
|
|
|
|
}
|
2011-08-10 14:20:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get a list of all apps in the apps folder
|
|
|
|
*/
|
|
|
|
public static function getAllApps(){
|
|
|
|
$apps=array();
|
|
|
|
$dh=opendir(OC::$SERVERROOT.'/apps');
|
|
|
|
while($file=readdir($dh)){
|
|
|
|
if(is_file(OC::$SERVERROOT.'/apps/'.$file.'/appinfo/app.php')){
|
|
|
|
$apps[]=$file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $apps;
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|