mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 05:48:47 +03:00
commit
a63d4e3400
4 changed files with 24 additions and 13 deletions
BIN
src/Icons/qbittorrent.png
Normal file
BIN
src/Icons/qbittorrent.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
|
@ -1,5 +1,6 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>Icons/qbittorrent.png</file>
|
||||
<file>Icons/3-state-checkbox.gif</file>
|
||||
<file>Icons/L.gif</file>
|
||||
<file>Icons/loading.png</file>
|
||||
|
|
|
@ -38,22 +38,25 @@
|
|||
AbstractRequestHandler::AbstractRequestHandler(const HttpRequest &request, const HttpEnvironment &env, WebApplication *app)
|
||||
: app_(app), session_(0), request_(request), env_(env)
|
||||
{
|
||||
if (isBanned())
|
||||
{
|
||||
status(403, "Forbidden");
|
||||
print(QObject::tr("Your IP address has been banned after too many failed authentication attempts."));
|
||||
return;
|
||||
}
|
||||
|
||||
sessionInitialize();
|
||||
|
||||
if (!sessionActive() && !isAuthNeeded()) sessionStart();
|
||||
if (!sessionActive() && !isAuthNeeded())
|
||||
sessionStart();
|
||||
}
|
||||
|
||||
HttpResponse AbstractRequestHandler::run()
|
||||
{
|
||||
response_ = HttpResponse();
|
||||
processRequest();
|
||||
|
||||
if (isBanned())
|
||||
{
|
||||
status(403, "Forbidden");
|
||||
print(QObject::tr("Your IP address has been banned after too many failed authentication attempts."));
|
||||
}
|
||||
else
|
||||
{
|
||||
processRequest();
|
||||
}
|
||||
|
||||
return response_;
|
||||
}
|
||||
|
||||
|
|
|
@ -20,8 +20,15 @@
|
|||
url: '/login',
|
||||
method: 'post',
|
||||
data: $('loginform').toQueryString(),
|
||||
onFailure: function() {
|
||||
alert("_(Unable to log in, qBittorrent is probably unreachable.)");
|
||||
onComplete: function() {
|
||||
$('password').set('value', '');
|
||||
},
|
||||
onFailure: function(xhr) {
|
||||
if (xhr.responseText != "") {
|
||||
$('error_msg').set('html', xhr.responseText);
|
||||
} else {
|
||||
$('error_msg').set('html', '_(Unable to log in, qBittorrent is probably unreachable.)');
|
||||
}
|
||||
},
|
||||
onSuccess: function(text) {
|
||||
if (text == "Ok.") {
|
||||
|
@ -61,7 +68,7 @@
|
|||
<div id="main">
|
||||
<h1>_(qBittorrent web User Interface)</h1>
|
||||
<div id="logo" class="col">
|
||||
<img src="images/skin/mascot.png" />
|
||||
<img src="images/qbittorrent.png" />
|
||||
</div>
|
||||
<div id="formplace" class="col">
|
||||
<form id="loginform" action="">
|
||||
|
|
Loading…
Reference in a new issue