2012-03-22 22:56:19 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christian Berendt <berendt@b1-systems.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
2013-06-07 02:04:46 +04:00
|
|
|
// in case there are private configurations in the users home -> use them
|
|
|
|
$privateConfigFile = $_SERVER['HOME'] . '/owncloud-extfs-test-config.php';
|
|
|
|
if (file_exists($privateConfigFile)) {
|
|
|
|
$config = include($privateConfigFile);
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is now more a template now for your private configurations
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
2020-10-05 16:12:57 +03:00
|
|
|
'ftp' => [
|
|
|
|
'run' => false,
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'test',
|
|
|
|
'password' => 'test',
|
|
|
|
'root' => '/test',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'webdav' => [
|
|
|
|
'run' => false,
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'test',
|
|
|
|
'password' => 'test',
|
|
|
|
'root' => '',
|
2014-01-31 19:06:11 +04:00
|
|
|
// wait delay in seconds after write operations
|
|
|
|
// (only in tests)
|
|
|
|
// set to higher value for lighttpd webdav
|
2020-10-05 16:12:57 +03:00
|
|
|
'wait' => 0
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'owncloud' => [
|
|
|
|
'run' => false,
|
|
|
|
'host' => 'localhost/owncloud',
|
|
|
|
'user' => 'test',
|
|
|
|
'password' => 'test',
|
|
|
|
'root' => '',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
'swift' => [
|
2013-10-22 15:34:24 +04:00
|
|
|
'run' => false,
|
|
|
|
'user' => 'test',
|
|
|
|
'bucket' => 'test',
|
|
|
|
'region' => 'DFW',
|
|
|
|
'key' => 'test', //to be used only with Rackspace Cloud Files
|
|
|
|
//'tenant' => 'test', //to be used only with OpenStack Object Storage
|
|
|
|
//'password' => 'test', //to be use only with OpenStack Object Storage
|
|
|
|
//'service_name' => 'swift', //should be 'swift' for OpenStack Object Storage and 'cloudFiles' for Rackspace Cloud Files (default value)
|
2013-10-24 18:19:17 +04:00
|
|
|
//'url' => 'https://identity.api.rackspacecloud.com/v2.0/', //to be used with Rackspace Cloud Files and OpenStack Object Storage
|
|
|
|
//'timeout' => 5 // timeout of HTTP requests in seconds
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'smb' => [
|
|
|
|
'run' => false,
|
|
|
|
'user' => 'test',
|
|
|
|
'password' => 'test',
|
|
|
|
'host' => 'localhost',
|
|
|
|
'share' => '/test',
|
|
|
|
'root' => '/test/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'amazons3' => [
|
|
|
|
'run' => false,
|
|
|
|
'key' => 'test',
|
|
|
|
'secret' => 'test',
|
|
|
|
'bucket' => 'bucket'
|
2013-07-03 20:06:27 +04:00
|
|
|
//'hostname' => 'your.host.name',
|
|
|
|
//'port' => '443',
|
|
|
|
//'use_ssl' => 'true',
|
2013-07-10 09:47:15 +04:00
|
|
|
//'region' => 'eu-west-1',
|
|
|
|
//'test'=>'true',
|
|
|
|
//'timeout'=>20
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'sftp' => [
|
|
|
|
'run' => false,
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'test',
|
|
|
|
'password' => 'test',
|
|
|
|
'root' => '/test'
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2020-10-05 16:12:57 +03:00
|
|
|
'sftp_key' => [
|
|
|
|
'run' => false,
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'test',
|
|
|
|
'public_key' => 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJPTvz3OLonF2KSGEKP/nd4CPmRYvemG2T4rIiNYjDj0U5y+2sKEWbjiUlQl2bsqYuVoJ+/UNJlGQbbZ08kQirFeo1GoWBzqioaTjUJfbLN6TzVVKXxR9YIVmH7Ajg2iEeGCndGgbmnPfj+kF9TR9IH8vMVvtubQwf7uEwB0ALhw== phpseclib-generated-key',
|
|
|
|
'private_key' => 'test',
|
|
|
|
'root' => '/test'
|
2020-04-09 10:22:29 +03:00
|
|
|
],
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|