summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/Connection.php
diff options
context:
space:
mode:
authorJarkko Lehtoranta <devel@jlranta.com>2017-07-16 13:05:48 +0300
committerJarkko Lehtoranta <devel@jlranta.com>2017-07-23 14:50:01 +0300
commit6103677a910f6dbb6685019abcaba853611b86ea (patch)
treed2f913369fcf1767e41a3c31e773cbd4e9518142 /apps/user_ldap/lib/Connection.php
parent79fbed40649744c862c9f5c1e435c624bef9521b (diff)
downloadnextcloud-server-6103677a910f6dbb6685019abcaba853611b86ea.tar.gz
nextcloud-server-6103677a910f6dbb6685019abcaba853611b86ea.zip
LDAP: Use imported exception in Connection class
Signed-off-by: Jarkko Lehtoranta <devel@jlranta.com>
Diffstat (limited to 'apps/user_ldap/lib/Connection.php')
-rw-r--r--apps/user_ldap/lib/Connection.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php
index 799e63f268e..8f80e2905c3 100644
--- a/apps/user_ldap/lib/Connection.php
+++ b/apps/user_ldap/lib/Connection.php
@@ -543,7 +543,7 @@ class Connection extends LDAPUtility {
if($bindStatus === true) {
return $bindStatus;
}
- } catch (\OC\ServerNotAvailableException $e) {
+ } catch (ServerNotAvailableException $e) {
if(trim($this->configuration->ldapBackupHost) === "") {
throw $e;
}
@@ -586,16 +586,16 @@ class Connection extends LDAPUtility {
$this->ldapConnectionRes = $this->ldap->connect($host, $port);
if(!$this->ldap->setOption($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) {
- throw new \OC\ServerNotAvailableException('Could not set required LDAP Protocol version.');
+ throw new ServerNotAvailableException('Could not set required LDAP Protocol version.');
}
if(!$this->ldap->setOption($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) {
- throw new \OC\ServerNotAvailableException('Could not disable LDAP referrals.');
+ throw new ServerNotAvailableException('Could not disable LDAP referrals.');
}
if($this->configuration->ldapTLS) {
if(!$this->ldap->startTls($this->ldapConnectionRes)) {
- throw new \OC\ServerNotAvailableException('Start TLS failed, when connecting to LDAP host ' . $host . '.');
+ throw new ServerNotAvailableException('Start TLS failed, when connecting to LDAP host ' . $host . '.');
}
}
ding */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
OC.L10N.register(
    "files",
    {
    "Storage is temporarily not available" : "Временно хранилището не е налично.",
    "Storage invalid" : "Невалидно хранилище.",
    "Unknown error" : "Неизвестна грешка",
    "Files" : "Файлове",
    "All files" : "Всички файлове",
    "Home" : "Домашен",
    "Close" : "Затвори",
    "Favorites" : "Любими",
    "Could not create folder \"{dir}\"" : "Папката \"{dir}\" не може да бъде създадена",
    "Upload cancelled." : "Качването е прекъснато.",
    "Unable to upload {filename} as it is a directory or has 0 bytes" : "Неуспешно качване на {filename}, защото е директория или с размер 0 байта.",
    "Not enough free space, you are uploading {size1} but only {size2} is left" : "Няма достатъчно свободно място. Опитвате да качите {size1} при свободни само {size2}",
    "Not enough free space" : "Няма достатъчно свободно място",
    "Uploading..." : "Качване...",
    "..." : "...",
    "Any moment now..." : "Всеки момент...",
    "Soon..." : "Скоро...",
    "File upload is in progress. Leaving the page now will cancel the upload." : "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.",
    "Actions" : "Действия",
    "Download" : "Изтегли",
    "Rename" : "Преименуване",
    "Move" : "Преместване",
    "Delete" : "Изтриване",
    "Disconnect storage" : "Извади хранилището",
    "Unshare" : "Прекратяване на споделяне",
    "Details" : "Детайли",
    "Select" : "Избери",
    "Pending" : "Чакащо",
    "Unable to determine date" : "Неуспешно установяване на дата",
    "This operation is forbidden" : "Операцията е забранена",
    "This directory is unavailable, please check the logs or contact the administrator" : "Директорията не е налична. Проверете журнала или се свържете с администратора",
    "Could not move \"{file}\", target exists" : "Файлът \"{file}\" не може да бъде преместен защото съществува в дестинацията",
    "Could not move \"{file}\"" : "Файлът \"{file}\" не може да бъде преместен",
    "{newName} already exists" : "{newName} вече съществува",
    "Could not rename \"{fileName}\", it does not exist any more" : "Файлът \"{fileName}\" не може да бъде преименуван защото не съществува",
    "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Името \"{targetName}\" вече се ползва от директория \"{dir}\". Моля, изберете друго име.",
    "Could not rename \"{fileName}\"" : "\"{fileName}\" не може да бъде преименуван",
    "Could not create file \"{file}\"" : "Файлът \"{file}\" не може да бъде създаден",
    "Could not create file \"{file}\" because it already exists" : "Файлът \"{file}\" не може да бъде създаден защото вече съществува",
    "Could not create folder \"{dir}\" because it already exists" : "Папката \"{dir}\" не може да бъде създадена защото вече съществува",
    "Error deleting file \"{fileName}\"." : "Грешка при изтриването на файла \"{fileName}\".",
    "Name" : "Име",
    "Size" : "Размер",
    "Modified" : "Променен на",
    "_%n folder_::_%n folders_" : ["%n папка","%n папки"],
    "_%n file_::_%n files_" : ["%n файл","%n файла"],
    "{dirs} and {files}" : "{dirs} и {files}",
    "_including %n hidden_::_including %n hidden_" : ["включително %n скрит","включително %n скрити"],
    "You don’t have permission to upload or create files here" : "Нямаш разрешение да създаваш или качваш файлове тук.",
    "_Uploading %n file_::_Uploading %n files_" : ["Качване на %n файл","Качване на %n файла."],
    "New" : "Създай",
    "\"{name}\" is an invalid file name." : "\"{name}\" е непозволено име за файл.",
    "File name cannot be empty." : "Името на файла не може да бъде оставено празно.",
    "Storage of {owner} is full, files can not be updated or synced anymore!" : "Хранилището на {owner} е запълнено. Поради това качването и синхронизирането на файлове е невъзможно!",
    "Your storage is full, files can not be updated or synced anymore!" : "Хранилището е запълнено. Поради това качването и синхронизирането на файлове е невъзможно!",
    "Storage of {owner} is almost full ({usedSpacePercent}%)" : "Хранилището на {owner} е почти запълнено ({usedSpacePercent}%)",
    "Your storage is almost full ({usedSpacePercent}%)" : "Вашето хранилище е почти запълнено ({usedSpacePercent}%).",
    "_matches '{filter}'_::_match '{filter}'_" : ["пасва на '{filter}'","пасват на '{filter}'\n "],
    "Path" : "Път",
    "_%n byte_::_%n bytes_" : ["%n байт","%n байта"],
    "Favorited" : "Отбелязано в любими",
    "Favorite" : "Любими",
    "Folder" : "Папка",
    "New folder" : "Нова папка",
    "Upload" : "Качване",
    "An error occurred while trying to update the tags" : "Възникна грешка при опита за промяна на етикети",
    "Created by %s" : "Създаден от %s",
    "Created by {user1}" : "Създаден от {user1}",
    "Changed by %2$s" : "Променен от %2$s",
    "Changed by {user1}" : "Променен от {user1}",
    "Deleted by %2$s" : "Изтрит от %2$s",
    "Deleted by {user1}" : "Изтрит от {user1}",
    "Restored by %2$s" : "Възстанвен от %2$s",
    "Restored by {user1}" : "Възстановен от {user1}",
    "Renamed by %2$s" : "Преимеуван от %2$s",
    "Renamed by {user1}" : "Преименуван от {user1}",
    "Moved by %2$s" : "Преместен от %2$s",
    "Moved by {user1}" : "Преместен от {user1}",
    "You created %1$s" : "Вие създадохте %1$s",
    "You created {file1}" : "Вие създадохте {file1}",
    "%2$s created %1$s" : "%2$s създаде %1$s",
    "{user1} created {file1}" : "{user1} създаде {file1}",
    "%1$s was created in a public folder" : "%1$s е създаден в публична папка",
    "You changed %1$s" : "Вие променихте %1$s",
    "You changed {file1}" : "Вие променихте {file1}",
    "%2$s changed %1$s" : "%2$s промени %1$s",
    "{user1} changed {file1}" : "{user1} промени {file1}",
    "You deleted %1$s" : "Вие изтрихте %1$s",
    "You deleted {file1}" : "Вие променихте {file1}",
    "%2$s deleted %1$s" : "%2$s изтри %1$s.",
    "{user1} deleted {file1}" : "{user1} изтри {file1}",
    "You restored %1$s" : "Вие възстановихте %1$s",
    "You restored {file1}" : "Вие възстановихте {file1}",
    "%2$s restored %1$s" : "%2$s възстанови %1$s",
    "{user1} restored {file1}" : "{user1} възстанови {file1}",
    "You renamed %2$s to %1$s" : "Вие преименувахте %2$s на %1$s",
    "You renamed {file2} to {file1}" : "Вие преименувахте {file2} на {file1}",
    "%2$s renamed %3$s to %1$s" : "%2$s преименува %3$s на %1$s",
    "{user1} renamed {file2} to {file1}" : "{user1} преименува {file2} на {file1}",
    "You moved %2$s to %1$s" : "Вие преместихте %2$s в %1$s",
    "You moved {file2} to {file1}" : "Вие преместихте {file2} в {file1}",
    "%2$s moved %3$s to %1$s" : "%2$s премести %3$s в %1$s",
    "{user1} moved {file2} to {file1}" : "{user1} премести {file2} в {file1}",
    "A file or folder has been <strong>changed</strong> or <strong>renamed</strong>" : "<strong>Промяна</strong> или <strong>преименуване</strong> на файл / папка",
    "A new file or folder has been <strong>created</strong>" : "<strong>Създаване</strong> на нов файл / папка",
    "Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Изпращай известия само при създаване / промяна на <strong>любими файлове</strong> <em>(Само за потока)</em>",
    "Upload (max. %s)" : "Качи (макс. %s)",
    "File handling" : "Операция с файла",
    "Maximum upload size" : "Максимален размер",
    "max. possible: " : "максимално:",
    "Save" : "Запис",
    "With PHP-FPM it might take 5 minutes for changes to be applied." : "Ако ползвате PHP-FPM прилагането на една промяна може да отнеме 5 минути.",
    "Settings" : "Настройки",
    "Show hidden files" : "Показвай и скрити файлове",
    "WebDAV" : "WebDAV",
    "Use this address to <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">access your Files via WebDAV</a>" : "Ползвайте горния адрес <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">за да достъпите файловете чрез WebDAV</a>",
    "No files in here" : "Тук няма файлове",
    "Upload some content or sync with your devices!" : "Качи съдържание или синхронизирай с твоите устройства!",
    "No entries found in this folder" : "Няма намерени записи в тази папка",
    "Select all" : "Избери всички",
    "Upload too large" : "Прекалено голям файл за качване.",
    "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Файловете, които се опитвате да качите са по-големи от позволеното на сървъра.",
    "No favorites" : "Няма любими",
    "Files and folders you mark as favorite will show up here" : "Файловете и папките които отбелязваш като любими ще се показват тук",
    "Shared with you" : "Споделено с вас",
    "Shared with others" : "Споделено с други",
    "Shared by link" : "Споделено с връзка",
    "Tags" : "Етикети",
    "Deleted files" : "Изтрити файлове",
    "Text file" : "Текстов файл",
    "New text file.txt" : "Нов текст file.txt",
    "Storage not available" : "Хранилището не е налично",
    "Unable to set upload directory." : "Неуспешно задаване на директория за качване.",
    "Invalid Token" : "Невалиеден токен",
    "No file was uploaded. Unknown error" : "Нито един файл не е качен. Неизвестна грешка",
    "There is no error, the file uploaded with success" : "Файлът е качен успешно.",
    "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Размерът на файла надвишава максималния размер определен от upload_max_filesize в php.ini:",
    "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
    "The uploaded file was only partially uploaded" : "Файлът е качен частично",
    "No file was uploaded" : "Файлът не е качен",
    "Missing a temporary folder" : "Липсва временна папка",
    "Failed to write to disk" : "Възникна проблем при запис на диска",
    "Not enough storage available" : "Недостатъчно място в хранилището",
    "The target folder has been moved or deleted." : "Крайната папка е изтрита или преместена.",
    "Upload failed. Could not find uploaded file" : "Неуспешно качване. Качения файл не е намерен",
    "Upload failed. Could not get file info." : "Неуспешно качване. Не се получи информация за файла.",
    "Invalid directory." : "Невалидна директория.",
    "Total file size {size1} exceeds upload limit {size2}" : "Общия размер {size1} надминава лимита за качване {size2}.",
    "Error uploading file \"{fileName}\": {message}" : "Грешка при качването на файла \"{fileName}\": {message}",
    "Could not get result from server." : "Не се получи резултат от сървърът.",
    "No entries in this folder match '{filter}'" : "Нищо в тази папка не пасва на '{filter}'",
    "{newname} already exists" : "{newname} вече съществува",
    "A file or folder has been <strong>changed</strong>" : "<strong>Промяна</strong> на файл / папка",
    "A file or folder has been <strong>deleted</strong>" : "<strong>Изтриване</strong> на файл / папка",
    "A file or folder has been <strong>restored</strong>" : "<strong>Възстановяване</strong> на на файл / папка",
    "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Ползвайте следния адрес <a href=\"%s\" target=\"_blank\">за да достъпите файловете чрез WebDAV</a>",
    "Cancel upload" : "Прекрати качването"
},
"nplurals=2; plural=(n != 1);");