Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
catch cUrl error code 6
Browse files Browse the repository at this point in the history
ssrahn committed Nov 1, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 41f23b2 commit 39a2e4d
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions lib/Models/Config.php
Original file line number Diff line number Diff line change
@@ -189,21 +189,32 @@ public function updateEndpoints($container)
$comp = $services_client->getRESTComponents();
}
catch(\Exception $e) {
return [
'type' => 'error',
'text' => sprintf(
_('%s'),
$e->getMessage()
)
];
if (str_starts_with($e->getMessage(), 'cURL error 6')) {
return [
'type' => 'error',
'text' => sprintf(
_('Die angegebene URL %s konnte nicht gefunden werden. Überprüfen Sie bitte ihre Eingabe und versuchen Sie es erneut.'),
$service_host
)
];
}
else {
return [
'type' => 'error',
'text' => sprintf(
_('%s'),
$e->getMessage()
)
];
}
}
} catch (AccessDeniedException $e) {
Endpoints::removeEndpoint($this->id, 'services');

$message = [
'type' => 'error',
'text' => sprintf(
_('Fehlerhafte Zugangsdaten für die Opencast Installation mit der URL "%s". Überprüfen Sie bitte die eingebenen Daten.'),
_('Fehlerhafte Zugangsdaten für die Opencast Installation mit der URL "%s". Überprüfen Sie bitte die eingegebenen Daten.'),
$service_host
)
];

0 comments on commit 39a2e4d

Please sign in to comment.