2012-03-30 12:10:16 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Christian Berendt <berendt@b1-systems.de>
|
|
|
|
|
* @author fibsifan <fi@volans.uberspace.de>
|
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
|
* @author j-ed <juergen@eisfair.org>
|
|
|
|
|
* @author Martin Mattel <martin.mattel@diemattels.at>
|
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
|
* @author Philipp Kapfer <philipp.kapfer@gmx.at>
|
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
|
* @author Ross Nicoll <jrn@jrn.me.uk>
|
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
|
* @author Volkan Gezer <volkangezer@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program 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, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
*
|
2012-03-30 12:10:16 -04:00
|
|
|
*/
|
|
|
|
|
|
2013-03-02 06:12:33 -05:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php';
|
|
|
|
|
OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php';
|
2013-10-09 10:54:36 -04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php';
|
2013-03-02 06:12:33 -05:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php';
|
2013-10-22 08:22:03 -04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php';
|
2013-03-02 06:12:33 -05:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php';
|
2014-03-25 09:54:54 -04:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\SMB_OC'] = 'files_external/lib/smb_oc.php';
|
2013-03-02 06:12:33 -05:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php';
|
|
|
|
|
OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php';
|
|
|
|
|
OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php';
|
2014-12-19 12:23:24 -05:00
|
|
|
OC::$CLASSPATH['OC\Files\Storage\SFTP_Key'] = 'files_external/lib/sftp_key.php';
|
2013-03-02 06:12:33 -05:00
|
|
|
OC::$CLASSPATH['OC_Mount_Config'] = 'files_external/lib/config.php';
|
2014-06-06 07:16:47 -04:00
|
|
|
OC::$CLASSPATH['OCA\Files\External\Api'] = 'files_external/lib/api.php';
|
2012-05-24 12:22:33 -04:00
|
|
|
|
2014-08-26 12:46:07 -04:00
|
|
|
require_once __DIR__ . '/../3rdparty/autoload.php';
|
|
|
|
|
|
2015-08-12 16:43:29 -04:00
|
|
|
// register Application object singleton
|
|
|
|
|
\OC_Mount_Config::$app = new \OCA\Files_external\Appinfo\Application();
|
|
|
|
|
$appContainer = \OC_Mount_Config::$app->getContainer();
|
2015-08-11 13:45:07 -04:00
|
|
|
|
|
|
|
|
$l = \OC::$server->getL10N('files_external');
|
|
|
|
|
|
2012-05-24 11:06:03 -04:00
|
|
|
OCP\App::registerAdmin('files_external', 'settings');
|
2012-06-08 11:42:00 -04:00
|
|
|
if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == 'yes') {
|
|
|
|
|
OCP\App::registerPersonal('files_external', 'personal');
|
|
|
|
|
}
|
2013-04-18 16:12:53 -04:00
|
|
|
|
2015-01-14 12:16:12 -05:00
|
|
|
\OCA\Files\App::getNavigationManager()->add([
|
|
|
|
|
"id" => 'extstoragemounts',
|
|
|
|
|
"appname" => 'files_external',
|
|
|
|
|
"script" => 'list.php',
|
|
|
|
|
"order" => 30,
|
|
|
|
|
"name" => $l->t('External storage')
|
|
|
|
|
]);
|
2014-06-06 07:16:47 -04:00
|
|
|
|
2013-04-18 16:12:53 -04:00
|
|
|
// connecting hooks
|
2014-03-19 07:20:48 -04:00
|
|
|
OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook');
|
2014-03-25 09:54:54 -04:00
|
|
|
OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_OC', 'login');
|
2013-04-18 16:12:53 -04:00
|
|
|
|
2015-01-14 12:16:12 -05:00
|
|
|
OC_Mount_Config::registerBackend('\OC\Files\Storage\Swift', [
|
2014-04-23 11:58:14 -04:00
|
|
|
'backend' => (string)$l->t('OpenStack Object Storage'),
|
2014-03-28 10:24:38 -04:00
|
|
|
'priority' => 100,
|
2015-01-14 12:16:12 -05:00
|
|
|
'configuration' => [
|
2014-08-14 12:48:34 -04:00
|
|
|
'user' => (string)$l->t('Username'),
|
|
|
|
|
'bucket' => (string)$l->t('Bucket'),
|
2014-04-23 11:58:14 -04:00
|
|
|
'region' => '&'.$l->t('Region (optional for OpenStack Object Storage)'),
|
2014-09-05 07:22:35 -04:00
|
|
|
'key' => '&*'.$l->t('API Key (required for Rackspace Cloud Files)'),
|
2014-04-23 11:58:14 -04:00
|
|
|
'tenant' => '&'.$l->t('Tenantname (required for OpenStack Object Storage)'),
|
2014-09-05 07:22:35 -04:00
|
|
|
'password' => '&*'.$l->t('Password (required for OpenStack Object Storage)'),
|
2014-04-23 11:58:14 -04:00
|
|
|
'service_name' => '&'.$l->t('Service Name (required for OpenStack Object Storage)'),
|
|
|
|
|
'url' => '&'.$l->t('URL of identity endpoint (required for OpenStack Object Storage)'),
|
2014-08-14 12:48:34 -04:00
|
|
|
'timeout' => '&'.$l->t('Timeout of HTTP requests in seconds'),
|
2015-01-14 12:16:12 -05:00
|
|
|
],
|
|
|
|
|
'has_dependencies' => true,
|
|
|
|
|
]);
|
2013-03-08 12:15:20 -05:00
|
|
|
|
2014-04-03 10:57:26 -04:00
|
|
|
|
|
|
|
|
if (!OC_Util::runningOnWindows()) {
|
2015-01-14 12:16:12 -05:00
|
|
|
OC_Mount_Config::registerBackend('\OC\Files\Storage\SMB_OC', [
|
2014-04-23 11:58:14 -04:00
|
|
|
'backend' => (string)$l->t('SMB / CIFS using OC login'),
|
2014-03-28 10:24:38 -04:00
|
|
|
'priority' => 90,
|
2015-01-14 12:16:12 -05:00
|
|
|
'configuration' => [
|
2014-05-14 10:56:34 -04:00
|
|
|
'host' => (string)$l->t('Host'),
|
2014-04-23 11:58:14 -04:00
|
|
|
'username_as_share' => '!'.$l->t('Username as share'),
|
|
|
|
|
'share' => '&'.$l->t('Share'),
|
2015-01-14 12:16:12 -05:00
|
|
|
'root' => '&'.$l->t('Remote subfolder'),
|
|
|
|
|
],
|
|
|
|
|
'has_dependencies' => true,
|
|
|
|
|
]);
|
2014-04-03 10:57:26 -04:00
|
|
|
}
|
|
|
|
|
|
2014-12-19 12:23:24 -05:00
|
|
|
OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP_Key', [
|
2015-05-27 09:38:05 -04:00
|
|
|
'backend' => (string)$l->t('SFTP with secret key login'),
|
2014-12-19 12:23:24 -05:00
|
|
|
'priority' => 100,
|
|
|
|
|
'configuration' => array(
|
|
|
|
|
'host' => (string)$l->t('Host'),
|
|
|
|
|
'user' => (string)$l->t('Username'),
|
|
|
|
|
'public_key' => (string)$l->t('Public key'),
|
|
|
|
|
'private_key' => '#private_key',
|
|
|
|
|
'root' => '&'.$l->t('Remote subfolder')),
|
|
|
|
|
'custom' => 'sftp_key',
|
|
|
|
|
]
|
|
|
|
|
);
|
2015-08-11 13:45:07 -04:00
|
|
|
$mountProvider = $appContainer->query('OCA\Files_External\Config\ConfigAdapter');
|
2014-12-03 08:14:31 -05:00
|
|
|
\OC::$server->getMountProviderCollection()->registerProvider($mountProvider);
|