2012-09-07 16:09:41 +04:00
< ? php
/**
2015-02-26 13:37:37 +03:00
* ownCloud
2014-12-11 19:35:11 +03:00
*
2015-02-26 13:37:37 +03:00
* @ author Michael Gapczynski
* @ copyright 2012 Michael Gapczynski mtgap @ owncloud . com
* @ copyright 2014 Vincent Petry < pvince81 @ owncloud . com >
* @ copyright 2014 Robin McCorkell < rmccorkell @ karoshi . org . uk >
2014-12-11 19:35:11 +03:00
*
2015-02-26 13:37:37 +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 .
2014-12-11 19:35:11 +03:00
*
2015-02-26 13:37:37 +03:00
* This library is distributed in the hope that it will be useful ,
2014-12-11 19:35:11 +03:00
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
2015-02-26 13:37:37 +03:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details .
2014-12-11 19:35:11 +03:00
*
2015-02-26 13:37:37 +03:00
* 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 />.
*/
/**
* Class to configure mount . json globally and for users
2014-03-19 00:15:11 +04:00
*/
2012-09-07 16:09:41 +04:00
class OC_Mount_Config {
2014-03-19 15:20:48 +04:00
// TODO: make this class non-static and give it a proper namespace
2012-09-07 16:09:41 +04:00
const MOUNT_TYPE_GLOBAL = 'global' ;
const MOUNT_TYPE_GROUP = 'group' ;
const MOUNT_TYPE_USER = 'user' ;
2014-05-09 23:59:56 +04:00
const MOUNT_TYPE_PERSONAL = 'personal' ;
2012-09-07 16:09:41 +04:00
2014-10-31 13:41:07 +03:00
// getBackendStatus return types
const STATUS_SUCCESS = 0 ;
const STATUS_ERROR = 1 ;
2014-03-18 21:29:08 +04:00
// whether to skip backend test (for unit tests, as this static class is not mockable)
public static $skipTest = false ;
2013-03-08 21:15:20 +04:00
private static $backends = array ();
2014-04-07 22:18:57 +04:00
/**
* @ param string $class
* @ param array $definition
* @ return bool
*/
2013-03-08 21:15:20 +04:00
public static function registerBackend ( $class , $definition ) {
if ( ! isset ( $definition [ 'backend' ])) {
return false ;
}
OC_Mount_Config :: $backends [ $class ] = $definition ;
return true ;
}
2014-04-07 22:18:57 +04:00
/**
* Setup backends
*
* @ return array of previously registered backends
*/
public static function setUp ( $backends = array ()) {
$backup = self :: $backends ;
self :: $backends = $backends ;
return $backup ;
}
2012-09-07 16:09:41 +04:00
/**
2014-12-11 19:35:11 +03:00
* Get details on each of the external storage backends , used for the mount config UI
* If a custom UI is needed , add the key 'custom' and a javascript file with that name will be loaded
* If the configuration parameter should be secret , add a '*' to the beginning of the value
* If the configuration parameter is a boolean , add a '!' to the beginning of the value
* If the configuration parameter is optional , add a '&' to the beginning of the value
* If the configuration parameter is hidden , add a '#' to the beginning of the value
*
* @ return array
*/
2012-09-07 16:09:41 +04:00
public static function getBackends () {
2014-12-11 19:35:11 +03:00
$sortFunc = function ( $a , $b ) {
2013-03-08 21:15:20 +04:00
return strcasecmp ( $a [ 'backend' ], $b [ 'backend' ]);
};
2014-04-07 22:18:57 +04:00
$backEnds = array ();
2013-03-08 21:15:20 +04:00
foreach ( OC_Mount_Config :: $backends as $class => $backend ) {
if ( isset ( $backend [ 'has_dependencies' ]) and $backend [ 'has_dependencies' ] === true ) {
2013-05-25 19:10:20 +04:00
if ( ! method_exists ( $class , 'checkDependencies' )) {
2014-04-07 22:18:57 +04:00
\OCP\Util :: writeLog ( 'files_external' ,
" Backend class $class has dependencies but doesn't provide method checkDependencies() " ,
\OCP\Util :: DEBUG );
2013-05-25 19:10:20 +04:00
continue ;
} elseif ( $class :: checkDependencies () !== true ) {
2013-03-08 21:15:20 +04:00
continue ;
}
2013-08-15 14:00:02 +04:00
}
2014-04-07 22:18:57 +04:00
$backEnds [ $class ] = $backend ;
2013-08-15 14:00:02 +04:00
}
2013-02-22 20:21:57 +04:00
2014-04-07 22:18:57 +04:00
uasort ( $backEnds , $sortFunc );
2013-04-12 17:51:58 +04:00
2014-04-07 22:18:57 +04:00
return $backEnds ;
2012-09-07 16:09:41 +04:00
}
2014-03-19 15:20:48 +04:00
/**
2014-03-19 17:23:36 +04:00
* Hook that mounts the given user ' s visible mount points
2014-12-11 19:35:11 +03:00
*
2014-03-19 15:20:48 +04:00
* @ param array $data
*/
public static function initMountPointsHook ( $data ) {
2014-12-11 19:35:11 +03:00
self :: addStorageIdToConfig ( null );
2014-09-29 15:46:27 +04:00
if ( $data [ 'user' ]) {
2014-12-11 19:35:11 +03:00
self :: addStorageIdToConfig ( $data [ 'user' ]);
2014-09-29 15:46:27 +04:00
$user = \OC :: $server -> getUserManager () -> get ( $data [ 'user' ]);
2014-11-14 14:45:36 +03:00
if ( ! $user ) {
\OC_Log :: write (
'files_external' ,
'Cannot init external mount points for non-existant user "' . $data [ 'user' ] . '".' ,
\OC_Log :: WARN
);
return ;
}
2014-09-29 15:46:27 +04:00
$userView = new \OC\Files\View ( '/' . $user -> getUID () . '/files' );
$changePropagator = new \OC\Files\Cache\ChangePropagator ( $userView );
$etagPropagator = new \OCA\Files_External\EtagPropagator ( $user , $changePropagator , \OC :: $server -> getConfig ());
$etagPropagator -> propagateDirtyMountPoints ();
\OCP\Util :: connectHook (
\OC\Files\Filesystem :: CLASSNAME ,
\OC\Files\Filesystem :: signal_create_mount ,
$etagPropagator , 'updateHook' );
\OCP\Util :: connectHook (
\OC\Files\Filesystem :: CLASSNAME ,
\OC\Files\Filesystem :: signal_delete_mount ,
$etagPropagator , 'updateHook' );
}
2014-03-19 17:23:36 +04:00
}
/**
* Returns the mount points for the given user .
* The mount point is relative to the data directory .
*
* @ param string $user user
* @ return array of mount point string as key , mountpoint config as value
*/
public static function getAbsoluteMountPoints ( $user ) {
2014-03-21 18:22:48 +04:00
$mountPoints = array ();
2014-03-19 15:20:48 +04:00
$datadir = \OC_Config :: getValue ( " datadirectory " , \OC :: $SERVERROOT . " /data " );
2014-03-28 18:24:38 +04:00
$backends = self :: getBackends ();
2014-03-19 15:20:48 +04:00
// Load system mount points
2014-04-22 00:41:45 +04:00
$mountConfig = self :: readData ();
2014-05-09 23:59:56 +04:00
// Global mount points (is this redundant?)
2014-03-19 15:20:48 +04:00
if ( isset ( $mountConfig [ self :: MOUNT_TYPE_GLOBAL ])) {
foreach ( $mountConfig [ self :: MOUNT_TYPE_GLOBAL ] as $mountPoint => $options ) {
2014-05-22 03:40:42 +04:00
$options [ 'personal' ] = false ;
2014-03-19 15:20:48 +04:00
$options [ 'options' ] = self :: decryptPasswords ( $options [ 'options' ]);
2014-03-28 18:24:38 +04:00
if ( ! isset ( $options [ 'priority' ])) {
$options [ 'priority' ] = $backends [ $options [ 'class' ]][ 'priority' ];
}
2014-05-22 01:29:16 +04:00
// Override if priority greater
2014-12-11 19:35:11 +03:00
if (( ! isset ( $mountPoints [ $mountPoint ]))
|| ( $options [ 'priority' ] >= $mountPoints [ $mountPoint ][ 'priority' ])
) {
2014-05-09 23:59:56 +04:00
$options [ 'priority_type' ] = self :: MOUNT_TYPE_GLOBAL ;
2014-06-30 14:33:11 +04:00
$options [ 'backend' ] = $backends [ $options [ 'class' ]][ 'backend' ];
2014-03-28 18:24:38 +04:00
$mountPoints [ $mountPoint ] = $options ;
}
2014-03-19 15:20:48 +04:00
}
}
2014-05-09 23:59:56 +04:00
// All user mount points
2014-03-28 19:22:35 +04:00
if ( isset ( $mountConfig [ self :: MOUNT_TYPE_USER ]) && isset ( $mountConfig [ self :: MOUNT_TYPE_USER ][ 'all' ])) {
$mounts = $mountConfig [ self :: MOUNT_TYPE_USER ][ 'all' ];
foreach ( $mounts as $mountPoint => $options ) {
$mountPoint = self :: setUserVars ( $user , $mountPoint );
foreach ( $options as & $option ) {
$option = self :: setUserVars ( $user , $option );
}
2014-08-29 12:08:46 +04:00
$options [ 'personal' ] = false ;
2014-03-28 19:22:35 +04:00
$options [ 'options' ] = self :: decryptPasswords ( $options [ 'options' ]);
if ( ! isset ( $options [ 'priority' ])) {
$options [ 'priority' ] = $backends [ $options [ 'class' ]][ 'priority' ];
}
2014-05-22 01:29:16 +04:00
// Override if priority greater
2014-12-11 19:35:11 +03:00
if (( ! isset ( $mountPoints [ $mountPoint ]))
|| ( $options [ 'priority' ] >= $mountPoints [ $mountPoint ][ 'priority' ])
) {
2014-05-09 23:59:56 +04:00
$options [ 'priority_type' ] = self :: MOUNT_TYPE_GLOBAL ;
2014-06-30 14:33:11 +04:00
$options [ 'backend' ] = $backends [ $options [ 'class' ]][ 'backend' ];
2014-03-28 19:22:35 +04:00
$mountPoints [ $mountPoint ] = $options ;
}
}
}
2014-05-09 23:59:56 +04:00
// Group mount points
2014-03-19 15:20:48 +04:00
if ( isset ( $mountConfig [ self :: MOUNT_TYPE_GROUP ])) {
foreach ( $mountConfig [ self :: MOUNT_TYPE_GROUP ] as $group => $mounts ) {
if ( \OC_Group :: inGroup ( $user , $group )) {
foreach ( $mounts as $mountPoint => $options ) {
$mountPoint = self :: setUserVars ( $user , $mountPoint );
foreach ( $options as & $option ) {
$option = self :: setUserVars ( $user , $option );
}
2014-05-22 03:40:42 +04:00
$options [ 'personal' ] = false ;
2014-03-19 15:20:48 +04:00
$options [ 'options' ] = self :: decryptPasswords ( $options [ 'options' ]);
2014-03-28 18:24:38 +04:00
if ( ! isset ( $options [ 'priority' ])) {
$options [ 'priority' ] = $backends [ $options [ 'class' ]][ 'priority' ];
}
2014-05-22 01:29:16 +04:00
// Override if priority greater or if priority type different
2014-12-11 19:35:11 +03:00
if (( ! isset ( $mountPoints [ $mountPoint ]))
2014-03-28 18:24:38 +04:00
|| ( $options [ 'priority' ] >= $mountPoints [ $mountPoint ][ 'priority' ])
2014-12-11 19:35:11 +03:00
|| ( $mountPoints [ $mountPoint ][ 'priority_type' ] !== self :: MOUNT_TYPE_GROUP )
) {
2014-05-09 23:59:56 +04:00
$options [ 'priority_type' ] = self :: MOUNT_TYPE_GROUP ;
2014-06-30 14:33:11 +04:00
$options [ 'backend' ] = $backends [ $options [ 'class' ]][ 'backend' ];
2014-03-28 18:24:38 +04:00
$mountPoints [ $mountPoint ] = $options ;
}
2014-03-19 15:20:48 +04:00
}
}
}
}
2014-05-09 23:59:56 +04:00
// User mount points
2014-03-19 15:20:48 +04:00
if ( isset ( $mountConfig [ self :: MOUNT_TYPE_USER ])) {
foreach ( $mountConfig [ self :: MOUNT_TYPE_USER ] as $mountUser => $mounts ) {
2014-03-28 19:22:35 +04:00
if ( strtolower ( $mountUser ) === strtolower ( $user )) {
2014-03-19 15:20:48 +04:00
foreach ( $mounts as $mountPoint => $options ) {
$mountPoint = self :: setUserVars ( $user , $mountPoint );
foreach ( $options as & $option ) {
$option = self :: setUserVars ( $user , $option );
}
2014-05-22 03:40:42 +04:00
$options [ 'personal' ] = false ;
2014-03-19 15:20:48 +04:00
$options [ 'options' ] = self :: decryptPasswords ( $options [ 'options' ]);
2014-03-28 18:24:38 +04:00
if ( ! isset ( $options [ 'priority' ])) {
$options [ 'priority' ] = $backends [ $options [ 'class' ]][ 'priority' ];
}
2014-05-22 01:29:16 +04:00
// Override if priority greater or if priority type different
2014-12-11 19:35:11 +03:00
if (( ! isset ( $mountPoints [ $mountPoint ]))
2014-03-28 18:24:38 +04:00
|| ( $options [ 'priority' ] >= $mountPoints [ $mountPoint ][ 'priority' ])
2014-12-11 19:35:11 +03:00
|| ( $mountPoints [ $mountPoint ][ 'priority_type' ] !== self :: MOUNT_TYPE_USER )
) {
2014-05-09 23:59:56 +04:00
$options [ 'priority_type' ] = self :: MOUNT_TYPE_USER ;
2014-06-30 14:33:11 +04:00
$options [ 'backend' ] = $backends [ $options [ 'class' ]][ 'backend' ];
2014-03-28 18:24:38 +04:00
$mountPoints [ $mountPoint ] = $options ;
}
2014-03-19 15:20:48 +04:00
}
}
}
}
2014-08-01 19:15:46 +04:00
$personalBackends = self :: getPersonalBackends ();
2014-03-19 15:20:48 +04:00
// Load personal mount points
2014-04-22 00:41:45 +04:00
$mountConfig = self :: readData ( $user );
2014-03-19 15:20:48 +04:00
if ( isset ( $mountConfig [ self :: MOUNT_TYPE_USER ][ $user ])) {
foreach ( $mountConfig [ self :: MOUNT_TYPE_USER ][ $user ] as $mountPoint => $options ) {
2014-08-01 19:15:46 +04:00
if ( isset ( $personalBackends [ $options [ 'class' ]])) {
$options [ 'personal' ] = true ;
$options [ 'options' ] = self :: decryptPasswords ( $options [ 'options' ]);
2014-03-28 18:24:38 +04:00
2014-08-01 19:15:46 +04:00
// Always override previous config
$options [ 'priority_type' ] = self :: MOUNT_TYPE_PERSONAL ;
$options [ 'backend' ] = $backends [ $options [ 'class' ]][ 'backend' ];
$mountPoints [ $mountPoint ] = $options ;
}
2014-03-19 15:20:48 +04:00
}
}
2014-03-19 17:23:36 +04:00
return $mountPoints ;
2014-03-19 15:20:48 +04:00
}
/**
* fill in the correct values for $user
*
* @ param string $user
* @ param string $input
* @ return string
*/
private static function setUserVars ( $user , $input ) {
return str_replace ( '$user' , $user , $input );
}
2014-02-18 19:36:02 +04:00
/**
2014-12-11 19:35:11 +03:00
* Get details on each of the external storage backends , used for the mount config UI
* Some backends are not available as a personal backend , f . e . Local and such that have
* been disabled by the admin .
*
* If a custom UI is needed , add the key 'custom' and a javascript file with that name will be loaded
* If the configuration parameter should be secret , add a '*' to the beginning of the value
* If the configuration parameter is a boolean , add a '!' to the beginning of the value
* If the configuration parameter is optional , add a '&' to the beginning of the value
* If the configuration parameter is hidden , add a '#' to the beginning of the value
*
* @ return array
*/
2014-02-18 19:36:02 +04:00
public static function getPersonalBackends () {
2014-04-13 13:01:50 +04:00
// Check whether the user has permissions to add personal storage backends
// return an empty array if this is not the case
2014-12-11 19:35:11 +03:00
if ( OCP\Config :: getAppValue ( 'files_external' , 'allow_user_mounting' , 'yes' ) !== 'yes' ) {
2014-04-13 13:01:50 +04:00
return array ();
}
2014-04-07 22:18:57 +04:00
$backEnds = self :: getBackends ();
2014-02-18 19:36:02 +04:00
// Remove local storage and other disabled storages
2014-04-07 22:18:57 +04:00
unset ( $backEnds [ '\OC\Files\Storage\Local' ]);
2014-02-18 19:36:02 +04:00
2014-04-07 22:18:57 +04:00
$allowedBackEnds = explode ( ',' , OCP\Config :: getAppValue ( 'files_external' , 'user_mounting_backends' , '' ));
foreach ( $backEnds as $backend => $null ) {
if ( ! in_array ( $backend , $allowedBackEnds )) {
unset ( $backEnds [ $backend ]);
2014-02-18 19:36:02 +04:00
}
}
2014-04-07 22:18:57 +04:00
return $backEnds ;
2014-02-18 19:36:02 +04:00
}
2012-09-07 16:09:41 +04:00
/**
2014-12-11 19:35:11 +03:00
* Get the system mount points
* The returned array is not in the same format as getUserMountPoints ()
*
* @ return array
*/
2012-09-07 16:09:41 +04:00
public static function getSystemMountPoints () {
2014-04-22 00:41:45 +04:00
$mountPoints = self :: readData ();
2012-09-07 16:09:41 +04:00
$backends = self :: getBackends ();
$system = array ();
if ( isset ( $mountPoints [ self :: MOUNT_TYPE_GROUP ])) {
foreach ( $mountPoints [ self :: MOUNT_TYPE_GROUP ] as $group => $mounts ) {
foreach ( $mounts as $mountPoint => $mount ) {
2013-01-03 21:07:04 +04:00
// Update old classes to new namespace
if ( strpos ( $mount [ 'class' ], 'OC_Filestorage_' ) !== false ) {
2014-12-11 19:35:11 +03:00
$mount [ 'class' ] = '\OC\Files\Storage\\' . substr ( $mount [ 'class' ], 15 );
2013-01-03 21:07:04 +04:00
}
2014-03-19 00:15:11 +04:00
$mount [ 'options' ] = self :: decryptPasswords ( $mount [ 'options' ]);
2014-03-28 18:24:38 +04:00
if ( ! isset ( $mount [ 'priority' ])) {
$mount [ 'priority' ] = $backends [ $mount [ 'class' ]][ 'priority' ];
}
2012-09-07 16:09:41 +04:00
// Remove '/$user/files/' from mount point
$mountPoint = substr ( $mountPoint , 13 );
2014-03-26 15:10:17 +04:00
$config = array (
'class' => $mount [ 'class' ],
'mountpoint' => $mountPoint ,
'backend' => $backends [ $mount [ 'class' ]][ 'backend' ],
2014-03-28 18:24:38 +04:00
'priority' => $mount [ 'priority' ],
2014-03-26 15:10:17 +04:00
'options' => $mount [ 'options' ],
'applicable' => array ( 'groups' => array ( $group ), 'users' => array ()),
2014-03-26 15:04:13 +04:00
'status' => self :: getBackendStatus ( $mount [ 'class' ], $mount [ 'options' ], false )
2014-03-26 15:10:17 +04:00
);
2015-03-13 19:43:38 +03:00
if ( isset ( $mount [ 'id' ])) {
$config [ 'id' ] = ( int ) $mount [ 'id' ];
}
if ( isset ( $mount [ 'storage_id' ])) {
$config [ 'storage_id' ] = ( int ) $mount [ 'storage_id' ];
}
2015-03-13 14:49:11 +03:00
if ( isset ( $mount [ 'mountOptions' ])) {
$config [ 'mountOptions' ] = $mount [ 'mountOptions' ];
}
2014-03-26 15:10:17 +04:00
$hash = self :: makeConfigHash ( $config );
// If an existing config exists (with same class, mountpoint and options)
if ( isset ( $system [ $hash ])) {
// add the groups into that config
$system [ $hash ][ 'applicable' ][ 'groups' ]
= array_merge ( $system [ $hash ][ 'applicable' ][ 'groups' ], array ( $group ));
2012-09-07 16:09:41 +04:00
} else {
2014-03-26 15:10:17 +04:00
$system [ $hash ] = $config ;
2012-09-07 16:09:41 +04:00
}
}
}
}
if ( isset ( $mountPoints [ self :: MOUNT_TYPE_USER ])) {
foreach ( $mountPoints [ self :: MOUNT_TYPE_USER ] as $user => $mounts ) {
foreach ( $mounts as $mountPoint => $mount ) {
2013-01-03 21:07:04 +04:00
// Update old classes to new namespace
if ( strpos ( $mount [ 'class' ], 'OC_Filestorage_' ) !== false ) {
2014-12-11 19:35:11 +03:00
$mount [ 'class' ] = '\OC\Files\Storage\\' . substr ( $mount [ 'class' ], 15 );
2013-01-03 21:07:04 +04:00
}
2014-03-19 00:15:11 +04:00
$mount [ 'options' ] = self :: decryptPasswords ( $mount [ 'options' ]);
2014-03-28 18:24:38 +04:00
if ( ! isset ( $mount [ 'priority' ])) {
$mount [ 'priority' ] = $backends [ $mount [ 'class' ]][ 'priority' ];
}
2012-09-07 16:09:41 +04:00
// Remove '/$user/files/' from mount point
$mountPoint = substr ( $mountPoint , 13 );
2014-03-26 15:10:17 +04:00
$config = array (
'class' => $mount [ 'class' ],
'mountpoint' => $mountPoint ,
'backend' => $backends [ $mount [ 'class' ]][ 'backend' ],
2014-03-28 18:24:38 +04:00
'priority' => $mount [ 'priority' ],
2014-03-26 15:10:17 +04:00
'options' => $mount [ 'options' ],
'applicable' => array ( 'groups' => array (), 'users' => array ( $user )),
2014-03-26 15:22:47 +04:00
'status' => self :: getBackendStatus ( $mount [ 'class' ], $mount [ 'options' ], false )
2014-03-26 15:10:17 +04:00
);
2015-03-13 19:43:38 +03:00
if ( isset ( $mount [ 'id' ])) {
$config [ 'id' ] = ( int ) $mount [ 'id' ];
}
if ( isset ( $mount [ 'storage_id' ])) {
$config [ 'storage_id' ] = ( int ) $mount [ 'storage_id' ];
}
2015-03-13 14:49:11 +03:00
if ( isset ( $mount [ 'mountOptions' ])) {
$config [ 'mountOptions' ] = $mount [ 'mountOptions' ];
}
2014-03-26 15:10:17 +04:00
$hash = self :: makeConfigHash ( $config );
// If an existing config exists (with same class, mountpoint and options)
if ( isset ( $system [ $hash ])) {
// add the users into that config
$system [ $hash ][ 'applicable' ][ 'users' ]
= array_merge ( $system [ $hash ][ 'applicable' ][ 'users' ], array ( $user ));
2012-09-07 16:09:41 +04:00
} else {
2014-03-26 15:10:17 +04:00
$system [ $hash ] = $config ;
2012-09-07 16:09:41 +04:00
}
}
}
}
2014-03-26 15:10:17 +04:00
return array_values ( $system );
2012-09-07 16:09:41 +04:00
}
/**
2014-12-11 19:35:11 +03:00
* Get the personal mount points of the current user
* The returned array is not in the same format as getUserMountPoints ()
*
* @ return array
*/
2012-09-07 16:09:41 +04:00
public static function getPersonalMountPoints () {
2014-04-22 00:41:45 +04:00
$mountPoints = self :: readData ( OCP\User :: getUser ());
2014-04-07 22:18:57 +04:00
$backEnds = self :: getBackends ();
2012-09-07 16:09:41 +04:00
$uid = OCP\User :: getUser ();
$personal = array ();
if ( isset ( $mountPoints [ self :: MOUNT_TYPE_USER ][ $uid ])) {
foreach ( $mountPoints [ self :: MOUNT_TYPE_USER ][ $uid ] as $mountPoint => $mount ) {
2013-01-03 21:07:04 +04:00
// Update old classes to new namespace
if ( strpos ( $mount [ 'class' ], 'OC_Filestorage_' ) !== false ) {
2014-12-11 19:35:11 +03:00
$mount [ 'class' ] = '\OC\Files\Storage\\' . substr ( $mount [ 'class' ], 15 );
2013-01-03 21:07:04 +04:00
}
2014-03-19 00:15:11 +04:00
$mount [ 'options' ] = self :: decryptPasswords ( $mount [ 'options' ]);
2015-03-13 14:49:11 +03:00
$config = array (
2012-12-24 22:45:52 +04:00
'class' => $mount [ 'class' ],
2014-03-26 15:10:17 +04:00
// Remove '/uid/files/' from mount point
'mountpoint' => substr ( $mountPoint , strlen ( $uid ) + 8 ),
2014-04-07 22:18:57 +04:00
'backend' => $backEnds [ $mount [ 'class' ]][ 'backend' ],
2014-03-26 15:10:17 +04:00
'options' => $mount [ 'options' ],
2014-03-26 15:04:13 +04:00
'status' => self :: getBackendStatus ( $mount [ 'class' ], $mount [ 'options' ], true )
2012-12-24 22:45:52 +04:00
);
2015-03-13 19:43:38 +03:00
if ( isset ( $mount [ 'id' ])) {
$config [ 'id' ] = ( int ) $mount [ 'id' ];
}
if ( isset ( $mount [ 'storage_id' ])) {
$config [ 'storage_id' ] = ( int ) $mount [ 'storage_id' ];
}
2015-03-13 14:49:11 +03:00
if ( isset ( $mount [ 'mountOptions' ])) {
$config [ 'mountOptions' ] = $mount [ 'mountOptions' ];
}
$personal [] = $config ;
2012-09-07 16:09:41 +04:00
}
}
return $personal ;
}
2014-03-19 15:20:48 +04:00
/**
* Test connecting using the given backend configuration
2014-12-11 19:35:11 +03:00
*
2014-03-19 15:20:48 +04:00
* @ param string $class backend class name
* @ param array $options backend configuration options
2014-10-31 13:41:07 +03:00
* @ return int see self :: STATUS_ *
2014-03-19 15:20:48 +04:00
*/
2014-10-31 13:41:07 +03:00
public static function getBackendStatus ( $class , $options , $isPersonal ) {
2014-03-18 21:29:08 +04:00
if ( self :: $skipTest ) {
2014-10-31 13:41:07 +03:00
return self :: STATUS_SUCCESS ;
2014-03-18 21:29:08 +04:00
}
2012-12-24 22:45:52 +04:00
foreach ( $options as & $option ) {
2014-03-19 15:20:48 +04:00
$option = self :: setUserVars ( OCP\User :: getUser (), $option );
2012-12-24 22:45:52 +04:00
}
if ( class_exists ( $class )) {
try {
2012-12-28 21:00:48 +04:00
$storage = new $class ( $options );
2014-10-31 13:41:07 +03:00
if ( $storage -> test ( $isPersonal )) {
return self :: STATUS_SUCCESS ;
}
2012-12-24 22:45:52 +04:00
} catch ( Exception $exception ) {
2013-12-02 19:55:43 +04:00
\OCP\Util :: logException ( 'files_external' , $exception );
2012-12-24 22:45:52 +04:00
}
}
2014-10-31 13:41:07 +03:00
return self :: STATUS_ERROR ;
2012-12-24 22:45:52 +04:00
}
2012-09-07 16:09:41 +04:00
/**
2014-12-11 19:35:11 +03:00
* Add a mount point to the filesystem
*
* @ param string $mountPoint Mount point
* @ param string $class Backend class
* @ param array $classOptions Backend parameters for the class
* @ param string $mountType MOUNT_TYPE_GROUP | MOUNT_TYPE_USER
* @ param string $applicable User or group to apply mount to
* @ param bool $isPersonal Personal or system mount point i . e . is this being called from the personal or admin page
* @ param int | null $priority Mount point priority , null for default
* @ return boolean
2014-10-31 13:41:07 +03:00
*
* @ deprecated use StoragesService #addStorage() instead
2014-12-11 19:35:11 +03:00
*/
2012-11-30 19:27:11 +04:00
public static function addMountPoint ( $mountPoint ,
$class ,
$classOptions ,
$mountType ,
$applicable ,
2014-05-14 23:32:19 +04:00
$isPersonal = false ,
$priority = null ) {
2014-02-19 22:08:28 +04:00
$backends = self :: getBackends ();
2013-11-21 20:21:51 +04:00
$mountPoint = OC\Files\Filesystem :: normalizePath ( $mountPoint );
2014-09-28 18:32:27 +04:00
$relMountPoint = $mountPoint ;
2014-04-14 12:15:43 +04:00
if ( $mountPoint === '' || $mountPoint === '/' ) {
// can't mount at root folder
2013-11-21 20:21:51 +04:00
return false ;
}
2014-02-19 22:08:28 +04:00
if ( ! isset ( $backends [ $class ])) {
// invalid backend
return false ;
2014-02-18 19:36:02 +04:00
}
2012-09-07 16:09:41 +04:00
if ( $isPersonal ) {
// Verify that the mount point applies for the current user
2014-02-18 19:36:02 +04:00
// Prevent non-admin users from mounting local storage and other disabled backends
$allowed_backends = self :: getPersonalBackends ();
2014-03-18 20:54:14 +04:00
if ( $applicable != OCP\User :: getUser () || ! isset ( $allowed_backends [ $class ])) {
2012-09-07 16:09:41 +04:00
return false ;
}
2014-12-11 19:35:11 +03:00
$mountPoint = '/' . $applicable . '/files/' . ltrim ( $mountPoint , '/' );
2012-09-07 16:09:41 +04:00
} else {
2014-12-11 19:35:11 +03:00
$mountPoint = '/$user/files/' . ltrim ( $mountPoint , '/' );
2012-09-07 16:09:41 +04:00
}
2014-03-19 00:15:11 +04:00
$mount = array ( $applicable => array (
$mountPoint => array (
'class' => $class ,
'options' => self :: encryptPasswords ( $classOptions ))
2014-12-11 19:35:11 +03:00
)
2014-03-19 00:15:11 +04:00
);
2014-12-11 19:35:11 +03:00
if ( ! $isPersonal && ! is_null ( $priority )) {
2014-05-14 23:32:19 +04:00
$mount [ $applicable ][ $mountPoint ][ 'priority' ] = $priority ;
2014-03-28 18:24:38 +04:00
}
2014-05-13 03:14:30 +04:00
2014-12-11 19:35:11 +03:00
$mountPoints = self :: readData ( $isPersonal ? OCP\User :: getUser () : null );
2014-09-25 22:17:52 +04:00
// who else loves multi-dimensional array ?
$isNew = ! isset ( $mountPoints [ $mountType ]) ||
! isset ( $mountPoints [ $mountType ][ $applicable ]) ||
! isset ( $mountPoints [ $mountType ][ $applicable ][ $mountPoint ]);
2014-05-13 03:14:30 +04:00
$mountPoints = self :: mergeMountPoints ( $mountPoints , $mount , $mountType );
2014-05-14 23:32:19 +04:00
// Set default priority if none set
if ( ! isset ( $mountPoints [ $mountType ][ $applicable ][ $mountPoint ][ 'priority' ])) {
2014-05-22 01:31:18 +04:00
if ( isset ( $backends [ $class ][ 'priority' ])) {
$mountPoints [ $mountType ][ $applicable ][ $mountPoint ][ 'priority' ]
= $backends [ $class ][ 'priority' ];
} else {
$mountPoints [ $mountType ][ $applicable ][ $mountPoint ][ 'priority' ]
= 100 ;
}
2014-05-14 23:32:19 +04:00
}
2014-12-11 19:35:11 +03:00
self :: writeData ( $isPersonal ? OCP\User :: getUser () : null , $mountPoints );
2014-05-13 03:14:30 +04:00
2014-09-25 22:17:52 +04:00
$result = self :: getBackendStatus ( $class , $classOptions , $isPersonal );
2014-10-31 13:41:07 +03:00
if ( $result === self :: STATUS_SUCCESS && $isNew ) {
2014-09-25 22:17:52 +04:00
\OC_Hook :: emit (
\OC\Files\Filesystem :: CLASSNAME ,
2014-09-26 14:51:25 +04:00
\OC\Files\Filesystem :: signal_create_mount ,
2014-09-25 22:17:52 +04:00
array (
2014-09-28 18:32:27 +04:00
\OC\Files\Filesystem :: signal_param_path => $relMountPoint ,
2014-09-26 14:51:25 +04:00
\OC\Files\Filesystem :: signal_param_mount_type => $mountType ,
\OC\Files\Filesystem :: signal_param_users => $applicable ,
2014-09-25 22:17:52 +04:00
)
);
}
return $result ;
2012-09-07 16:09:41 +04:00
}
/**
2014-12-11 19:35:11 +03:00
*
* @ param string $mountPoint Mount point
* @ param string $mountType MOUNT_TYPE_GROUP | MOUNT_TYPE_USER
* @ param string $applicable User or group to remove mount from
* @ param bool $isPersonal Personal or system mount point
* @ return bool
2014-10-31 13:41:07 +03:00
*
* @ deprecated use StoragesService #removeStorage() instead
2014-12-11 19:35:11 +03:00
*/
2012-09-07 16:09:41 +04:00
public static function removeMountPoint ( $mountPoint , $mountType , $applicable , $isPersonal = false ) {
// Verify that the mount point applies for the current user
2014-09-28 18:32:27 +04:00
$relMountPoints = $mountPoint ;
2012-09-07 16:09:41 +04:00
if ( $isPersonal ) {
if ( $applicable != OCP\User :: getUser ()) {
return false ;
}
2014-12-11 19:35:11 +03:00
$mountPoint = '/' . $applicable . '/files/' . ltrim ( $mountPoint , '/' );
2012-09-07 16:09:41 +04:00
} else {
2014-12-11 19:35:11 +03:00
$mountPoint = '/$user/files/' . ltrim ( $mountPoint , '/' );
2012-09-07 16:09:41 +04:00
}
2014-05-22 03:53:33 +04:00
$mountPoint = \OC\Files\Filesystem :: normalizePath ( $mountPoint );
2014-12-11 19:35:11 +03:00
$mountPoints = self :: readData ( $isPersonal ? OCP\User :: getUser () : null );
2012-09-07 16:09:41 +04:00
// Remove mount point
unset ( $mountPoints [ $mountType ][ $applicable ][ $mountPoint ]);
// Unset parent arrays if empty
if ( empty ( $mountPoints [ $mountType ][ $applicable ])) {
unset ( $mountPoints [ $mountType ][ $applicable ]);
if ( empty ( $mountPoints [ $mountType ])) {
unset ( $mountPoints [ $mountType ]);
}
}
2014-12-11 19:35:11 +03:00
self :: writeData ( $isPersonal ? OCP\User :: getUser () : null , $mountPoints );
2014-09-25 22:17:52 +04:00
\OC_Hook :: emit (
\OC\Files\Filesystem :: CLASSNAME ,
2014-09-26 14:51:25 +04:00
\OC\Files\Filesystem :: signal_delete_mount ,
2014-09-25 22:17:52 +04:00
array (
2014-09-28 18:32:27 +04:00
\OC\Files\Filesystem :: signal_param_path => $relMountPoints ,
2014-09-26 14:51:25 +04:00
\OC\Files\Filesystem :: signal_param_mount_type => $mountType ,
\OC\Files\Filesystem :: signal_param_users => $applicable ,
2014-09-25 22:17:52 +04:00
)
);
2012-09-07 16:09:41 +04:00
return true ;
}
2014-05-22 03:40:42 +04:00
/**
*
* @ param string $mountPoint Mount point
* @ param string $target The new mount point
* @ param string $mountType MOUNT_TYPE_GROUP | MOUNT_TYPE_USER
* @ return bool
*/
public static function movePersonalMountPoint ( $mountPoint , $target , $mountType ) {
$mountPoint = rtrim ( $mountPoint , '/' );
$user = OCP\User :: getUser ();
$mountPoints = self :: readData ( $user );
if ( ! isset ( $mountPoints [ $mountType ][ $user ][ $mountPoint ])) {
return false ;
}
$mountPoints [ $mountType ][ $user ][ $target ] = $mountPoints [ $mountType ][ $user ][ $mountPoint ];
// Remove old mount point
unset ( $mountPoints [ $mountType ][ $user ][ $mountPoint ]);
self :: writeData ( $user , $mountPoints );
return true ;
}
2012-09-07 16:09:41 +04:00
/**
2014-12-11 19:35:11 +03:00
* Read the mount points in the config file into an array
*
* @ param string | null $user If not null , personal for $user , otherwise system
* @ return array
*/
2014-10-31 13:41:07 +03:00
public static function readData ( $user = null ) {
2014-04-22 00:41:45 +04:00
if ( isset ( $user )) {
2014-12-11 19:35:11 +03:00
$jsonFile = OC_User :: getHome ( $user ) . '/mount.json' ;
2012-09-07 16:09:41 +04:00
} else {
2014-02-24 13:35:24 +04:00
$datadir = \OC_Config :: getValue ( 'datadirectory' , \OC :: $SERVERROOT . '/data/' );
$jsonFile = \OC_Config :: getValue ( 'mount_file' , $datadir . '/mount.json' );
2012-09-07 16:09:41 +04:00
}
2013-02-16 04:50:40 +04:00
if ( is_file ( $jsonFile )) {
$mountPoints = json_decode ( file_get_contents ( $jsonFile ), true );
if ( is_array ( $mountPoints )) {
return $mountPoints ;
}
2012-09-07 16:09:41 +04:00
}
return array ();
}
/**
2014-12-11 19:35:11 +03:00
* Write the mount points to the config file
*
* @ param string | null $user If not null , personal for $user , otherwise system
* @ param array $data Mount points
*/
2014-10-31 13:41:07 +03:00
public static function writeData ( $user , $data ) {
2014-04-22 00:41:45 +04:00
if ( isset ( $user )) {
2014-12-11 19:35:11 +03:00
$file = OC_User :: getHome ( $user ) . '/mount.json' ;
2012-09-07 16:09:41 +04:00
} else {
2014-02-24 13:35:24 +04:00
$datadir = \OC_Config :: getValue ( 'datadirectory' , \OC :: $SERVERROOT . '/data/' );
$file = \OC_Config :: getValue ( 'mount_file' , $datadir . '/mount.json' );
2012-09-07 16:09:41 +04:00
}
2014-12-11 19:35:11 +03:00
foreach ( $data as & $applicables ) {
foreach ( $applicables as & $mountPoints ) {
foreach ( $mountPoints as & $options ) {
self :: addStorageId ( $options );
}
}
}
2014-12-12 14:25:59 +03:00
$content = json_encode ( $data , JSON_PRETTY_PRINT );
2012-09-07 16:09:41 +04:00
@ file_put_contents ( $file , $content );
2013-04-06 14:21:21 +04:00
@ chmod ( $file , 0640 );
2012-09-07 16:09:41 +04:00
}
2012-12-11 00:10:28 +04:00
/**
* check dependencies
*/
public static function checkDependencies () {
2013-08-02 17:44:56 +04:00
$dependencies = array ();
2013-03-08 21:15:20 +04:00
foreach ( OC_Mount_Config :: $backends as $class => $backend ) {
if ( isset ( $backend [ 'has_dependencies' ]) and $backend [ 'has_dependencies' ] === true ) {
$result = $class :: checkDependencies ();
2013-08-02 17:44:56 +04:00
if ( $result !== true ) {
2014-04-07 22:18:57 +04:00
if ( ! is_array ( $result )) {
$result = array ( $result );
}
2013-08-02 17:44:56 +04:00
foreach ( $result as $key => $value ) {
if ( is_numeric ( $key )) {
OC_Mount_Config :: addDependency ( $dependencies , $value , $backend [ 'backend' ]);
} else {
OC_Mount_Config :: addDependency ( $dependencies , $key , $backend [ 'backend' ], $value );
}
}
2013-03-08 21:15:20 +04:00
}
2013-08-15 14:00:02 +04:00
}
2013-02-14 20:57:19 +04:00
}
2012-12-11 00:10:28 +04:00
2013-08-02 17:44:56 +04:00
if ( count ( $dependencies ) > 0 ) {
return OC_Mount_Config :: generateDependencyMessage ( $dependencies );
2013-05-30 19:37:47 +04:00
}
return '' ;
}
2014-12-11 19:35:11 +03:00
private static function addDependency ( & $dependencies , $module , $backend , $message = null ) {
2013-08-02 17:44:56 +04:00
if ( ! isset ( $dependencies [ $module ])) {
$dependencies [ $module ] = array ();
}
if ( $message === null ) {
$dependencies [ $module ][] = $backend ;
} else {
$dependencies [ $module ][] = array ( 'backend' => $backend , 'message' => $message );
}
}
private static function generateDependencyMessage ( $dependencies ) {
$l = new \OC_L10N ( 'files_external' );
$dependencyMessage = '' ;
foreach ( $dependencies as $module => $backends ) {
$dependencyGroup = array ();
foreach ( $backends as $backend ) {
if ( is_array ( $backend )) {
$dependencyMessage .= '<br />' . $l -> t ( '<b>Note:</b> ' ) . $backend [ 'message' ];
} else {
$dependencyGroup [] = $backend ;
2013-05-30 19:37:47 +04:00
}
}
2014-10-24 01:27:15 +04:00
$dependencyGroupCount = count ( $dependencyGroup );
if ( $dependencyGroupCount > 0 ) {
2013-08-02 17:44:56 +04:00
$backends = '' ;
2014-10-24 01:27:15 +04:00
for ( $i = 0 ; $i < $dependencyGroupCount ; $i ++ ) {
if ( $i > 0 && $i === $dependencyGroupCount - 1 ) {
2014-12-11 19:35:11 +03:00
$backends .= ' ' . $l -> t ( 'and' ) . ' ' ;
2013-08-02 17:44:56 +04:00
} elseif ( $i > 0 ) {
$backends .= ', ' ;
}
$backends .= '<i>' . $dependencyGroup [ $i ] . '</i>' ;
}
$dependencyMessage .= '<br />' . OC_Mount_Config :: getSingleDependencyMessage ( $l , $module , $backends );
2013-05-30 19:37:47 +04:00
}
}
2013-08-02 17:44:56 +04:00
return $dependencyMessage ;
}
2013-05-30 19:37:47 +04:00
2013-08-02 17:44:56 +04:00
/**
* Returns a dependency missing message
2014-12-11 19:35:11 +03:00
*
2014-05-13 15:29:25 +04:00
* @ param OC_L10N $l
* @ param string $module
* @ param string $backend
2013-08-02 17:44:56 +04:00
* @ return string
*/
2014-10-24 16:13:40 +04:00
private static function getSingleDependencyMessage ( OC_L10N $l , $module , $backend ) {
2013-08-02 17:44:56 +04:00
switch ( strtolower ( $module )) {
case 'curl' :
return $l -> t ( '<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.' , $backend );
case 'ftp' :
return $l -> t ( '<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.' , $backend );
default :
return $l -> t ( '<b>Note:</b> "%s" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.' , array ( $module , $backend ));
}
2012-12-11 00:10:28 +04:00
}
2014-03-19 00:15:11 +04:00
/**
* Encrypt passwords in the given config options
2014-12-11 19:35:11 +03:00
*
2014-03-19 00:15:11 +04:00
* @ param array $options mount options
* @ return array updated options
*/
2014-10-31 13:41:07 +03:00
public static function encryptPasswords ( $options ) {
2014-03-19 00:15:11 +04:00
if ( isset ( $options [ 'password' ])) {
2014-03-19 14:42:22 +04:00
$options [ 'password_encrypted' ] = self :: encryptPassword ( $options [ 'password' ]);
2014-03-19 20:56:36 +04:00
// do not unset the password, we want to keep the keys order
// on load... because that's how the UI currently works
$options [ 'password' ] = '' ;
2014-03-19 00:15:11 +04:00
}
return $options ;
}
/**
* Decrypt passwords in the given config options
2014-12-11 19:35:11 +03:00
*
2014-03-19 00:15:11 +04:00
* @ param array $options mount options
* @ return array updated options
*/
2014-10-31 13:41:07 +03:00
public static function decryptPasswords ( $options ) {
2014-03-19 00:15:11 +04:00
// note: legacy options might still have the unencrypted password in the "password" field
if ( isset ( $options [ 'password_encrypted' ])) {
2014-03-19 14:42:22 +04:00
$options [ 'password' ] = self :: decryptPassword ( $options [ 'password_encrypted' ]);
2014-03-19 00:15:11 +04:00
unset ( $options [ 'password_encrypted' ]);
}
return $options ;
}
2014-03-19 14:42:22 +04:00
/**
* Encrypt a single password
2014-12-11 19:35:11 +03:00
*
2014-03-19 14:42:22 +04:00
* @ param string $password plain text password
2014-05-13 15:29:25 +04:00
* @ return string encrypted password
2014-03-19 14:42:22 +04:00
*/
private static function encryptPassword ( $password ) {
$cipher = self :: getCipher ();
$iv = \OCP\Util :: generateRandomBytes ( 16 );
$cipher -> setIV ( $iv );
return base64_encode ( $iv . $cipher -> encrypt ( $password ));
}
/**
* Decrypts a single password
2014-12-11 19:35:11 +03:00
*
2014-03-19 14:42:22 +04:00
* @ param string $encryptedPassword encrypted password
2014-05-13 15:29:25 +04:00
* @ return string plain text password
2014-03-19 14:42:22 +04:00
*/
private static function decryptPassword ( $encryptedPassword ) {
$cipher = self :: getCipher ();
$binaryPassword = base64_decode ( $encryptedPassword );
$iv = substr ( $binaryPassword , 0 , 16 );
$cipher -> setIV ( $iv );
$binaryPassword = substr ( $binaryPassword , 16 );
return $cipher -> decrypt ( $binaryPassword );
}
2014-05-13 03:14:30 +04:00
/**
* Merges mount points
2014-12-11 19:35:11 +03:00
*
2014-05-13 03:14:30 +04:00
* @ param array $data Existing mount points
* @ param array $mountPoint New mount point
* @ param string $mountType
* @ return array
*/
private static function mergeMountPoints ( $data , $mountPoint , $mountType ) {
$applicable = key ( $mountPoint );
2014-05-14 23:32:19 +04:00
$mountPath = key ( $mountPoint [ $applicable ]);
2014-05-13 03:14:30 +04:00
if ( isset ( $data [ $mountType ])) {
if ( isset ( $data [ $mountType ][ $applicable ])) {
2014-05-15 01:34:38 +04:00
// Merge priorities
if ( isset ( $data [ $mountType ][ $applicable ][ $mountPath ])
&& isset ( $data [ $mountType ][ $applicable ][ $mountPath ][ 'priority' ])
2014-12-11 19:35:11 +03:00
&& ! isset ( $mountPoint [ $applicable ][ $mountPath ][ 'priority' ])
) {
2014-05-15 01:34:38 +04:00
$mountPoint [ $applicable ][ $mountPath ][ 'priority' ]
= $data [ $mountType ][ $applicable ][ $mountPath ][ 'priority' ];
}
2014-05-13 03:14:30 +04:00
$data [ $mountType ][ $applicable ]
= array_merge ( $data [ $mountType ][ $applicable ], $mountPoint [ $applicable ]);
} else {
$data [ $mountType ] = array_merge ( $data [ $mountType ], $mountPoint );
}
} else {
$data [ $mountType ] = $mountPoint ;
}
return $data ;
}
2014-03-19 00:15:11 +04:00
/**
* Returns the encryption cipher
*/
private static function getCipher () {
2014-03-20 16:21:34 +04:00
if ( ! class_exists ( 'Crypt_AES' , false )) {
include ( 'Crypt/AES.php' );
}
2014-03-19 14:42:22 +04:00
$cipher = new Crypt_AES ( CRYPT_AES_MODE_CBC );
2014-12-17 13:12:37 +03:00
$cipher -> setKey ( \OC :: $server -> getConfig () -> getSystemValue ( 'passwordsalt' , null ));
2014-03-19 14:42:22 +04:00
return $cipher ;
2014-03-19 00:15:11 +04:00
}
2014-03-26 15:10:17 +04:00
/**
* Computes a hash based on the given configuration .
* This is mostly used to find out whether configurations
* are the same .
*/
2015-03-16 14:18:01 +03:00
public static function makeConfigHash ( $config ) {
2014-03-26 15:10:17 +04:00
$data = json_encode (
array (
'c' => $config [ 'class' ],
'm' => $config [ 'mountpoint' ],
2015-03-16 14:18:01 +03:00
'o' => $config [ 'options' ],
'p' => isset ( $config [ 'priority' ]) ? $config [ 'priority' ] : - 1 ,
'mo' => isset ( $config [ 'mountOptions' ]) ? $config [ 'mountOptions' ] : [],
2014-03-26 15:10:17 +04:00
)
);
return hash ( 'md5' , $data );
}
2014-12-11 19:35:11 +03:00
2015-01-27 15:35:31 +03:00
/**
* Add storage id to the storage configurations that did not have any .
*
* @ param string $user user for which to process storage configs
*/
2014-12-11 19:35:11 +03:00
private static function addStorageIdToConfig ( $user ) {
$config = self :: readData ( $user );
$needUpdate = false ;
foreach ( $config as & $applicables ) {
foreach ( $applicables as & $mountPoints ) {
foreach ( $mountPoints as & $options ) {
$needUpdate |= ! isset ( $options [ 'storage_id' ]);
}
}
}
if ( $needUpdate ) {
self :: writeData ( $user , $config );
}
}
2015-01-27 15:35:31 +03:00
/**
* Get storage id from the numeric storage id and set
* it into the given options argument . Only do this
* if there was no storage id set yet .
*
* This might also fail if a storage wasn ' t fully configured yet
* and couldn ' t be mounted , in which case this will simply return false .
*
* @ param array $options storage options
*
* @ return bool true if the storage id was added , false otherwise
*/
2014-12-11 19:35:11 +03:00
private static function addStorageId ( & $options ) {
if ( isset ( $options [ 'storage_id' ])) {
return false ;
}
2015-01-27 15:35:31 +03:00
2014-12-11 19:35:11 +03:00
$class = $options [ 'class' ];
2015-01-27 15:35:31 +03:00
try {
/** @var \OC\Files\Storage\Storage $storage */
$storage = new $class ( $options [ 'options' ]);
// TODO: introduce StorageConfigException
} catch ( \Exception $e ) {
// storage might not be fully configured yet (ex: Dropbox)
// note that storage instances aren't supposed to open any connections
// in the constructor, so this exception is likely to be a config exception
return false ;
}
2014-12-11 19:35:11 +03:00
$options [ 'storage_id' ] = $storage -> getCache () -> getNumericStorageId ();
return true ;
}
2012-09-07 16:09:41 +04:00
}