mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Refactor function
This commit is contained in:
parent
727800ef2c
commit
ee202b721d
@ -31,7 +31,7 @@
|
||||
#include <QClipboard>
|
||||
#include <QMessageBox>
|
||||
#include <QPushButton>
|
||||
#include <QRegExp>
|
||||
#include <QRegularExpression>
|
||||
#include <QSet>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
@ -39,6 +39,20 @@
|
||||
#include "ui_downloadfromurldialog.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)
|
||||
: QDialog(parent)
|
||||
, m_ui(new Ui::DownloadFromURLDialog)
|
||||
@ -61,15 +75,8 @@ DownloadFromURLDialog::DownloadFromURLDialog(QWidget *parent)
|
||||
str = str.trimmed();
|
||||
if (str.isEmpty()) continue;
|
||||
|
||||
if (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(QRegExp("[^0-9A-Fa-f]")))
|
||||
|| ((str.size() == 32) && !str.contains(QRegExp("[^2-7A-Za-z]")))) {
|
||||
if (isDownloadable(str))
|
||||
uniqueURLs << str;
|
||||
}
|
||||
}
|
||||
m_ui->textUrls->setText(uniqueURLs.toList().join('\n'));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user