@@ -36,68 +36,68 @@ |
||
36 | 36 | * Object can affect storage mounting |
37 | 37 | */ |
38 | 38 | class AuthMechanism implements \JsonSerializable, IIdentifier, IFrontendDefinition { |
39 | - /** Standard authentication schemes */ |
|
40 | - public const SCHEME_NULL = 'null'; |
|
41 | - public const SCHEME_BUILTIN = 'builtin'; |
|
42 | - public const SCHEME_PASSWORD = 'password'; |
|
43 | - public const SCHEME_OAUTH2 = 'oauth2'; |
|
44 | - public const SCHEME_PUBLICKEY = 'publickey'; |
|
45 | - public const SCHEME_OPENSTACK = 'openstack'; |
|
46 | - public const SCHEME_SMB = 'smb'; |
|
39 | + /** Standard authentication schemes */ |
|
40 | + public const SCHEME_NULL = 'null'; |
|
41 | + public const SCHEME_BUILTIN = 'builtin'; |
|
42 | + public const SCHEME_PASSWORD = 'password'; |
|
43 | + public const SCHEME_OAUTH2 = 'oauth2'; |
|
44 | + public const SCHEME_PUBLICKEY = 'publickey'; |
|
45 | + public const SCHEME_OPENSTACK = 'openstack'; |
|
46 | + public const SCHEME_SMB = 'smb'; |
|
47 | 47 | |
48 | - use VisibilityTrait; |
|
49 | - use FrontendDefinitionTrait; |
|
50 | - use StorageModifierTrait; |
|
51 | - use IdentifierTrait; |
|
48 | + use VisibilityTrait; |
|
49 | + use FrontendDefinitionTrait; |
|
50 | + use StorageModifierTrait; |
|
51 | + use IdentifierTrait; |
|
52 | 52 | |
53 | - /** @var string */ |
|
54 | - protected $scheme; |
|
53 | + /** @var string */ |
|
54 | + protected $scheme; |
|
55 | 55 | |
56 | - /** |
|
57 | - * Get the authentication scheme implemented |
|
58 | - * See self::SCHEME_* constants |
|
59 | - * |
|
60 | - * @return string |
|
61 | - */ |
|
62 | - public function getScheme() { |
|
63 | - return $this->scheme; |
|
64 | - } |
|
56 | + /** |
|
57 | + * Get the authentication scheme implemented |
|
58 | + * See self::SCHEME_* constants |
|
59 | + * |
|
60 | + * @return string |
|
61 | + */ |
|
62 | + public function getScheme() { |
|
63 | + return $this->scheme; |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * @param string $scheme |
|
68 | - * @return $this |
|
69 | - */ |
|
70 | - public function setScheme($scheme) { |
|
71 | - $this->scheme = $scheme; |
|
72 | - return $this; |
|
73 | - } |
|
66 | + /** |
|
67 | + * @param string $scheme |
|
68 | + * @return $this |
|
69 | + */ |
|
70 | + public function setScheme($scheme) { |
|
71 | + $this->scheme = $scheme; |
|
72 | + return $this; |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Serialize into JSON for client-side JS |
|
77 | - */ |
|
78 | - public function jsonSerialize(): array { |
|
79 | - $data = $this->jsonSerializeDefinition(); |
|
80 | - $data += $this->jsonSerializeIdentifier(); |
|
75 | + /** |
|
76 | + * Serialize into JSON for client-side JS |
|
77 | + */ |
|
78 | + public function jsonSerialize(): array { |
|
79 | + $data = $this->jsonSerializeDefinition(); |
|
80 | + $data += $this->jsonSerializeIdentifier(); |
|
81 | 81 | |
82 | - $data['scheme'] = $this->getScheme(); |
|
83 | - $data['visibility'] = $this->getVisibility(); |
|
82 | + $data['scheme'] = $this->getScheme(); |
|
83 | + $data['visibility'] = $this->getVisibility(); |
|
84 | 84 | |
85 | - return $data; |
|
86 | - } |
|
85 | + return $data; |
|
86 | + } |
|
87 | 87 | |
88 | - /** |
|
89 | - * Check if parameters are satisfied in a StorageConfig |
|
90 | - * |
|
91 | - * @param StorageConfig $storage |
|
92 | - * @return bool |
|
93 | - */ |
|
94 | - public function validateStorage(StorageConfig $storage) { |
|
95 | - // does the backend actually support this scheme |
|
96 | - $supportedSchemes = $storage->getBackend()->getAuthSchemes(); |
|
97 | - if (!isset($supportedSchemes[$this->getScheme()])) { |
|
98 | - return false; |
|
99 | - } |
|
88 | + /** |
|
89 | + * Check if parameters are satisfied in a StorageConfig |
|
90 | + * |
|
91 | + * @param StorageConfig $storage |
|
92 | + * @return bool |
|
93 | + */ |
|
94 | + public function validateStorage(StorageConfig $storage) { |
|
95 | + // does the backend actually support this scheme |
|
96 | + $supportedSchemes = $storage->getBackend()->getAuthSchemes(); |
|
97 | + if (!isset($supportedSchemes[$this->getScheme()])) { |
|
98 | + return false; |
|
99 | + } |
|
100 | 100 | |
101 | - return $this->validateStorageDefinition($storage); |
|
102 | - } |
|
101 | + return $this->validateStorageDefinition($storage); |
|
102 | + } |
|
103 | 103 | } |
@@ -57,100 +57,100 @@ |
||
57 | 57 | * @package OCA\Files_External\AppInfo |
58 | 58 | */ |
59 | 59 | class Application extends App implements IBackendProvider, IAuthMechanismProvider, IBootstrap { |
60 | - public const APP_ID = 'files_external'; |
|
61 | - |
|
62 | - /** |
|
63 | - * Application constructor. |
|
64 | - * |
|
65 | - * @throws QueryException |
|
66 | - */ |
|
67 | - public function __construct(array $urlParams = []) { |
|
68 | - parent::__construct(self::APP_ID, $urlParams); |
|
69 | - } |
|
70 | - |
|
71 | - public function register(IRegistrationContext $context): void { |
|
72 | - $context->registerEventListener(UserDeletedEvent::class, UserDeletedListener::class); |
|
73 | - $context->registerEventListener(GroupDeletedEvent::class, GroupDeletedListener::class); |
|
74 | - $context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class); |
|
75 | - $context->registerConfigLexicon(ConfigLexicon::class); |
|
76 | - } |
|
77 | - |
|
78 | - public function boot(IBootContext $context): void { |
|
79 | - $context->injectFn(function (IMountProviderCollection $mountProviderCollection, ConfigAdapter $configAdapter): void { |
|
80 | - $mountProviderCollection->registerProvider($configAdapter); |
|
81 | - }); |
|
82 | - $context->injectFn(function (BackendService $backendService, UserPlaceholderHandler $userConfigHandler): void { |
|
83 | - $backendService->registerBackendProvider($this); |
|
84 | - $backendService->registerAuthMechanismProvider($this); |
|
85 | - $backendService->registerConfigHandler('user', function () use ($userConfigHandler) { |
|
86 | - return $userConfigHandler; |
|
87 | - }); |
|
88 | - }); |
|
89 | - |
|
90 | - // force-load auth mechanisms since some will register hooks |
|
91 | - // TODO: obsolete these and use the TokenProvider to get the user's password from the session |
|
92 | - $this->getAuthMechanisms(); |
|
93 | - } |
|
94 | - |
|
95 | - /** |
|
96 | - * @{inheritdoc} |
|
97 | - */ |
|
98 | - public function getBackends() { |
|
99 | - $container = $this->getContainer(); |
|
100 | - |
|
101 | - $backends = [ |
|
102 | - $container->get(Local::class), |
|
103 | - $container->get(FTP::class), |
|
104 | - $container->get(DAV::class), |
|
105 | - $container->get(OwnCloud::class), |
|
106 | - $container->get(SFTP::class), |
|
107 | - $container->get(AmazonS3::class), |
|
108 | - $container->get(Swift::class), |
|
109 | - $container->get(SFTP_Key::class), |
|
110 | - $container->get(SMB::class), |
|
111 | - $container->get(SMB_OC::class), |
|
112 | - ]; |
|
113 | - |
|
114 | - return $backends; |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * @{inheritdoc} |
|
119 | - */ |
|
120 | - public function getAuthMechanisms() { |
|
121 | - $container = $this->getContainer(); |
|
122 | - |
|
123 | - return [ |
|
124 | - // AuthMechanism::SCHEME_NULL mechanism |
|
125 | - $container->get(NullMechanism::class), |
|
126 | - |
|
127 | - // AuthMechanism::SCHEME_BUILTIN mechanism |
|
128 | - $container->get(Builtin::class), |
|
129 | - |
|
130 | - // AuthMechanism::SCHEME_PASSWORD mechanisms |
|
131 | - $container->get(Password::class), |
|
132 | - $container->get(SessionCredentials::class), |
|
133 | - $container->get(LoginCredentials::class), |
|
134 | - $container->get(UserProvided::class), |
|
135 | - $container->get(GlobalAuth::class), |
|
136 | - $container->get(UserGlobalAuth::class), |
|
137 | - |
|
138 | - // AuthMechanism::SCHEME_OAUTH2 mechanisms |
|
139 | - $container->get(OAuth2::class), |
|
140 | - |
|
141 | - // AuthMechanism::SCHEME_PUBLICKEY mechanisms |
|
142 | - $container->get(RSA::class), |
|
143 | - $container->get(RSAPrivateKey::class), |
|
144 | - |
|
145 | - // AuthMechanism::SCHEME_OPENSTACK mechanisms |
|
146 | - $container->get(OpenStackV2::class), |
|
147 | - $container->get(OpenStackV3::class), |
|
148 | - $container->get(Rackspace::class), |
|
149 | - |
|
150 | - // Specialized mechanisms |
|
151 | - $container->get(AccessKey::class), |
|
152 | - $container->get(KerberosAuth::class), |
|
153 | - $container->get(KerberosApacheAuth::class), |
|
154 | - ]; |
|
155 | - } |
|
60 | + public const APP_ID = 'files_external'; |
|
61 | + |
|
62 | + /** |
|
63 | + * Application constructor. |
|
64 | + * |
|
65 | + * @throws QueryException |
|
66 | + */ |
|
67 | + public function __construct(array $urlParams = []) { |
|
68 | + parent::__construct(self::APP_ID, $urlParams); |
|
69 | + } |
|
70 | + |
|
71 | + public function register(IRegistrationContext $context): void { |
|
72 | + $context->registerEventListener(UserDeletedEvent::class, UserDeletedListener::class); |
|
73 | + $context->registerEventListener(GroupDeletedEvent::class, GroupDeletedListener::class); |
|
74 | + $context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class); |
|
75 | + $context->registerConfigLexicon(ConfigLexicon::class); |
|
76 | + } |
|
77 | + |
|
78 | + public function boot(IBootContext $context): void { |
|
79 | + $context->injectFn(function (IMountProviderCollection $mountProviderCollection, ConfigAdapter $configAdapter): void { |
|
80 | + $mountProviderCollection->registerProvider($configAdapter); |
|
81 | + }); |
|
82 | + $context->injectFn(function (BackendService $backendService, UserPlaceholderHandler $userConfigHandler): void { |
|
83 | + $backendService->registerBackendProvider($this); |
|
84 | + $backendService->registerAuthMechanismProvider($this); |
|
85 | + $backendService->registerConfigHandler('user', function () use ($userConfigHandler) { |
|
86 | + return $userConfigHandler; |
|
87 | + }); |
|
88 | + }); |
|
89 | + |
|
90 | + // force-load auth mechanisms since some will register hooks |
|
91 | + // TODO: obsolete these and use the TokenProvider to get the user's password from the session |
|
92 | + $this->getAuthMechanisms(); |
|
93 | + } |
|
94 | + |
|
95 | + /** |
|
96 | + * @{inheritdoc} |
|
97 | + */ |
|
98 | + public function getBackends() { |
|
99 | + $container = $this->getContainer(); |
|
100 | + |
|
101 | + $backends = [ |
|
102 | + $container->get(Local::class), |
|
103 | + $container->get(FTP::class), |
|
104 | + $container->get(DAV::class), |
|
105 | + $container->get(OwnCloud::class), |
|
106 | + $container->get(SFTP::class), |
|
107 | + $container->get(AmazonS3::class), |
|
108 | + $container->get(Swift::class), |
|
109 | + $container->get(SFTP_Key::class), |
|
110 | + $container->get(SMB::class), |
|
111 | + $container->get(SMB_OC::class), |
|
112 | + ]; |
|
113 | + |
|
114 | + return $backends; |
|
115 | + } |
|
116 | + |
|
117 | + /** |
|
118 | + * @{inheritdoc} |
|
119 | + */ |
|
120 | + public function getAuthMechanisms() { |
|
121 | + $container = $this->getContainer(); |
|
122 | + |
|
123 | + return [ |
|
124 | + // AuthMechanism::SCHEME_NULL mechanism |
|
125 | + $container->get(NullMechanism::class), |
|
126 | + |
|
127 | + // AuthMechanism::SCHEME_BUILTIN mechanism |
|
128 | + $container->get(Builtin::class), |
|
129 | + |
|
130 | + // AuthMechanism::SCHEME_PASSWORD mechanisms |
|
131 | + $container->get(Password::class), |
|
132 | + $container->get(SessionCredentials::class), |
|
133 | + $container->get(LoginCredentials::class), |
|
134 | + $container->get(UserProvided::class), |
|
135 | + $container->get(GlobalAuth::class), |
|
136 | + $container->get(UserGlobalAuth::class), |
|
137 | + |
|
138 | + // AuthMechanism::SCHEME_OAUTH2 mechanisms |
|
139 | + $container->get(OAuth2::class), |
|
140 | + |
|
141 | + // AuthMechanism::SCHEME_PUBLICKEY mechanisms |
|
142 | + $container->get(RSA::class), |
|
143 | + $container->get(RSAPrivateKey::class), |
|
144 | + |
|
145 | + // AuthMechanism::SCHEME_OPENSTACK mechanisms |
|
146 | + $container->get(OpenStackV2::class), |
|
147 | + $container->get(OpenStackV3::class), |
|
148 | + $container->get(Rackspace::class), |
|
149 | + |
|
150 | + // Specialized mechanisms |
|
151 | + $container->get(AccessKey::class), |
|
152 | + $container->get(KerberosAuth::class), |
|
153 | + $container->get(KerberosApacheAuth::class), |
|
154 | + ]; |
|
155 | + } |
|
156 | 156 | } |
@@ -8,35 +8,35 @@ |
||
8 | 8 | |
9 | 9 | |
10 | 10 | $this->create('files_external_oauth2', 'apps/files_external/ajax/oauth2.php') |
11 | - ->actionInclude('files_external/ajax/oauth2.php'); |
|
11 | + ->actionInclude('files_external/ajax/oauth2.php'); |
|
12 | 12 | |
13 | 13 | $this->create('files_external_list_applicable', '/apps/files_external/applicable') |
14 | - ->actionInclude('files_external/ajax/applicable.php'); |
|
14 | + ->actionInclude('files_external/ajax/applicable.php'); |
|
15 | 15 | |
16 | 16 | return [ |
17 | - 'resources' => [ |
|
18 | - 'global_storages' => ['url' => '/globalstorages'], |
|
19 | - 'user_storages' => ['url' => '/userstorages'], |
|
20 | - 'user_global_storages' => ['url' => '/userglobalstorages'], |
|
21 | - ], |
|
22 | - 'routes' => [ |
|
23 | - [ |
|
24 | - 'name' => 'Ajax#getSshKeys', |
|
25 | - 'url' => '/ajax/public_key.php', |
|
26 | - 'verb' => 'POST', |
|
27 | - 'requirements' => [], |
|
28 | - ], |
|
29 | - [ |
|
30 | - 'name' => 'Ajax#saveGlobalCredentials', |
|
31 | - 'url' => '/globalcredentials', |
|
32 | - 'verb' => 'POST', |
|
33 | - ], |
|
34 | - ], |
|
35 | - 'ocs' => [ |
|
36 | - [ |
|
37 | - 'name' => 'Api#getUserMounts', |
|
38 | - 'url' => '/api/v1/mounts', |
|
39 | - 'verb' => 'GET', |
|
40 | - ], |
|
41 | - ], |
|
17 | + 'resources' => [ |
|
18 | + 'global_storages' => ['url' => '/globalstorages'], |
|
19 | + 'user_storages' => ['url' => '/userstorages'], |
|
20 | + 'user_global_storages' => ['url' => '/userglobalstorages'], |
|
21 | + ], |
|
22 | + 'routes' => [ |
|
23 | + [ |
|
24 | + 'name' => 'Ajax#getSshKeys', |
|
25 | + 'url' => '/ajax/public_key.php', |
|
26 | + 'verb' => 'POST', |
|
27 | + 'requirements' => [], |
|
28 | + ], |
|
29 | + [ |
|
30 | + 'name' => 'Ajax#saveGlobalCredentials', |
|
31 | + 'url' => '/globalcredentials', |
|
32 | + 'verb' => 'POST', |
|
33 | + ], |
|
34 | + ], |
|
35 | + 'ocs' => [ |
|
36 | + [ |
|
37 | + 'name' => 'Api#getUserMounts', |
|
38 | + 'url' => '/api/v1/mounts', |
|
39 | + 'verb' => 'GET', |
|
40 | + ], |
|
41 | + ], |
|
42 | 42 | ]; |
@@ -6,122 +6,122 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
10 | - 'OCA\\Files_External\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
11 | - 'OCA\\Files_External\\BackgroundJob\\CredentialsCleanup' => $baseDir . '/../lib/BackgroundJob/CredentialsCleanup.php', |
|
12 | - 'OCA\\Files_External\\Command\\Applicable' => $baseDir . '/../lib/Command/Applicable.php', |
|
13 | - 'OCA\\Files_External\\Command\\Backends' => $baseDir . '/../lib/Command/Backends.php', |
|
14 | - 'OCA\\Files_External\\Command\\Config' => $baseDir . '/../lib/Command/Config.php', |
|
15 | - 'OCA\\Files_External\\Command\\Create' => $baseDir . '/../lib/Command/Create.php', |
|
16 | - 'OCA\\Files_External\\Command\\Delete' => $baseDir . '/../lib/Command/Delete.php', |
|
17 | - 'OCA\\Files_External\\Command\\Dependencies' => $baseDir . '/../lib/Command/Dependencies.php', |
|
18 | - 'OCA\\Files_External\\Command\\Export' => $baseDir . '/../lib/Command/Export.php', |
|
19 | - 'OCA\\Files_External\\Command\\Import' => $baseDir . '/../lib/Command/Import.php', |
|
20 | - 'OCA\\Files_External\\Command\\ListCommand' => $baseDir . '/../lib/Command/ListCommand.php', |
|
21 | - 'OCA\\Files_External\\Command\\Notify' => $baseDir . '/../lib/Command/Notify.php', |
|
22 | - 'OCA\\Files_External\\Command\\Option' => $baseDir . '/../lib/Command/Option.php', |
|
23 | - 'OCA\\Files_External\\Command\\Scan' => $baseDir . '/../lib/Command/Scan.php', |
|
24 | - 'OCA\\Files_External\\Command\\StorageAuthBase' => $baseDir . '/../lib/Command/StorageAuthBase.php', |
|
25 | - 'OCA\\Files_External\\Command\\Verify' => $baseDir . '/../lib/Command/Verify.php', |
|
26 | - 'OCA\\Files_External\\ConfigLexicon' => $baseDir . '/../lib/ConfigLexicon.php', |
|
27 | - 'OCA\\Files_External\\Config\\ConfigAdapter' => $baseDir . '/../lib/Config/ConfigAdapter.php', |
|
28 | - 'OCA\\Files_External\\Config\\ExternalMountPoint' => $baseDir . '/../lib/Config/ExternalMountPoint.php', |
|
29 | - 'OCA\\Files_External\\Config\\IConfigHandler' => $baseDir . '/../lib/Config/IConfigHandler.php', |
|
30 | - 'OCA\\Files_External\\Config\\SimpleSubstitutionTrait' => $baseDir . '/../lib/Config/SimpleSubstitutionTrait.php', |
|
31 | - 'OCA\\Files_External\\Config\\SystemMountPoint' => $baseDir . '/../lib/Config/SystemMountPoint.php', |
|
32 | - 'OCA\\Files_External\\Config\\UserContext' => $baseDir . '/../lib/Config/UserContext.php', |
|
33 | - 'OCA\\Files_External\\Config\\UserPlaceholderHandler' => $baseDir . '/../lib/Config/UserPlaceholderHandler.php', |
|
34 | - 'OCA\\Files_External\\Controller\\AjaxController' => $baseDir . '/../lib/Controller/AjaxController.php', |
|
35 | - 'OCA\\Files_External\\Controller\\ApiController' => $baseDir . '/../lib/Controller/ApiController.php', |
|
36 | - 'OCA\\Files_External\\Controller\\GlobalStoragesController' => $baseDir . '/../lib/Controller/GlobalStoragesController.php', |
|
37 | - 'OCA\\Files_External\\Controller\\StoragesController' => $baseDir . '/../lib/Controller/StoragesController.php', |
|
38 | - 'OCA\\Files_External\\Controller\\UserGlobalStoragesController' => $baseDir . '/../lib/Controller/UserGlobalStoragesController.php', |
|
39 | - 'OCA\\Files_External\\Controller\\UserStoragesController' => $baseDir . '/../lib/Controller/UserStoragesController.php', |
|
40 | - 'OCA\\Files_External\\Lib\\Auth\\AmazonS3\\AccessKey' => $baseDir . '/../lib/Lib/Auth/AmazonS3/AccessKey.php', |
|
41 | - 'OCA\\Files_External\\Lib\\Auth\\AuthMechanism' => $baseDir . '/../lib/Lib/Auth/AuthMechanism.php', |
|
42 | - 'OCA\\Files_External\\Lib\\Auth\\Builtin' => $baseDir . '/../lib/Lib/Auth/Builtin.php', |
|
43 | - 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => $baseDir . '/../lib/Lib/Auth/IUserProvided.php', |
|
44 | - 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => $baseDir . '/../lib/Lib/Auth/InvalidAuth.php', |
|
45 | - 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => $baseDir . '/../lib/Lib/Auth/NullMechanism.php', |
|
46 | - 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => $baseDir . '/../lib/Lib/Auth/OAuth2/OAuth2.php', |
|
47 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => $baseDir . '/../lib/Lib/Auth/OpenStack/OpenStackV2.php', |
|
48 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => $baseDir . '/../lib/Lib/Auth/OpenStack/OpenStackV3.php', |
|
49 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\Rackspace' => $baseDir . '/../lib/Lib/Auth/OpenStack/Rackspace.php', |
|
50 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\GlobalAuth' => $baseDir . '/../lib/Lib/Auth/Password/GlobalAuth.php', |
|
51 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\LoginCredentials' => $baseDir . '/../lib/Lib/Auth/Password/LoginCredentials.php', |
|
52 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\Password' => $baseDir . '/../lib/Lib/Auth/Password/Password.php', |
|
53 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\SessionCredentials' => $baseDir . '/../lib/Lib/Auth/Password/SessionCredentials.php', |
|
54 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\UserGlobalAuth' => $baseDir . '/../lib/Lib/Auth/Password/UserGlobalAuth.php', |
|
55 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\UserProvided' => $baseDir . '/../lib/Lib/Auth/Password/UserProvided.php', |
|
56 | - 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSA' => $baseDir . '/../lib/Lib/Auth/PublicKey/RSA.php', |
|
57 | - 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSAPrivateKey' => $baseDir . '/../lib/Lib/Auth/PublicKey/RSAPrivateKey.php', |
|
58 | - 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosApacheAuth' => $baseDir . '/../lib/Lib/Auth/SMB/KerberosApacheAuth.php', |
|
59 | - 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosAuth' => $baseDir . '/../lib/Lib/Auth/SMB/KerberosAuth.php', |
|
60 | - 'OCA\\Files_External\\Lib\\Backend\\AmazonS3' => $baseDir . '/../lib/Lib/Backend/AmazonS3.php', |
|
61 | - 'OCA\\Files_External\\Lib\\Backend\\Backend' => $baseDir . '/../lib/Lib/Backend/Backend.php', |
|
62 | - 'OCA\\Files_External\\Lib\\Backend\\DAV' => $baseDir . '/../lib/Lib/Backend/DAV.php', |
|
63 | - 'OCA\\Files_External\\Lib\\Backend\\FTP' => $baseDir . '/../lib/Lib/Backend/FTP.php', |
|
64 | - 'OCA\\Files_External\\Lib\\Backend\\InvalidBackend' => $baseDir . '/../lib/Lib/Backend/InvalidBackend.php', |
|
65 | - 'OCA\\Files_External\\Lib\\Backend\\LegacyBackend' => $baseDir . '/../lib/Lib/Backend/LegacyBackend.php', |
|
66 | - 'OCA\\Files_External\\Lib\\Backend\\Local' => $baseDir . '/../lib/Lib/Backend/Local.php', |
|
67 | - 'OCA\\Files_External\\Lib\\Backend\\OwnCloud' => $baseDir . '/../lib/Lib/Backend/OwnCloud.php', |
|
68 | - 'OCA\\Files_External\\Lib\\Backend\\SFTP' => $baseDir . '/../lib/Lib/Backend/SFTP.php', |
|
69 | - 'OCA\\Files_External\\Lib\\Backend\\SFTP_Key' => $baseDir . '/../lib/Lib/Backend/SFTP_Key.php', |
|
70 | - 'OCA\\Files_External\\Lib\\Backend\\SMB' => $baseDir . '/../lib/Lib/Backend/SMB.php', |
|
71 | - 'OCA\\Files_External\\Lib\\Backend\\SMB_OC' => $baseDir . '/../lib/Lib/Backend/SMB_OC.php', |
|
72 | - 'OCA\\Files_External\\Lib\\Backend\\Swift' => $baseDir . '/../lib/Lib/Backend/Swift.php', |
|
73 | - 'OCA\\Files_External\\Lib\\Config\\IAuthMechanismProvider' => $baseDir . '/../lib/Lib/Config/IAuthMechanismProvider.php', |
|
74 | - 'OCA\\Files_External\\Lib\\Config\\IBackendProvider' => $baseDir . '/../lib/Lib/Config/IBackendProvider.php', |
|
75 | - 'OCA\\Files_External\\Lib\\DefinitionParameter' => $baseDir . '/../lib/Lib/DefinitionParameter.php', |
|
76 | - 'OCA\\Files_External\\Lib\\DependencyTrait' => $baseDir . '/../lib/Lib/DependencyTrait.php', |
|
77 | - 'OCA\\Files_External\\Lib\\FrontendDefinitionTrait' => $baseDir . '/../lib/Lib/FrontendDefinitionTrait.php', |
|
78 | - 'OCA\\Files_External\\Lib\\IFrontendDefinition' => $baseDir . '/../lib/Lib/IFrontendDefinition.php', |
|
79 | - 'OCA\\Files_External\\Lib\\IIdentifier' => $baseDir . '/../lib/Lib/IIdentifier.php', |
|
80 | - 'OCA\\Files_External\\Lib\\IdentifierTrait' => $baseDir . '/../lib/Lib/IdentifierTrait.php', |
|
81 | - 'OCA\\Files_External\\Lib\\InsufficientDataForMeaningfulAnswerException' => $baseDir . '/../lib/Lib/InsufficientDataForMeaningfulAnswerException.php', |
|
82 | - 'OCA\\Files_External\\Lib\\LegacyDependencyCheckPolyfill' => $baseDir . '/../lib/Lib/LegacyDependencyCheckPolyfill.php', |
|
83 | - 'OCA\\Files_External\\Lib\\MissingDependency' => $baseDir . '/../lib/Lib/MissingDependency.php', |
|
84 | - 'OCA\\Files_External\\Lib\\Notify\\SMBNotifyHandler' => $baseDir . '/../lib/Lib/Notify/SMBNotifyHandler.php', |
|
85 | - 'OCA\\Files_External\\Lib\\PersonalMount' => $baseDir . '/../lib/Lib/PersonalMount.php', |
|
86 | - 'OCA\\Files_External\\Lib\\PriorityTrait' => $baseDir . '/../lib/Lib/PriorityTrait.php', |
|
87 | - 'OCA\\Files_External\\Lib\\SessionStorageWrapper' => $baseDir . '/../lib/Lib/SessionStorageWrapper.php', |
|
88 | - 'OCA\\Files_External\\Lib\\StorageConfig' => $baseDir . '/../lib/Lib/StorageConfig.php', |
|
89 | - 'OCA\\Files_External\\Lib\\StorageModifierTrait' => $baseDir . '/../lib/Lib/StorageModifierTrait.php', |
|
90 | - 'OCA\\Files_External\\Lib\\Storage\\AmazonS3' => $baseDir . '/../lib/Lib/Storage/AmazonS3.php', |
|
91 | - 'OCA\\Files_External\\Lib\\Storage\\FTP' => $baseDir . '/../lib/Lib/Storage/FTP.php', |
|
92 | - 'OCA\\Files_External\\Lib\\Storage\\FtpConnection' => $baseDir . '/../lib/Lib/Storage/FtpConnection.php', |
|
93 | - 'OCA\\Files_External\\Lib\\Storage\\OwnCloud' => $baseDir . '/../lib/Lib/Storage/OwnCloud.php', |
|
94 | - 'OCA\\Files_External\\Lib\\Storage\\SFTP' => $baseDir . '/../lib/Lib/Storage/SFTP.php', |
|
95 | - 'OCA\\Files_External\\Lib\\Storage\\SFTPReadStream' => $baseDir . '/../lib/Lib/Storage/SFTPReadStream.php', |
|
96 | - 'OCA\\Files_External\\Lib\\Storage\\SFTPWriteStream' => $baseDir . '/../lib/Lib/Storage/SFTPWriteStream.php', |
|
97 | - 'OCA\\Files_External\\Lib\\Storage\\SMB' => $baseDir . '/../lib/Lib/Storage/SMB.php', |
|
98 | - 'OCA\\Files_External\\Lib\\Storage\\StreamWrapper' => $baseDir . '/../lib/Lib/Storage/StreamWrapper.php', |
|
99 | - 'OCA\\Files_External\\Lib\\Storage\\Swift' => $baseDir . '/../lib/Lib/Storage/Swift.php', |
|
100 | - 'OCA\\Files_External\\Lib\\Storage\\SystemBridge' => $baseDir . '/../lib/Lib/Storage/SystemBridge.php', |
|
101 | - 'OCA\\Files_External\\Lib\\VisibilityTrait' => $baseDir . '/../lib/Lib/VisibilityTrait.php', |
|
102 | - 'OCA\\Files_External\\Listener\\GroupDeletedListener' => $baseDir . '/../lib/Listener/GroupDeletedListener.php', |
|
103 | - 'OCA\\Files_External\\Listener\\LoadAdditionalListener' => $baseDir . '/../lib/Listener/LoadAdditionalListener.php', |
|
104 | - 'OCA\\Files_External\\Listener\\StorePasswordListener' => $baseDir . '/../lib/Listener/StorePasswordListener.php', |
|
105 | - 'OCA\\Files_External\\Listener\\UserDeletedListener' => $baseDir . '/../lib/Listener/UserDeletedListener.php', |
|
106 | - 'OCA\\Files_External\\Migration\\DummyUserSession' => $baseDir . '/../lib/Migration/DummyUserSession.php', |
|
107 | - 'OCA\\Files_External\\Migration\\Version1011Date20200630192246' => $baseDir . '/../lib/Migration/Version1011Date20200630192246.php', |
|
108 | - 'OCA\\Files_External\\Migration\\Version1015Date20211104103506' => $baseDir . '/../lib/Migration/Version1015Date20211104103506.php', |
|
109 | - 'OCA\\Files_External\\Migration\\Version1016Date20220324154536' => $baseDir . '/../lib/Migration/Version1016Date20220324154536.php', |
|
110 | - 'OCA\\Files_External\\Migration\\Version22000Date20210216084416' => $baseDir . '/../lib/Migration/Version22000Date20210216084416.php', |
|
111 | - 'OCA\\Files_External\\MountConfig' => $baseDir . '/../lib/MountConfig.php', |
|
112 | - 'OCA\\Files_External\\NotFoundException' => $baseDir . '/../lib/NotFoundException.php', |
|
113 | - 'OCA\\Files_External\\ResponseDefinitions' => $baseDir . '/../lib/ResponseDefinitions.php', |
|
114 | - 'OCA\\Files_External\\Service\\BackendService' => $baseDir . '/../lib/Service/BackendService.php', |
|
115 | - 'OCA\\Files_External\\Service\\DBConfigService' => $baseDir . '/../lib/Service/DBConfigService.php', |
|
116 | - 'OCA\\Files_External\\Service\\GlobalStoragesService' => $baseDir . '/../lib/Service/GlobalStoragesService.php', |
|
117 | - 'OCA\\Files_External\\Service\\ImportLegacyStoragesService' => $baseDir . '/../lib/Service/ImportLegacyStoragesService.php', |
|
118 | - 'OCA\\Files_External\\Service\\LegacyStoragesService' => $baseDir . '/../lib/Service/LegacyStoragesService.php', |
|
119 | - 'OCA\\Files_External\\Service\\StoragesService' => $baseDir . '/../lib/Service/StoragesService.php', |
|
120 | - 'OCA\\Files_External\\Service\\UserGlobalStoragesService' => $baseDir . '/../lib/Service/UserGlobalStoragesService.php', |
|
121 | - 'OCA\\Files_External\\Service\\UserStoragesService' => $baseDir . '/../lib/Service/UserStoragesService.php', |
|
122 | - 'OCA\\Files_External\\Service\\UserTrait' => $baseDir . '/../lib/Service/UserTrait.php', |
|
123 | - 'OCA\\Files_External\\Settings\\Admin' => $baseDir . '/../lib/Settings/Admin.php', |
|
124 | - 'OCA\\Files_External\\Settings\\Personal' => $baseDir . '/../lib/Settings/Personal.php', |
|
125 | - 'OCA\\Files_External\\Settings\\PersonalSection' => $baseDir . '/../lib/Settings/PersonalSection.php', |
|
126 | - 'OCA\\Files_External\\Settings\\Section' => $baseDir . '/../lib/Settings/Section.php', |
|
9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
10 | + 'OCA\\Files_External\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
11 | + 'OCA\\Files_External\\BackgroundJob\\CredentialsCleanup' => $baseDir.'/../lib/BackgroundJob/CredentialsCleanup.php', |
|
12 | + 'OCA\\Files_External\\Command\\Applicable' => $baseDir.'/../lib/Command/Applicable.php', |
|
13 | + 'OCA\\Files_External\\Command\\Backends' => $baseDir.'/../lib/Command/Backends.php', |
|
14 | + 'OCA\\Files_External\\Command\\Config' => $baseDir.'/../lib/Command/Config.php', |
|
15 | + 'OCA\\Files_External\\Command\\Create' => $baseDir.'/../lib/Command/Create.php', |
|
16 | + 'OCA\\Files_External\\Command\\Delete' => $baseDir.'/../lib/Command/Delete.php', |
|
17 | + 'OCA\\Files_External\\Command\\Dependencies' => $baseDir.'/../lib/Command/Dependencies.php', |
|
18 | + 'OCA\\Files_External\\Command\\Export' => $baseDir.'/../lib/Command/Export.php', |
|
19 | + 'OCA\\Files_External\\Command\\Import' => $baseDir.'/../lib/Command/Import.php', |
|
20 | + 'OCA\\Files_External\\Command\\ListCommand' => $baseDir.'/../lib/Command/ListCommand.php', |
|
21 | + 'OCA\\Files_External\\Command\\Notify' => $baseDir.'/../lib/Command/Notify.php', |
|
22 | + 'OCA\\Files_External\\Command\\Option' => $baseDir.'/../lib/Command/Option.php', |
|
23 | + 'OCA\\Files_External\\Command\\Scan' => $baseDir.'/../lib/Command/Scan.php', |
|
24 | + 'OCA\\Files_External\\Command\\StorageAuthBase' => $baseDir.'/../lib/Command/StorageAuthBase.php', |
|
25 | + 'OCA\\Files_External\\Command\\Verify' => $baseDir.'/../lib/Command/Verify.php', |
|
26 | + 'OCA\\Files_External\\ConfigLexicon' => $baseDir.'/../lib/ConfigLexicon.php', |
|
27 | + 'OCA\\Files_External\\Config\\ConfigAdapter' => $baseDir.'/../lib/Config/ConfigAdapter.php', |
|
28 | + 'OCA\\Files_External\\Config\\ExternalMountPoint' => $baseDir.'/../lib/Config/ExternalMountPoint.php', |
|
29 | + 'OCA\\Files_External\\Config\\IConfigHandler' => $baseDir.'/../lib/Config/IConfigHandler.php', |
|
30 | + 'OCA\\Files_External\\Config\\SimpleSubstitutionTrait' => $baseDir.'/../lib/Config/SimpleSubstitutionTrait.php', |
|
31 | + 'OCA\\Files_External\\Config\\SystemMountPoint' => $baseDir.'/../lib/Config/SystemMountPoint.php', |
|
32 | + 'OCA\\Files_External\\Config\\UserContext' => $baseDir.'/../lib/Config/UserContext.php', |
|
33 | + 'OCA\\Files_External\\Config\\UserPlaceholderHandler' => $baseDir.'/../lib/Config/UserPlaceholderHandler.php', |
|
34 | + 'OCA\\Files_External\\Controller\\AjaxController' => $baseDir.'/../lib/Controller/AjaxController.php', |
|
35 | + 'OCA\\Files_External\\Controller\\ApiController' => $baseDir.'/../lib/Controller/ApiController.php', |
|
36 | + 'OCA\\Files_External\\Controller\\GlobalStoragesController' => $baseDir.'/../lib/Controller/GlobalStoragesController.php', |
|
37 | + 'OCA\\Files_External\\Controller\\StoragesController' => $baseDir.'/../lib/Controller/StoragesController.php', |
|
38 | + 'OCA\\Files_External\\Controller\\UserGlobalStoragesController' => $baseDir.'/../lib/Controller/UserGlobalStoragesController.php', |
|
39 | + 'OCA\\Files_External\\Controller\\UserStoragesController' => $baseDir.'/../lib/Controller/UserStoragesController.php', |
|
40 | + 'OCA\\Files_External\\Lib\\Auth\\AmazonS3\\AccessKey' => $baseDir.'/../lib/Lib/Auth/AmazonS3/AccessKey.php', |
|
41 | + 'OCA\\Files_External\\Lib\\Auth\\AuthMechanism' => $baseDir.'/../lib/Lib/Auth/AuthMechanism.php', |
|
42 | + 'OCA\\Files_External\\Lib\\Auth\\Builtin' => $baseDir.'/../lib/Lib/Auth/Builtin.php', |
|
43 | + 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => $baseDir.'/../lib/Lib/Auth/IUserProvided.php', |
|
44 | + 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => $baseDir.'/../lib/Lib/Auth/InvalidAuth.php', |
|
45 | + 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => $baseDir.'/../lib/Lib/Auth/NullMechanism.php', |
|
46 | + 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => $baseDir.'/../lib/Lib/Auth/OAuth2/OAuth2.php', |
|
47 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => $baseDir.'/../lib/Lib/Auth/OpenStack/OpenStackV2.php', |
|
48 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => $baseDir.'/../lib/Lib/Auth/OpenStack/OpenStackV3.php', |
|
49 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\Rackspace' => $baseDir.'/../lib/Lib/Auth/OpenStack/Rackspace.php', |
|
50 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\GlobalAuth' => $baseDir.'/../lib/Lib/Auth/Password/GlobalAuth.php', |
|
51 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\LoginCredentials' => $baseDir.'/../lib/Lib/Auth/Password/LoginCredentials.php', |
|
52 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\Password' => $baseDir.'/../lib/Lib/Auth/Password/Password.php', |
|
53 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\SessionCredentials' => $baseDir.'/../lib/Lib/Auth/Password/SessionCredentials.php', |
|
54 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\UserGlobalAuth' => $baseDir.'/../lib/Lib/Auth/Password/UserGlobalAuth.php', |
|
55 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\UserProvided' => $baseDir.'/../lib/Lib/Auth/Password/UserProvided.php', |
|
56 | + 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSA' => $baseDir.'/../lib/Lib/Auth/PublicKey/RSA.php', |
|
57 | + 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSAPrivateKey' => $baseDir.'/../lib/Lib/Auth/PublicKey/RSAPrivateKey.php', |
|
58 | + 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosApacheAuth' => $baseDir.'/../lib/Lib/Auth/SMB/KerberosApacheAuth.php', |
|
59 | + 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosAuth' => $baseDir.'/../lib/Lib/Auth/SMB/KerberosAuth.php', |
|
60 | + 'OCA\\Files_External\\Lib\\Backend\\AmazonS3' => $baseDir.'/../lib/Lib/Backend/AmazonS3.php', |
|
61 | + 'OCA\\Files_External\\Lib\\Backend\\Backend' => $baseDir.'/../lib/Lib/Backend/Backend.php', |
|
62 | + 'OCA\\Files_External\\Lib\\Backend\\DAV' => $baseDir.'/../lib/Lib/Backend/DAV.php', |
|
63 | + 'OCA\\Files_External\\Lib\\Backend\\FTP' => $baseDir.'/../lib/Lib/Backend/FTP.php', |
|
64 | + 'OCA\\Files_External\\Lib\\Backend\\InvalidBackend' => $baseDir.'/../lib/Lib/Backend/InvalidBackend.php', |
|
65 | + 'OCA\\Files_External\\Lib\\Backend\\LegacyBackend' => $baseDir.'/../lib/Lib/Backend/LegacyBackend.php', |
|
66 | + 'OCA\\Files_External\\Lib\\Backend\\Local' => $baseDir.'/../lib/Lib/Backend/Local.php', |
|
67 | + 'OCA\\Files_External\\Lib\\Backend\\OwnCloud' => $baseDir.'/../lib/Lib/Backend/OwnCloud.php', |
|
68 | + 'OCA\\Files_External\\Lib\\Backend\\SFTP' => $baseDir.'/../lib/Lib/Backend/SFTP.php', |
|
69 | + 'OCA\\Files_External\\Lib\\Backend\\SFTP_Key' => $baseDir.'/../lib/Lib/Backend/SFTP_Key.php', |
|
70 | + 'OCA\\Files_External\\Lib\\Backend\\SMB' => $baseDir.'/../lib/Lib/Backend/SMB.php', |
|
71 | + 'OCA\\Files_External\\Lib\\Backend\\SMB_OC' => $baseDir.'/../lib/Lib/Backend/SMB_OC.php', |
|
72 | + 'OCA\\Files_External\\Lib\\Backend\\Swift' => $baseDir.'/../lib/Lib/Backend/Swift.php', |
|
73 | + 'OCA\\Files_External\\Lib\\Config\\IAuthMechanismProvider' => $baseDir.'/../lib/Lib/Config/IAuthMechanismProvider.php', |
|
74 | + 'OCA\\Files_External\\Lib\\Config\\IBackendProvider' => $baseDir.'/../lib/Lib/Config/IBackendProvider.php', |
|
75 | + 'OCA\\Files_External\\Lib\\DefinitionParameter' => $baseDir.'/../lib/Lib/DefinitionParameter.php', |
|
76 | + 'OCA\\Files_External\\Lib\\DependencyTrait' => $baseDir.'/../lib/Lib/DependencyTrait.php', |
|
77 | + 'OCA\\Files_External\\Lib\\FrontendDefinitionTrait' => $baseDir.'/../lib/Lib/FrontendDefinitionTrait.php', |
|
78 | + 'OCA\\Files_External\\Lib\\IFrontendDefinition' => $baseDir.'/../lib/Lib/IFrontendDefinition.php', |
|
79 | + 'OCA\\Files_External\\Lib\\IIdentifier' => $baseDir.'/../lib/Lib/IIdentifier.php', |
|
80 | + 'OCA\\Files_External\\Lib\\IdentifierTrait' => $baseDir.'/../lib/Lib/IdentifierTrait.php', |
|
81 | + 'OCA\\Files_External\\Lib\\InsufficientDataForMeaningfulAnswerException' => $baseDir.'/../lib/Lib/InsufficientDataForMeaningfulAnswerException.php', |
|
82 | + 'OCA\\Files_External\\Lib\\LegacyDependencyCheckPolyfill' => $baseDir.'/../lib/Lib/LegacyDependencyCheckPolyfill.php', |
|
83 | + 'OCA\\Files_External\\Lib\\MissingDependency' => $baseDir.'/../lib/Lib/MissingDependency.php', |
|
84 | + 'OCA\\Files_External\\Lib\\Notify\\SMBNotifyHandler' => $baseDir.'/../lib/Lib/Notify/SMBNotifyHandler.php', |
|
85 | + 'OCA\\Files_External\\Lib\\PersonalMount' => $baseDir.'/../lib/Lib/PersonalMount.php', |
|
86 | + 'OCA\\Files_External\\Lib\\PriorityTrait' => $baseDir.'/../lib/Lib/PriorityTrait.php', |
|
87 | + 'OCA\\Files_External\\Lib\\SessionStorageWrapper' => $baseDir.'/../lib/Lib/SessionStorageWrapper.php', |
|
88 | + 'OCA\\Files_External\\Lib\\StorageConfig' => $baseDir.'/../lib/Lib/StorageConfig.php', |
|
89 | + 'OCA\\Files_External\\Lib\\StorageModifierTrait' => $baseDir.'/../lib/Lib/StorageModifierTrait.php', |
|
90 | + 'OCA\\Files_External\\Lib\\Storage\\AmazonS3' => $baseDir.'/../lib/Lib/Storage/AmazonS3.php', |
|
91 | + 'OCA\\Files_External\\Lib\\Storage\\FTP' => $baseDir.'/../lib/Lib/Storage/FTP.php', |
|
92 | + 'OCA\\Files_External\\Lib\\Storage\\FtpConnection' => $baseDir.'/../lib/Lib/Storage/FtpConnection.php', |
|
93 | + 'OCA\\Files_External\\Lib\\Storage\\OwnCloud' => $baseDir.'/../lib/Lib/Storage/OwnCloud.php', |
|
94 | + 'OCA\\Files_External\\Lib\\Storage\\SFTP' => $baseDir.'/../lib/Lib/Storage/SFTP.php', |
|
95 | + 'OCA\\Files_External\\Lib\\Storage\\SFTPReadStream' => $baseDir.'/../lib/Lib/Storage/SFTPReadStream.php', |
|
96 | + 'OCA\\Files_External\\Lib\\Storage\\SFTPWriteStream' => $baseDir.'/../lib/Lib/Storage/SFTPWriteStream.php', |
|
97 | + 'OCA\\Files_External\\Lib\\Storage\\SMB' => $baseDir.'/../lib/Lib/Storage/SMB.php', |
|
98 | + 'OCA\\Files_External\\Lib\\Storage\\StreamWrapper' => $baseDir.'/../lib/Lib/Storage/StreamWrapper.php', |
|
99 | + 'OCA\\Files_External\\Lib\\Storage\\Swift' => $baseDir.'/../lib/Lib/Storage/Swift.php', |
|
100 | + 'OCA\\Files_External\\Lib\\Storage\\SystemBridge' => $baseDir.'/../lib/Lib/Storage/SystemBridge.php', |
|
101 | + 'OCA\\Files_External\\Lib\\VisibilityTrait' => $baseDir.'/../lib/Lib/VisibilityTrait.php', |
|
102 | + 'OCA\\Files_External\\Listener\\GroupDeletedListener' => $baseDir.'/../lib/Listener/GroupDeletedListener.php', |
|
103 | + 'OCA\\Files_External\\Listener\\LoadAdditionalListener' => $baseDir.'/../lib/Listener/LoadAdditionalListener.php', |
|
104 | + 'OCA\\Files_External\\Listener\\StorePasswordListener' => $baseDir.'/../lib/Listener/StorePasswordListener.php', |
|
105 | + 'OCA\\Files_External\\Listener\\UserDeletedListener' => $baseDir.'/../lib/Listener/UserDeletedListener.php', |
|
106 | + 'OCA\\Files_External\\Migration\\DummyUserSession' => $baseDir.'/../lib/Migration/DummyUserSession.php', |
|
107 | + 'OCA\\Files_External\\Migration\\Version1011Date20200630192246' => $baseDir.'/../lib/Migration/Version1011Date20200630192246.php', |
|
108 | + 'OCA\\Files_External\\Migration\\Version1015Date20211104103506' => $baseDir.'/../lib/Migration/Version1015Date20211104103506.php', |
|
109 | + 'OCA\\Files_External\\Migration\\Version1016Date20220324154536' => $baseDir.'/../lib/Migration/Version1016Date20220324154536.php', |
|
110 | + 'OCA\\Files_External\\Migration\\Version22000Date20210216084416' => $baseDir.'/../lib/Migration/Version22000Date20210216084416.php', |
|
111 | + 'OCA\\Files_External\\MountConfig' => $baseDir.'/../lib/MountConfig.php', |
|
112 | + 'OCA\\Files_External\\NotFoundException' => $baseDir.'/../lib/NotFoundException.php', |
|
113 | + 'OCA\\Files_External\\ResponseDefinitions' => $baseDir.'/../lib/ResponseDefinitions.php', |
|
114 | + 'OCA\\Files_External\\Service\\BackendService' => $baseDir.'/../lib/Service/BackendService.php', |
|
115 | + 'OCA\\Files_External\\Service\\DBConfigService' => $baseDir.'/../lib/Service/DBConfigService.php', |
|
116 | + 'OCA\\Files_External\\Service\\GlobalStoragesService' => $baseDir.'/../lib/Service/GlobalStoragesService.php', |
|
117 | + 'OCA\\Files_External\\Service\\ImportLegacyStoragesService' => $baseDir.'/../lib/Service/ImportLegacyStoragesService.php', |
|
118 | + 'OCA\\Files_External\\Service\\LegacyStoragesService' => $baseDir.'/../lib/Service/LegacyStoragesService.php', |
|
119 | + 'OCA\\Files_External\\Service\\StoragesService' => $baseDir.'/../lib/Service/StoragesService.php', |
|
120 | + 'OCA\\Files_External\\Service\\UserGlobalStoragesService' => $baseDir.'/../lib/Service/UserGlobalStoragesService.php', |
|
121 | + 'OCA\\Files_External\\Service\\UserStoragesService' => $baseDir.'/../lib/Service/UserStoragesService.php', |
|
122 | + 'OCA\\Files_External\\Service\\UserTrait' => $baseDir.'/../lib/Service/UserTrait.php', |
|
123 | + 'OCA\\Files_External\\Settings\\Admin' => $baseDir.'/../lib/Settings/Admin.php', |
|
124 | + 'OCA\\Files_External\\Settings\\Personal' => $baseDir.'/../lib/Settings/Personal.php', |
|
125 | + 'OCA\\Files_External\\Settings\\PersonalSection' => $baseDir.'/../lib/Settings/PersonalSection.php', |
|
126 | + 'OCA\\Files_External\\Settings\\Section' => $baseDir.'/../lib/Settings/Section.php', |
|
127 | 127 | ); |
@@ -6,144 +6,144 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitFiles_External |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'O' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'OCA\\Files_External\\' => 19, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'OCA\\Files_External\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/..'.'/../lib', |
|
20 | 20 | ), |
21 | 21 | ); |
22 | 22 | |
23 | - public static $classMap = array ( |
|
24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
25 | - 'OCA\\Files_External\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
26 | - 'OCA\\Files_External\\BackgroundJob\\CredentialsCleanup' => __DIR__ . '/..' . '/../lib/BackgroundJob/CredentialsCleanup.php', |
|
27 | - 'OCA\\Files_External\\Command\\Applicable' => __DIR__ . '/..' . '/../lib/Command/Applicable.php', |
|
28 | - 'OCA\\Files_External\\Command\\Backends' => __DIR__ . '/..' . '/../lib/Command/Backends.php', |
|
29 | - 'OCA\\Files_External\\Command\\Config' => __DIR__ . '/..' . '/../lib/Command/Config.php', |
|
30 | - 'OCA\\Files_External\\Command\\Create' => __DIR__ . '/..' . '/../lib/Command/Create.php', |
|
31 | - 'OCA\\Files_External\\Command\\Delete' => __DIR__ . '/..' . '/../lib/Command/Delete.php', |
|
32 | - 'OCA\\Files_External\\Command\\Dependencies' => __DIR__ . '/..' . '/../lib/Command/Dependencies.php', |
|
33 | - 'OCA\\Files_External\\Command\\Export' => __DIR__ . '/..' . '/../lib/Command/Export.php', |
|
34 | - 'OCA\\Files_External\\Command\\Import' => __DIR__ . '/..' . '/../lib/Command/Import.php', |
|
35 | - 'OCA\\Files_External\\Command\\ListCommand' => __DIR__ . '/..' . '/../lib/Command/ListCommand.php', |
|
36 | - 'OCA\\Files_External\\Command\\Notify' => __DIR__ . '/..' . '/../lib/Command/Notify.php', |
|
37 | - 'OCA\\Files_External\\Command\\Option' => __DIR__ . '/..' . '/../lib/Command/Option.php', |
|
38 | - 'OCA\\Files_External\\Command\\Scan' => __DIR__ . '/..' . '/../lib/Command/Scan.php', |
|
39 | - 'OCA\\Files_External\\Command\\StorageAuthBase' => __DIR__ . '/..' . '/../lib/Command/StorageAuthBase.php', |
|
40 | - 'OCA\\Files_External\\Command\\Verify' => __DIR__ . '/..' . '/../lib/Command/Verify.php', |
|
41 | - 'OCA\\Files_External\\ConfigLexicon' => __DIR__ . '/..' . '/../lib/ConfigLexicon.php', |
|
42 | - 'OCA\\Files_External\\Config\\ConfigAdapter' => __DIR__ . '/..' . '/../lib/Config/ConfigAdapter.php', |
|
43 | - 'OCA\\Files_External\\Config\\ExternalMountPoint' => __DIR__ . '/..' . '/../lib/Config/ExternalMountPoint.php', |
|
44 | - 'OCA\\Files_External\\Config\\IConfigHandler' => __DIR__ . '/..' . '/../lib/Config/IConfigHandler.php', |
|
45 | - 'OCA\\Files_External\\Config\\SimpleSubstitutionTrait' => __DIR__ . '/..' . '/../lib/Config/SimpleSubstitutionTrait.php', |
|
46 | - 'OCA\\Files_External\\Config\\SystemMountPoint' => __DIR__ . '/..' . '/../lib/Config/SystemMountPoint.php', |
|
47 | - 'OCA\\Files_External\\Config\\UserContext' => __DIR__ . '/..' . '/../lib/Config/UserContext.php', |
|
48 | - 'OCA\\Files_External\\Config\\UserPlaceholderHandler' => __DIR__ . '/..' . '/../lib/Config/UserPlaceholderHandler.php', |
|
49 | - 'OCA\\Files_External\\Controller\\AjaxController' => __DIR__ . '/..' . '/../lib/Controller/AjaxController.php', |
|
50 | - 'OCA\\Files_External\\Controller\\ApiController' => __DIR__ . '/..' . '/../lib/Controller/ApiController.php', |
|
51 | - 'OCA\\Files_External\\Controller\\GlobalStoragesController' => __DIR__ . '/..' . '/../lib/Controller/GlobalStoragesController.php', |
|
52 | - 'OCA\\Files_External\\Controller\\StoragesController' => __DIR__ . '/..' . '/../lib/Controller/StoragesController.php', |
|
53 | - 'OCA\\Files_External\\Controller\\UserGlobalStoragesController' => __DIR__ . '/..' . '/../lib/Controller/UserGlobalStoragesController.php', |
|
54 | - 'OCA\\Files_External\\Controller\\UserStoragesController' => __DIR__ . '/..' . '/../lib/Controller/UserStoragesController.php', |
|
55 | - 'OCA\\Files_External\\Lib\\Auth\\AmazonS3\\AccessKey' => __DIR__ . '/..' . '/../lib/Lib/Auth/AmazonS3/AccessKey.php', |
|
56 | - 'OCA\\Files_External\\Lib\\Auth\\AuthMechanism' => __DIR__ . '/..' . '/../lib/Lib/Auth/AuthMechanism.php', |
|
57 | - 'OCA\\Files_External\\Lib\\Auth\\Builtin' => __DIR__ . '/..' . '/../lib/Lib/Auth/Builtin.php', |
|
58 | - 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => __DIR__ . '/..' . '/../lib/Lib/Auth/IUserProvided.php', |
|
59 | - 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/InvalidAuth.php', |
|
60 | - 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => __DIR__ . '/..' . '/../lib/Lib/Auth/NullMechanism.php', |
|
61 | - 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => __DIR__ . '/..' . '/../lib/Lib/Auth/OAuth2/OAuth2.php', |
|
62 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => __DIR__ . '/..' . '/../lib/Lib/Auth/OpenStack/OpenStackV2.php', |
|
63 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => __DIR__ . '/..' . '/../lib/Lib/Auth/OpenStack/OpenStackV3.php', |
|
64 | - 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\Rackspace' => __DIR__ . '/..' . '/../lib/Lib/Auth/OpenStack/Rackspace.php', |
|
65 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\GlobalAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/GlobalAuth.php', |
|
66 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\LoginCredentials' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/LoginCredentials.php', |
|
67 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\Password' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/Password.php', |
|
68 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\SessionCredentials' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/SessionCredentials.php', |
|
69 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\UserGlobalAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/UserGlobalAuth.php', |
|
70 | - 'OCA\\Files_External\\Lib\\Auth\\Password\\UserProvided' => __DIR__ . '/..' . '/../lib/Lib/Auth/Password/UserProvided.php', |
|
71 | - 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSA' => __DIR__ . '/..' . '/../lib/Lib/Auth/PublicKey/RSA.php', |
|
72 | - 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSAPrivateKey' => __DIR__ . '/..' . '/../lib/Lib/Auth/PublicKey/RSAPrivateKey.php', |
|
73 | - 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosApacheAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/SMB/KerberosApacheAuth.php', |
|
74 | - 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/SMB/KerberosAuth.php', |
|
75 | - 'OCA\\Files_External\\Lib\\Backend\\AmazonS3' => __DIR__ . '/..' . '/../lib/Lib/Backend/AmazonS3.php', |
|
76 | - 'OCA\\Files_External\\Lib\\Backend\\Backend' => __DIR__ . '/..' . '/../lib/Lib/Backend/Backend.php', |
|
77 | - 'OCA\\Files_External\\Lib\\Backend\\DAV' => __DIR__ . '/..' . '/../lib/Lib/Backend/DAV.php', |
|
78 | - 'OCA\\Files_External\\Lib\\Backend\\FTP' => __DIR__ . '/..' . '/../lib/Lib/Backend/FTP.php', |
|
79 | - 'OCA\\Files_External\\Lib\\Backend\\InvalidBackend' => __DIR__ . '/..' . '/../lib/Lib/Backend/InvalidBackend.php', |
|
80 | - 'OCA\\Files_External\\Lib\\Backend\\LegacyBackend' => __DIR__ . '/..' . '/../lib/Lib/Backend/LegacyBackend.php', |
|
81 | - 'OCA\\Files_External\\Lib\\Backend\\Local' => __DIR__ . '/..' . '/../lib/Lib/Backend/Local.php', |
|
82 | - 'OCA\\Files_External\\Lib\\Backend\\OwnCloud' => __DIR__ . '/..' . '/../lib/Lib/Backend/OwnCloud.php', |
|
83 | - 'OCA\\Files_External\\Lib\\Backend\\SFTP' => __DIR__ . '/..' . '/../lib/Lib/Backend/SFTP.php', |
|
84 | - 'OCA\\Files_External\\Lib\\Backend\\SFTP_Key' => __DIR__ . '/..' . '/../lib/Lib/Backend/SFTP_Key.php', |
|
85 | - 'OCA\\Files_External\\Lib\\Backend\\SMB' => __DIR__ . '/..' . '/../lib/Lib/Backend/SMB.php', |
|
86 | - 'OCA\\Files_External\\Lib\\Backend\\SMB_OC' => __DIR__ . '/..' . '/../lib/Lib/Backend/SMB_OC.php', |
|
87 | - 'OCA\\Files_External\\Lib\\Backend\\Swift' => __DIR__ . '/..' . '/../lib/Lib/Backend/Swift.php', |
|
88 | - 'OCA\\Files_External\\Lib\\Config\\IAuthMechanismProvider' => __DIR__ . '/..' . '/../lib/Lib/Config/IAuthMechanismProvider.php', |
|
89 | - 'OCA\\Files_External\\Lib\\Config\\IBackendProvider' => __DIR__ . '/..' . '/../lib/Lib/Config/IBackendProvider.php', |
|
90 | - 'OCA\\Files_External\\Lib\\DefinitionParameter' => __DIR__ . '/..' . '/../lib/Lib/DefinitionParameter.php', |
|
91 | - 'OCA\\Files_External\\Lib\\DependencyTrait' => __DIR__ . '/..' . '/../lib/Lib/DependencyTrait.php', |
|
92 | - 'OCA\\Files_External\\Lib\\FrontendDefinitionTrait' => __DIR__ . '/..' . '/../lib/Lib/FrontendDefinitionTrait.php', |
|
93 | - 'OCA\\Files_External\\Lib\\IFrontendDefinition' => __DIR__ . '/..' . '/../lib/Lib/IFrontendDefinition.php', |
|
94 | - 'OCA\\Files_External\\Lib\\IIdentifier' => __DIR__ . '/..' . '/../lib/Lib/IIdentifier.php', |
|
95 | - 'OCA\\Files_External\\Lib\\IdentifierTrait' => __DIR__ . '/..' . '/../lib/Lib/IdentifierTrait.php', |
|
96 | - 'OCA\\Files_External\\Lib\\InsufficientDataForMeaningfulAnswerException' => __DIR__ . '/..' . '/../lib/Lib/InsufficientDataForMeaningfulAnswerException.php', |
|
97 | - 'OCA\\Files_External\\Lib\\LegacyDependencyCheckPolyfill' => __DIR__ . '/..' . '/../lib/Lib/LegacyDependencyCheckPolyfill.php', |
|
98 | - 'OCA\\Files_External\\Lib\\MissingDependency' => __DIR__ . '/..' . '/../lib/Lib/MissingDependency.php', |
|
99 | - 'OCA\\Files_External\\Lib\\Notify\\SMBNotifyHandler' => __DIR__ . '/..' . '/../lib/Lib/Notify/SMBNotifyHandler.php', |
|
100 | - 'OCA\\Files_External\\Lib\\PersonalMount' => __DIR__ . '/..' . '/../lib/Lib/PersonalMount.php', |
|
101 | - 'OCA\\Files_External\\Lib\\PriorityTrait' => __DIR__ . '/..' . '/../lib/Lib/PriorityTrait.php', |
|
102 | - 'OCA\\Files_External\\Lib\\SessionStorageWrapper' => __DIR__ . '/..' . '/../lib/Lib/SessionStorageWrapper.php', |
|
103 | - 'OCA\\Files_External\\Lib\\StorageConfig' => __DIR__ . '/..' . '/../lib/Lib/StorageConfig.php', |
|
104 | - 'OCA\\Files_External\\Lib\\StorageModifierTrait' => __DIR__ . '/..' . '/../lib/Lib/StorageModifierTrait.php', |
|
105 | - 'OCA\\Files_External\\Lib\\Storage\\AmazonS3' => __DIR__ . '/..' . '/../lib/Lib/Storage/AmazonS3.php', |
|
106 | - 'OCA\\Files_External\\Lib\\Storage\\FTP' => __DIR__ . '/..' . '/../lib/Lib/Storage/FTP.php', |
|
107 | - 'OCA\\Files_External\\Lib\\Storage\\FtpConnection' => __DIR__ . '/..' . '/../lib/Lib/Storage/FtpConnection.php', |
|
108 | - 'OCA\\Files_External\\Lib\\Storage\\OwnCloud' => __DIR__ . '/..' . '/../lib/Lib/Storage/OwnCloud.php', |
|
109 | - 'OCA\\Files_External\\Lib\\Storage\\SFTP' => __DIR__ . '/..' . '/../lib/Lib/Storage/SFTP.php', |
|
110 | - 'OCA\\Files_External\\Lib\\Storage\\SFTPReadStream' => __DIR__ . '/..' . '/../lib/Lib/Storage/SFTPReadStream.php', |
|
111 | - 'OCA\\Files_External\\Lib\\Storage\\SFTPWriteStream' => __DIR__ . '/..' . '/../lib/Lib/Storage/SFTPWriteStream.php', |
|
112 | - 'OCA\\Files_External\\Lib\\Storage\\SMB' => __DIR__ . '/..' . '/../lib/Lib/Storage/SMB.php', |
|
113 | - 'OCA\\Files_External\\Lib\\Storage\\StreamWrapper' => __DIR__ . '/..' . '/../lib/Lib/Storage/StreamWrapper.php', |
|
114 | - 'OCA\\Files_External\\Lib\\Storage\\Swift' => __DIR__ . '/..' . '/../lib/Lib/Storage/Swift.php', |
|
115 | - 'OCA\\Files_External\\Lib\\Storage\\SystemBridge' => __DIR__ . '/..' . '/../lib/Lib/Storage/SystemBridge.php', |
|
116 | - 'OCA\\Files_External\\Lib\\VisibilityTrait' => __DIR__ . '/..' . '/../lib/Lib/VisibilityTrait.php', |
|
117 | - 'OCA\\Files_External\\Listener\\GroupDeletedListener' => __DIR__ . '/..' . '/../lib/Listener/GroupDeletedListener.php', |
|
118 | - 'OCA\\Files_External\\Listener\\LoadAdditionalListener' => __DIR__ . '/..' . '/../lib/Listener/LoadAdditionalListener.php', |
|
119 | - 'OCA\\Files_External\\Listener\\StorePasswordListener' => __DIR__ . '/..' . '/../lib/Listener/StorePasswordListener.php', |
|
120 | - 'OCA\\Files_External\\Listener\\UserDeletedListener' => __DIR__ . '/..' . '/../lib/Listener/UserDeletedListener.php', |
|
121 | - 'OCA\\Files_External\\Migration\\DummyUserSession' => __DIR__ . '/..' . '/../lib/Migration/DummyUserSession.php', |
|
122 | - 'OCA\\Files_External\\Migration\\Version1011Date20200630192246' => __DIR__ . '/..' . '/../lib/Migration/Version1011Date20200630192246.php', |
|
123 | - 'OCA\\Files_External\\Migration\\Version1015Date20211104103506' => __DIR__ . '/..' . '/../lib/Migration/Version1015Date20211104103506.php', |
|
124 | - 'OCA\\Files_External\\Migration\\Version1016Date20220324154536' => __DIR__ . '/..' . '/../lib/Migration/Version1016Date20220324154536.php', |
|
125 | - 'OCA\\Files_External\\Migration\\Version22000Date20210216084416' => __DIR__ . '/..' . '/../lib/Migration/Version22000Date20210216084416.php', |
|
126 | - 'OCA\\Files_External\\MountConfig' => __DIR__ . '/..' . '/../lib/MountConfig.php', |
|
127 | - 'OCA\\Files_External\\NotFoundException' => __DIR__ . '/..' . '/../lib/NotFoundException.php', |
|
128 | - 'OCA\\Files_External\\ResponseDefinitions' => __DIR__ . '/..' . '/../lib/ResponseDefinitions.php', |
|
129 | - 'OCA\\Files_External\\Service\\BackendService' => __DIR__ . '/..' . '/../lib/Service/BackendService.php', |
|
130 | - 'OCA\\Files_External\\Service\\DBConfigService' => __DIR__ . '/..' . '/../lib/Service/DBConfigService.php', |
|
131 | - 'OCA\\Files_External\\Service\\GlobalStoragesService' => __DIR__ . '/..' . '/../lib/Service/GlobalStoragesService.php', |
|
132 | - 'OCA\\Files_External\\Service\\ImportLegacyStoragesService' => __DIR__ . '/..' . '/../lib/Service/ImportLegacyStoragesService.php', |
|
133 | - 'OCA\\Files_External\\Service\\LegacyStoragesService' => __DIR__ . '/..' . '/../lib/Service/LegacyStoragesService.php', |
|
134 | - 'OCA\\Files_External\\Service\\StoragesService' => __DIR__ . '/..' . '/../lib/Service/StoragesService.php', |
|
135 | - 'OCA\\Files_External\\Service\\UserGlobalStoragesService' => __DIR__ . '/..' . '/../lib/Service/UserGlobalStoragesService.php', |
|
136 | - 'OCA\\Files_External\\Service\\UserStoragesService' => __DIR__ . '/..' . '/../lib/Service/UserStoragesService.php', |
|
137 | - 'OCA\\Files_External\\Service\\UserTrait' => __DIR__ . '/..' . '/../lib/Service/UserTrait.php', |
|
138 | - 'OCA\\Files_External\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php', |
|
139 | - 'OCA\\Files_External\\Settings\\Personal' => __DIR__ . '/..' . '/../lib/Settings/Personal.php', |
|
140 | - 'OCA\\Files_External\\Settings\\PersonalSection' => __DIR__ . '/..' . '/../lib/Settings/PersonalSection.php', |
|
141 | - 'OCA\\Files_External\\Settings\\Section' => __DIR__ . '/..' . '/../lib/Settings/Section.php', |
|
23 | + public static $classMap = array( |
|
24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
25 | + 'OCA\\Files_External\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
26 | + 'OCA\\Files_External\\BackgroundJob\\CredentialsCleanup' => __DIR__.'/..'.'/../lib/BackgroundJob/CredentialsCleanup.php', |
|
27 | + 'OCA\\Files_External\\Command\\Applicable' => __DIR__.'/..'.'/../lib/Command/Applicable.php', |
|
28 | + 'OCA\\Files_External\\Command\\Backends' => __DIR__.'/..'.'/../lib/Command/Backends.php', |
|
29 | + 'OCA\\Files_External\\Command\\Config' => __DIR__.'/..'.'/../lib/Command/Config.php', |
|
30 | + 'OCA\\Files_External\\Command\\Create' => __DIR__.'/..'.'/../lib/Command/Create.php', |
|
31 | + 'OCA\\Files_External\\Command\\Delete' => __DIR__.'/..'.'/../lib/Command/Delete.php', |
|
32 | + 'OCA\\Files_External\\Command\\Dependencies' => __DIR__.'/..'.'/../lib/Command/Dependencies.php', |
|
33 | + 'OCA\\Files_External\\Command\\Export' => __DIR__.'/..'.'/../lib/Command/Export.php', |
|
34 | + 'OCA\\Files_External\\Command\\Import' => __DIR__.'/..'.'/../lib/Command/Import.php', |
|
35 | + 'OCA\\Files_External\\Command\\ListCommand' => __DIR__.'/..'.'/../lib/Command/ListCommand.php', |
|
36 | + 'OCA\\Files_External\\Command\\Notify' => __DIR__.'/..'.'/../lib/Command/Notify.php', |
|
37 | + 'OCA\\Files_External\\Command\\Option' => __DIR__.'/..'.'/../lib/Command/Option.php', |
|
38 | + 'OCA\\Files_External\\Command\\Scan' => __DIR__.'/..'.'/../lib/Command/Scan.php', |
|
39 | + 'OCA\\Files_External\\Command\\StorageAuthBase' => __DIR__.'/..'.'/../lib/Command/StorageAuthBase.php', |
|
40 | + 'OCA\\Files_External\\Command\\Verify' => __DIR__.'/..'.'/../lib/Command/Verify.php', |
|
41 | + 'OCA\\Files_External\\ConfigLexicon' => __DIR__.'/..'.'/../lib/ConfigLexicon.php', |
|
42 | + 'OCA\\Files_External\\Config\\ConfigAdapter' => __DIR__.'/..'.'/../lib/Config/ConfigAdapter.php', |
|
43 | + 'OCA\\Files_External\\Config\\ExternalMountPoint' => __DIR__.'/..'.'/../lib/Config/ExternalMountPoint.php', |
|
44 | + 'OCA\\Files_External\\Config\\IConfigHandler' => __DIR__.'/..'.'/../lib/Config/IConfigHandler.php', |
|
45 | + 'OCA\\Files_External\\Config\\SimpleSubstitutionTrait' => __DIR__.'/..'.'/../lib/Config/SimpleSubstitutionTrait.php', |
|
46 | + 'OCA\\Files_External\\Config\\SystemMountPoint' => __DIR__.'/..'.'/../lib/Config/SystemMountPoint.php', |
|
47 | + 'OCA\\Files_External\\Config\\UserContext' => __DIR__.'/..'.'/../lib/Config/UserContext.php', |
|
48 | + 'OCA\\Files_External\\Config\\UserPlaceholderHandler' => __DIR__.'/..'.'/../lib/Config/UserPlaceholderHandler.php', |
|
49 | + 'OCA\\Files_External\\Controller\\AjaxController' => __DIR__.'/..'.'/../lib/Controller/AjaxController.php', |
|
50 | + 'OCA\\Files_External\\Controller\\ApiController' => __DIR__.'/..'.'/../lib/Controller/ApiController.php', |
|
51 | + 'OCA\\Files_External\\Controller\\GlobalStoragesController' => __DIR__.'/..'.'/../lib/Controller/GlobalStoragesController.php', |
|
52 | + 'OCA\\Files_External\\Controller\\StoragesController' => __DIR__.'/..'.'/../lib/Controller/StoragesController.php', |
|
53 | + 'OCA\\Files_External\\Controller\\UserGlobalStoragesController' => __DIR__.'/..'.'/../lib/Controller/UserGlobalStoragesController.php', |
|
54 | + 'OCA\\Files_External\\Controller\\UserStoragesController' => __DIR__.'/..'.'/../lib/Controller/UserStoragesController.php', |
|
55 | + 'OCA\\Files_External\\Lib\\Auth\\AmazonS3\\AccessKey' => __DIR__.'/..'.'/../lib/Lib/Auth/AmazonS3/AccessKey.php', |
|
56 | + 'OCA\\Files_External\\Lib\\Auth\\AuthMechanism' => __DIR__.'/..'.'/../lib/Lib/Auth/AuthMechanism.php', |
|
57 | + 'OCA\\Files_External\\Lib\\Auth\\Builtin' => __DIR__.'/..'.'/../lib/Lib/Auth/Builtin.php', |
|
58 | + 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => __DIR__.'/..'.'/../lib/Lib/Auth/IUserProvided.php', |
|
59 | + 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => __DIR__.'/..'.'/../lib/Lib/Auth/InvalidAuth.php', |
|
60 | + 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => __DIR__.'/..'.'/../lib/Lib/Auth/NullMechanism.php', |
|
61 | + 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => __DIR__.'/..'.'/../lib/Lib/Auth/OAuth2/OAuth2.php', |
|
62 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => __DIR__.'/..'.'/../lib/Lib/Auth/OpenStack/OpenStackV2.php', |
|
63 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => __DIR__.'/..'.'/../lib/Lib/Auth/OpenStack/OpenStackV3.php', |
|
64 | + 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\Rackspace' => __DIR__.'/..'.'/../lib/Lib/Auth/OpenStack/Rackspace.php', |
|
65 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\GlobalAuth' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/GlobalAuth.php', |
|
66 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\LoginCredentials' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/LoginCredentials.php', |
|
67 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\Password' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/Password.php', |
|
68 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\SessionCredentials' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/SessionCredentials.php', |
|
69 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\UserGlobalAuth' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/UserGlobalAuth.php', |
|
70 | + 'OCA\\Files_External\\Lib\\Auth\\Password\\UserProvided' => __DIR__.'/..'.'/../lib/Lib/Auth/Password/UserProvided.php', |
|
71 | + 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSA' => __DIR__.'/..'.'/../lib/Lib/Auth/PublicKey/RSA.php', |
|
72 | + 'OCA\\Files_External\\Lib\\Auth\\PublicKey\\RSAPrivateKey' => __DIR__.'/..'.'/../lib/Lib/Auth/PublicKey/RSAPrivateKey.php', |
|
73 | + 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosApacheAuth' => __DIR__.'/..'.'/../lib/Lib/Auth/SMB/KerberosApacheAuth.php', |
|
74 | + 'OCA\\Files_External\\Lib\\Auth\\SMB\\KerberosAuth' => __DIR__.'/..'.'/../lib/Lib/Auth/SMB/KerberosAuth.php', |
|
75 | + 'OCA\\Files_External\\Lib\\Backend\\AmazonS3' => __DIR__.'/..'.'/../lib/Lib/Backend/AmazonS3.php', |
|
76 | + 'OCA\\Files_External\\Lib\\Backend\\Backend' => __DIR__.'/..'.'/../lib/Lib/Backend/Backend.php', |
|
77 | + 'OCA\\Files_External\\Lib\\Backend\\DAV' => __DIR__.'/..'.'/../lib/Lib/Backend/DAV.php', |
|
78 | + 'OCA\\Files_External\\Lib\\Backend\\FTP' => __DIR__.'/..'.'/../lib/Lib/Backend/FTP.php', |
|
79 | + 'OCA\\Files_External\\Lib\\Backend\\InvalidBackend' => __DIR__.'/..'.'/../lib/Lib/Backend/InvalidBackend.php', |
|
80 | + 'OCA\\Files_External\\Lib\\Backend\\LegacyBackend' => __DIR__.'/..'.'/../lib/Lib/Backend/LegacyBackend.php', |
|
81 | + 'OCA\\Files_External\\Lib\\Backend\\Local' => __DIR__.'/..'.'/../lib/Lib/Backend/Local.php', |
|
82 | + 'OCA\\Files_External\\Lib\\Backend\\OwnCloud' => __DIR__.'/..'.'/../lib/Lib/Backend/OwnCloud.php', |
|
83 | + 'OCA\\Files_External\\Lib\\Backend\\SFTP' => __DIR__.'/..'.'/../lib/Lib/Backend/SFTP.php', |
|
84 | + 'OCA\\Files_External\\Lib\\Backend\\SFTP_Key' => __DIR__.'/..'.'/../lib/Lib/Backend/SFTP_Key.php', |
|
85 | + 'OCA\\Files_External\\Lib\\Backend\\SMB' => __DIR__.'/..'.'/../lib/Lib/Backend/SMB.php', |
|
86 | + 'OCA\\Files_External\\Lib\\Backend\\SMB_OC' => __DIR__.'/..'.'/../lib/Lib/Backend/SMB_OC.php', |
|
87 | + 'OCA\\Files_External\\Lib\\Backend\\Swift' => __DIR__.'/..'.'/../lib/Lib/Backend/Swift.php', |
|
88 | + 'OCA\\Files_External\\Lib\\Config\\IAuthMechanismProvider' => __DIR__.'/..'.'/../lib/Lib/Config/IAuthMechanismProvider.php', |
|
89 | + 'OCA\\Files_External\\Lib\\Config\\IBackendProvider' => __DIR__.'/..'.'/../lib/Lib/Config/IBackendProvider.php', |
|
90 | + 'OCA\\Files_External\\Lib\\DefinitionParameter' => __DIR__.'/..'.'/../lib/Lib/DefinitionParameter.php', |
|
91 | + 'OCA\\Files_External\\Lib\\DependencyTrait' => __DIR__.'/..'.'/../lib/Lib/DependencyTrait.php', |
|
92 | + 'OCA\\Files_External\\Lib\\FrontendDefinitionTrait' => __DIR__.'/..'.'/../lib/Lib/FrontendDefinitionTrait.php', |
|
93 | + 'OCA\\Files_External\\Lib\\IFrontendDefinition' => __DIR__.'/..'.'/../lib/Lib/IFrontendDefinition.php', |
|
94 | + 'OCA\\Files_External\\Lib\\IIdentifier' => __DIR__.'/..'.'/../lib/Lib/IIdentifier.php', |
|
95 | + 'OCA\\Files_External\\Lib\\IdentifierTrait' => __DIR__.'/..'.'/../lib/Lib/IdentifierTrait.php', |
|
96 | + 'OCA\\Files_External\\Lib\\InsufficientDataForMeaningfulAnswerException' => __DIR__.'/..'.'/../lib/Lib/InsufficientDataForMeaningfulAnswerException.php', |
|
97 | + 'OCA\\Files_External\\Lib\\LegacyDependencyCheckPolyfill' => __DIR__.'/..'.'/../lib/Lib/LegacyDependencyCheckPolyfill.php', |
|
98 | + 'OCA\\Files_External\\Lib\\MissingDependency' => __DIR__.'/..'.'/../lib/Lib/MissingDependency.php', |
|
99 | + 'OCA\\Files_External\\Lib\\Notify\\SMBNotifyHandler' => __DIR__.'/..'.'/../lib/Lib/Notify/SMBNotifyHandler.php', |
|
100 | + 'OCA\\Files_External\\Lib\\PersonalMount' => __DIR__.'/..'.'/../lib/Lib/PersonalMount.php', |
|
101 | + 'OCA\\Files_External\\Lib\\PriorityTrait' => __DIR__.'/..'.'/../lib/Lib/PriorityTrait.php', |
|
102 | + 'OCA\\Files_External\\Lib\\SessionStorageWrapper' => __DIR__.'/..'.'/../lib/Lib/SessionStorageWrapper.php', |
|
103 | + 'OCA\\Files_External\\Lib\\StorageConfig' => __DIR__.'/..'.'/../lib/Lib/StorageConfig.php', |
|
104 | + 'OCA\\Files_External\\Lib\\StorageModifierTrait' => __DIR__.'/..'.'/../lib/Lib/StorageModifierTrait.php', |
|
105 | + 'OCA\\Files_External\\Lib\\Storage\\AmazonS3' => __DIR__.'/..'.'/../lib/Lib/Storage/AmazonS3.php', |
|
106 | + 'OCA\\Files_External\\Lib\\Storage\\FTP' => __DIR__.'/..'.'/../lib/Lib/Storage/FTP.php', |
|
107 | + 'OCA\\Files_External\\Lib\\Storage\\FtpConnection' => __DIR__.'/..'.'/../lib/Lib/Storage/FtpConnection.php', |
|
108 | + 'OCA\\Files_External\\Lib\\Storage\\OwnCloud' => __DIR__.'/..'.'/../lib/Lib/Storage/OwnCloud.php', |
|
109 | + 'OCA\\Files_External\\Lib\\Storage\\SFTP' => __DIR__.'/..'.'/../lib/Lib/Storage/SFTP.php', |
|
110 | + 'OCA\\Files_External\\Lib\\Storage\\SFTPReadStream' => __DIR__.'/..'.'/../lib/Lib/Storage/SFTPReadStream.php', |
|
111 | + 'OCA\\Files_External\\Lib\\Storage\\SFTPWriteStream' => __DIR__.'/..'.'/../lib/Lib/Storage/SFTPWriteStream.php', |
|
112 | + 'OCA\\Files_External\\Lib\\Storage\\SMB' => __DIR__.'/..'.'/../lib/Lib/Storage/SMB.php', |
|
113 | + 'OCA\\Files_External\\Lib\\Storage\\StreamWrapper' => __DIR__.'/..'.'/../lib/Lib/Storage/StreamWrapper.php', |
|
114 | + 'OCA\\Files_External\\Lib\\Storage\\Swift' => __DIR__.'/..'.'/../lib/Lib/Storage/Swift.php', |
|
115 | + 'OCA\\Files_External\\Lib\\Storage\\SystemBridge' => __DIR__.'/..'.'/../lib/Lib/Storage/SystemBridge.php', |
|
116 | + 'OCA\\Files_External\\Lib\\VisibilityTrait' => __DIR__.'/..'.'/../lib/Lib/VisibilityTrait.php', |
|
117 | + 'OCA\\Files_External\\Listener\\GroupDeletedListener' => __DIR__.'/..'.'/../lib/Listener/GroupDeletedListener.php', |
|
118 | + 'OCA\\Files_External\\Listener\\LoadAdditionalListener' => __DIR__.'/..'.'/../lib/Listener/LoadAdditionalListener.php', |
|
119 | + 'OCA\\Files_External\\Listener\\StorePasswordListener' => __DIR__.'/..'.'/../lib/Listener/StorePasswordListener.php', |
|
120 | + 'OCA\\Files_External\\Listener\\UserDeletedListener' => __DIR__.'/..'.'/../lib/Listener/UserDeletedListener.php', |
|
121 | + 'OCA\\Files_External\\Migration\\DummyUserSession' => __DIR__.'/..'.'/../lib/Migration/DummyUserSession.php', |
|
122 | + 'OCA\\Files_External\\Migration\\Version1011Date20200630192246' => __DIR__.'/..'.'/../lib/Migration/Version1011Date20200630192246.php', |
|
123 | + 'OCA\\Files_External\\Migration\\Version1015Date20211104103506' => __DIR__.'/..'.'/../lib/Migration/Version1015Date20211104103506.php', |
|
124 | + 'OCA\\Files_External\\Migration\\Version1016Date20220324154536' => __DIR__.'/..'.'/../lib/Migration/Version1016Date20220324154536.php', |
|
125 | + 'OCA\\Files_External\\Migration\\Version22000Date20210216084416' => __DIR__.'/..'.'/../lib/Migration/Version22000Date20210216084416.php', |
|
126 | + 'OCA\\Files_External\\MountConfig' => __DIR__.'/..'.'/../lib/MountConfig.php', |
|
127 | + 'OCA\\Files_External\\NotFoundException' => __DIR__.'/..'.'/../lib/NotFoundException.php', |
|
128 | + 'OCA\\Files_External\\ResponseDefinitions' => __DIR__.'/..'.'/../lib/ResponseDefinitions.php', |
|
129 | + 'OCA\\Files_External\\Service\\BackendService' => __DIR__.'/..'.'/../lib/Service/BackendService.php', |
|
130 | + 'OCA\\Files_External\\Service\\DBConfigService' => __DIR__.'/..'.'/../lib/Service/DBConfigService.php', |
|
131 | + 'OCA\\Files_External\\Service\\GlobalStoragesService' => __DIR__.'/..'.'/../lib/Service/GlobalStoragesService.php', |
|
132 | + 'OCA\\Files_External\\Service\\ImportLegacyStoragesService' => __DIR__.'/..'.'/../lib/Service/ImportLegacyStoragesService.php', |
|
133 | + 'OCA\\Files_External\\Service\\LegacyStoragesService' => __DIR__.'/..'.'/../lib/Service/LegacyStoragesService.php', |
|
134 | + 'OCA\\Files_External\\Service\\StoragesService' => __DIR__.'/..'.'/../lib/Service/StoragesService.php', |
|
135 | + 'OCA\\Files_External\\Service\\UserGlobalStoragesService' => __DIR__.'/..'.'/../lib/Service/UserGlobalStoragesService.php', |
|
136 | + 'OCA\\Files_External\\Service\\UserStoragesService' => __DIR__.'/..'.'/../lib/Service/UserStoragesService.php', |
|
137 | + 'OCA\\Files_External\\Service\\UserTrait' => __DIR__.'/..'.'/../lib/Service/UserTrait.php', |
|
138 | + 'OCA\\Files_External\\Settings\\Admin' => __DIR__.'/..'.'/../lib/Settings/Admin.php', |
|
139 | + 'OCA\\Files_External\\Settings\\Personal' => __DIR__.'/..'.'/../lib/Settings/Personal.php', |
|
140 | + 'OCA\\Files_External\\Settings\\PersonalSection' => __DIR__.'/..'.'/../lib/Settings/PersonalSection.php', |
|
141 | + 'OCA\\Files_External\\Settings\\Section' => __DIR__.'/..'.'/../lib/Settings/Section.php', |
|
142 | 142 | ); |
143 | 143 | |
144 | 144 | public static function getInitializer(ClassLoader $loader) |
145 | 145 | { |
146 | - return \Closure::bind(function () use ($loader) { |
|
146 | + return \Closure::bind(function() use ($loader) { |
|
147 | 147 | $loader->prefixLengthsPsr4 = ComposerStaticInitFiles_External::$prefixLengthsPsr4; |
148 | 148 | $loader->prefixDirsPsr4 = ComposerStaticInitFiles_External::$prefixDirsPsr4; |
149 | 149 | $loader->classMap = ComposerStaticInitFiles_External::$classMap; |