/* This file is part of the KDE project Copyright (C) 2000, 2010 David Faure Copyright (C) 2002-2003 Alexander Kellett This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 or at your option version 3 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ // Own #include "testlink.h" // KDE #include #include // Local #include "kbookmarkmodel/commands.h" #include "bookmarkiterator.h" #include "kbookmarkmodel/model.h" TestLinkItrHolder::TestLinkItrHolder(QObject* parent, KBookmarkModel* model) : BookmarkIteratorHolder(parent, model) { } /* -------------------------- */ TestLinkItr::TestLinkItr(BookmarkIteratorHolder* holder, const QList& bks) : BookmarkIterator(holder, bks), m_job(0) { } TestLinkItr::~TestLinkItr() { if (m_job) { // kDebug() << "JOB kill\n"; m_job->disconnect(this); m_job->kill(); } } void TestLinkItr::setStatus(const QString & text) { currentBookmark().setMetaDataItem("linkstate", text); model()->emitDataChanged(currentBookmark()); } bool TestLinkItr::isApplicable(const KBookmark &bk) const { return !bk.isGroup() && !bk.isSeparator(); } void TestLinkItr::doAction() { kDebug(); m_job = KIO::get(currentBookmark().url(), KIO::Reload, KIO::HideProgressInfo); m_job->addMetaData( QString("cookies"), QString("none") ); m_job->addMetaData( QString("errorPage"), QString("false") ); connect(m_job, SIGNAL(result(KJob*)), this, SLOT(slotJobResult(KJob*))); m_oldStatus = currentBookmark().metaDataItem("linkstate"); setStatus(i18n("Checking...")); } void TestLinkItr::slotJobResult(KJob *job) { kDebug(); m_job = 0; KIO::TransferJob *transfer = static_cast(job); const QString modDate = transfer->queryMetaData("modified"); if (transfer->error() || transfer->isErrorPage()) { kDebug()<<"***********"<error()<<" "<isErrorPage()<errorString(); err.replace("\n", " "); setStatus(err); } else { if (!modDate.isEmpty()) setStatus(modDate); else setStatus(i18n("OK")); } holder()->addAffectedBookmark(KBookmark::parentAddress(currentBookmark().address())); delayedEmitNextOne(); } void TestLinkItr::cancel() { setStatus(m_oldStatus); } #include "testlink.moc"