mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-12 18:24:58 +08:00
Refactor function
This commit is contained in:
parent
727800ef2c
commit
ee202b721d
@ -31,7 +31,7 @@
|
|||||||
#include <QClipboard>
|
#include <QClipboard>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QRegExp>
|
#include <QRegularExpression>
|
||||||
#include <QSet>
|
#include <QSet>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
@ -39,6 +39,20 @@
|
|||||||
#include "ui_downloadfromurldialog.h"
|
#include "ui_downloadfromurldialog.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
bool isDownloadable(const QString &str)
|
||||||
|
{
|
||||||
|
return (str.startsWith("http://", Qt::CaseInsensitive)
|
||||||
|
|| str.startsWith("https://", Qt::CaseInsensitive)
|
||||||
|
|| str.startsWith("ftp://", Qt::CaseInsensitive)
|
||||||
|
|| str.startsWith("magnet:", Qt::CaseInsensitive)
|
||||||
|
|| str.startsWith("bc://bt/", Qt::CaseInsensitive)
|
||||||
|
|| ((str.size() == 40) && !str.contains(QRegularExpression("[^0-9A-Fa-f]")))
|
||||||
|
|| ((str.size() == 32) && !str.contains(QRegularExpression("[^2-7A-Za-z]"))));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DownloadFromURLDialog::DownloadFromURLDialog(QWidget *parent)
|
DownloadFromURLDialog::DownloadFromURLDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
, m_ui(new Ui::DownloadFromURLDialog)
|
, m_ui(new Ui::DownloadFromURLDialog)
|
||||||
@ -61,16 +75,9 @@ DownloadFromURLDialog::DownloadFromURLDialog(QWidget *parent)
|
|||||||
str = str.trimmed();
|
str = str.trimmed();
|
||||||
if (str.isEmpty()) continue;
|
if (str.isEmpty()) continue;
|
||||||
|
|
||||||
if (str.startsWith("http://", Qt::CaseInsensitive)
|
if (isDownloadable(str))
|
||||||
|| str.startsWith("https://", Qt::CaseInsensitive)
|
|
||||||
|| str.startsWith("ftp://", Qt::CaseInsensitive)
|
|
||||||
|| str.startsWith("magnet:", Qt::CaseInsensitive)
|
|
||||||
|| str.startsWith("bc://bt/", Qt::CaseInsensitive)
|
|
||||||
|| ((str.size() == 40) && !str.contains(QRegExp("[^0-9A-Fa-f]")))
|
|
||||||
|| ((str.size() == 32) && !str.contains(QRegExp("[^2-7A-Za-z]")))) {
|
|
||||||
uniqueURLs << str;
|
uniqueURLs << str;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
m_ui->textUrls->setText(uniqueURLs.toList().join('\n'));
|
m_ui->textUrls->setText(uniqueURLs.toList().join('\n'));
|
||||||
|
|
||||||
Utils::Gui::resize(this);
|
Utils::Gui::resize(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user