mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
188 lines
4.4 KiB
C++
188 lines
4.4 KiB
C++
/*
|
|
Copyright ( C ) 2002 Rik Hemsley ( rikkus ) <rik@kde.org>
|
|
Copyright ( C ) 2002 Benjamin Meyer <ben-devel@meyerhome.net>
|
|
Copyright ( C ) 2002 Nadeem Hasan <nhasan@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or ( at your option ) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "httplookup.h"
|
|
|
|
#include <kio/job.h>
|
|
#include <kdebug.h>
|
|
|
|
namespace KCDDB
|
|
{
|
|
HTTPLookup::HTTPLookup()
|
|
: Lookup(),
|
|
block_( true ), state_( Idle ), result_( Success )
|
|
{
|
|
}
|
|
|
|
HTTPLookup::~HTTPLookup()
|
|
{
|
|
}
|
|
|
|
Result
|
|
HTTPLookup::sendQuery()
|
|
{
|
|
QString cmd = QString::fromLatin1( "cddb query %1 %2" )
|
|
.arg( trackOffsetListToId(), trackOffsetListToString() ) ;
|
|
|
|
makeURL( cmd );
|
|
Result result = fetchURL();
|
|
|
|
return result;
|
|
}
|
|
|
|
Result
|
|
HTTPLookup::sendRead( const CDDBMatch & match )
|
|
{
|
|
category_ = match.first;
|
|
discid_ = match.second;
|
|
|
|
QString cmd = QString::fromLatin1( "cddb read %1 %2" )
|
|
.arg( category_, discid_ );
|
|
|
|
makeURL( cmd );
|
|
Result result = fetchURL();
|
|
|
|
return result;
|
|
}
|
|
|
|
void
|
|
HTTPLookup::initURL( const QString & hostName, uint port )
|
|
{
|
|
cgiURL_.setProtocol( QLatin1String( "http" ) );
|
|
cgiURL_.setHost( hostName );
|
|
cgiURL_.setPort( port );
|
|
cgiURL_.setPath( QLatin1String( "/~cddb/cddb.cgi" ) );
|
|
|
|
return;
|
|
}
|
|
|
|
void
|
|
HTTPLookup::makeURL( const QString & cmd )
|
|
{
|
|
// The whole query has to constructed each time as the
|
|
// CDDB CGI script expects the parameters in strict order
|
|
|
|
cgiURL_.setQuery( QString() );
|
|
|
|
QString hello = QString::fromLatin1("%1 %2 %3 %4")
|
|
.arg(user_, localHostName_, clientName(), clientVersion());
|
|
|
|
cgiURL_.addQueryItem( QLatin1String( "cmd" ), cmd );
|
|
cgiURL_.addQueryItem( QLatin1String( "hello" ), hello );
|
|
cgiURL_.addQueryItem( QLatin1String( "proto" ), QLatin1String( "6" ) );
|
|
}
|
|
|
|
void
|
|
HTTPLookup::jobFinished()
|
|
{
|
|
QStringList lineList = QString::fromUtf8(data_, data_.size()).split( QLatin1String( "\n" ), QString::SkipEmptyParts );
|
|
QStringList::ConstIterator it = lineList.constBegin();
|
|
|
|
switch ( state_ )
|
|
{
|
|
case WaitingForQueryResponse:
|
|
|
|
if ( it != lineList.constEnd() )
|
|
{
|
|
QString line( *it );
|
|
|
|
result_ = parseQuery( line );
|
|
|
|
switch ( result_ )
|
|
{
|
|
case Success:
|
|
|
|
if ( !block_ )
|
|
emit queryReady();
|
|
break;
|
|
|
|
case MultipleRecordFound:
|
|
|
|
++it;
|
|
while ( it != lineList.constEnd() )
|
|
{
|
|
QString line( *it );
|
|
|
|
if ( QLatin1Char( '.' ) == line[ 0 ] )
|
|
{
|
|
result_ = Success;
|
|
|
|
if ( !block_ )
|
|
emit queryReady();
|
|
break;
|
|
}
|
|
|
|
parseExtraMatch( line );
|
|
++it;
|
|
}
|
|
|
|
break;
|
|
|
|
case ServerError:
|
|
case NoRecordFound:
|
|
if ( !block_ )
|
|
emit queryReady();
|
|
|
|
return;
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WaitingForReadResponse:
|
|
|
|
{
|
|
CDInfo info;
|
|
|
|
if ( info.load( QString::fromUtf8(data_,data_.size()) ) )
|
|
{
|
|
info.set( QLatin1String( "category" ), category_ );
|
|
info.set( QLatin1String( "discid" ), discid_ );
|
|
info.set( QLatin1String( "source" ), QLatin1String( "freedb" ) );
|
|
cdInfoList_.append( info );
|
|
}
|
|
|
|
if ( !block_ )
|
|
emit readReady();
|
|
}
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
}
|
|
|
|
result_ = Success;
|
|
}
|
|
}
|
|
|
|
#include "moc_httplookup.cpp"
|
|
|
|
// vim:tabstop=2:shiftwidth=2:expandtab:cinoptions=(s,U1,m1
|