Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/WOPI/DiscoveryManager.php')
-rw-r--r--lib/WOPI/DiscoveryManager.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/WOPI/DiscoveryManager.php b/lib/WOPI/DiscoveryManager.php
index 585a0c76..5a2fd057 100644
--- a/lib/WOPI/DiscoveryManager.php
+++ b/lib/WOPI/DiscoveryManager.php
@@ -77,6 +77,35 @@ class DiscoveryManager {
$options['verify'] = false;
}
+ // first load with proxy can take some time - increase timeout in that case
+ $usesProxy = false;
+ $proxyPos = strrpos($wopiDiscovery, 'proxy.php');
+ if ($proxyPos === false)
+ $usesProxy = false;
+ else
+ $usesProxy = true;
+
+ if ($usesProxy === true) {
+ $statusUrl = substr($wopiDiscovery, 0, $proxyPos);
+ $statusUrl = $statusUrl . 'proxy.php?status';
+
+ try {
+ $response = $client->get($statusUrl, $options);
+
+ if ($response->getStatusCode() === 200) {
+ $body = json_decode($response->getBody(), true);
+
+ if ($body['status'] === 'starting'
+ || $body['status'] === 'stopped'
+ || $body['status'] === 'restarting') {
+ $options['timeout'] = 180;
+ }
+ }
+ } catch (\Exception $e) {
+ // ignore
+ }
+ }
+
try {
return $client->get($wopiDiscovery, $options);
} catch (\Exception $e) {