2012-03-22 22:56:19 +04:00
|
|
|
<?php
|
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
|
2012-03-22 22:56:19 +04:00
|
|
|
return array(
|
|
|
|
'ftp'=>array(
|
2012-04-13 18:01:20 +04:00
|
|
|
'run'=>false,
|
2012-03-22 22:56:19 +04:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/test',
|
2012-03-23 21:54:38 +04:00
|
|
|
),
|
|
|
|
'webdav'=>array(
|
2013-02-10 14:39:03 +04:00
|
|
|
'run'=>false,
|
2012-03-23 21:54:38 +04:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/owncloud/files/webdav.php',
|
|
|
|
),
|
2012-03-24 23:27:42 +04:00
|
|
|
'google'=>array(
|
2012-04-13 18:01:20 +04:00
|
|
|
'run'=>false,
|
2012-03-24 23:27:42 +04:00
|
|
|
'consumer_key'=>'anonymous',
|
|
|
|
'consumer_secret'=>'anonymous',
|
|
|
|
'token'=>'test',
|
|
|
|
'token_secret'=>'test',
|
|
|
|
'root'=>'/google',
|
2012-04-18 22:54:07 +04:00
|
|
|
),
|
|
|
|
'swift'=>array(
|
2012-05-03 01:44:00 +04:00
|
|
|
'run'=>false,
|
2012-04-18 22:54:07 +04:00
|
|
|
'user'=>'test:tester',
|
|
|
|
'token'=>'testing',
|
2012-10-11 23:13:19 +04:00
|
|
|
'host'=>'localhost.local:8080/auth',
|
2012-04-18 22:54:07 +04:00
|
|
|
'root'=>'/',
|
|
|
|
),
|
2012-05-24 20:22:33 +04:00
|
|
|
'smb'=>array(
|
2013-02-10 14:39:03 +04:00
|
|
|
'run'=>false,
|
2012-05-24 20:22:33 +04:00
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'host'=>'localhost',
|
2012-06-08 03:29:46 +04:00
|
|
|
'share'=>'/test',
|
|
|
|
'root'=>'/test/',
|
2012-05-24 20:22:33 +04:00
|
|
|
),
|
2012-05-17 05:51:45 +04:00
|
|
|
'amazons3'=>array(
|
|
|
|
'run'=>false,
|
|
|
|
'key'=>'test',
|
|
|
|
'secret'=>'test',
|
2013-07-03 20:06:27 +04:00
|
|
|
'bucket'=>'bucket'
|
|
|
|
//'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
|
2012-05-17 05:51:45 +04:00
|
|
|
),
|
2012-10-06 15:43:34 +04:00
|
|
|
'dropbox' => array (
|
|
|
|
'run'=>false,
|
|
|
|
'root'=>'owncloud',
|
|
|
|
'configured' => 'true',
|
|
|
|
'app_key' => '',
|
|
|
|
'app_secret' => '',
|
|
|
|
'token' => '',
|
|
|
|
'token_secret' => ''
|
2013-02-09 23:34:21 +04:00
|
|
|
),
|
|
|
|
'sftp' => array (
|
|
|
|
'run'=>false,
|
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/test'
|
2012-10-06 15:43:34 +04:00
|
|
|
)
|
2012-03-22 22:56:19 +04:00
|
|
|
);
|