kde-extraapps/kget/transfer-plugins/kio/transferKioFactory.cpp
Ivailo Monev a6eaf629e1 kget: remove redundant debug area codes
already defaulting to it by defining KDE_DEFAULT_DEBUG_AREA

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-21 02:47:50 +03:00

57 lines
1.5 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
*/
#include "transferKioFactory.h"
#include "core/scheduler.h"
#include "core/transfergroup.h"
#include "transferKio.h"
#include <kprotocolinfo.h>
#include <kdebug.h>
KGET_EXPORT_PLUGIN( TransferKioFactory )
TransferKioFactory::TransferKioFactory(QObject *parent, const QVariantList &args)
: TransferFactory(parent, args)
{
}
TransferKioFactory::~TransferKioFactory()
{
}
Transfer * TransferKioFactory::createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
TransferGroup * parent,
Scheduler * scheduler)
{
kDebug() << "TransferKioFactory::createTransfer";
if (isSupported(srcUrl)) {
return new TransferKio(parent, this, scheduler, srcUrl, destUrl);
}
return 0;
}
bool TransferKioFactory::isSupported(const KUrl &url) const
{
QString prot = url.protocol();
kDebug() << "Protocol = " << prot;
return addsProtocols().contains(prot);
}
QStringList TransferKioFactory::addsProtocols() const
{
QStringList protocols = QStringList() << "http" << "https" << "ftp";
if (KProtocolInfo::isKnownProtocol("sftp")) {
protocols << "sftp";
}
return protocols;
}