2008-05-12 00:41:55 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.com>
|
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-05-28 17:17:12 +00:00
|
|
|
* $Id$
|
2008-05-12 00:41:55 +00:00
|
|
|
*/
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
#include <assert.h>
|
2008-05-18 16:44:30 +00:00
|
|
|
#include <ctype.h> /* isdigit */
|
|
|
|
#include <stdlib.h> /* strtol */
|
2008-05-12 13:05:06 +00:00
|
|
|
#include <string.h> /* strcmp */
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
#include "bencode.h"
|
2008-06-16 03:47:50 +00:00
|
|
|
#include "ratecontrol.h"
|
2008-05-12 23:51:17 +00:00
|
|
|
#include "rpc.h"
|
2008-06-16 22:11:50 +00:00
|
|
|
#include "rpc-utils.h"
|
2008-05-13 12:52:58 +00:00
|
|
|
#include "json.h"
|
2008-05-18 16:44:30 +00:00
|
|
|
#include "session.h"
|
2008-05-12 00:41:55 +00:00
|
|
|
#include "torrent.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
#define TR_N_ELEMENTS( ary ) ( sizeof( ary ) / sizeof( *ary ) )
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
static void
|
|
|
|
notify( tr_handle * session, int type, tr_torrent * tor )
|
|
|
|
{
|
|
|
|
if( session->rpc_func != NULL )
|
|
|
|
session->rpc_func( session, type, tor, session->rpc_func_user_data );
|
|
|
|
}
|
2008-05-12 13:05:06 +00:00
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
static tr_torrent **
|
|
|
|
getTorrents( tr_handle * handle, tr_benc * args, int * setmeCount )
|
|
|
|
{
|
2008-06-16 22:11:50 +00:00
|
|
|
int method;
|
|
|
|
int torrentCount = 0;
|
2008-05-18 16:44:30 +00:00
|
|
|
int64_t id;
|
2008-06-16 22:11:50 +00:00
|
|
|
int64_t sortAscending;
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_torrent ** torrents = NULL;
|
2008-06-16 22:11:50 +00:00
|
|
|
const char * str;
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_benc * ids;
|
|
|
|
|
2008-06-16 22:11:50 +00:00
|
|
|
/***
|
|
|
|
**** Build the array of torrents
|
|
|
|
***/
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
if( tr_bencDictFindList( args, "ids", &ids ) )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const int n = tr_bencListSize( ids );
|
|
|
|
|
|
|
|
torrents = tr_new0( tr_torrent*, n );
|
|
|
|
|
|
|
|
for( i=0; i<n; ++i )
|
|
|
|
{
|
|
|
|
tr_torrent * tor = NULL;
|
|
|
|
tr_benc * node = tr_bencListChild( ids, i );
|
|
|
|
int64_t id;
|
|
|
|
const char * str;
|
|
|
|
if( tr_bencGetInt( node, &id ) )
|
|
|
|
tor = tr_torrentFindFromId( handle, id );
|
|
|
|
else if( tr_bencGetStr( node, &str ) )
|
|
|
|
tor = tr_torrentFindFromHashString( handle, str );
|
|
|
|
if( tor )
|
|
|
|
torrents[torrentCount++] = tor;
|
|
|
|
}
|
|
|
|
}
|
2008-05-18 16:44:30 +00:00
|
|
|
else if( tr_bencDictFindInt( args, "ids", &id )
|
|
|
|
|| tr_bencDictFindInt( args, "id", &id ) )
|
|
|
|
{
|
|
|
|
tr_torrent * tor;
|
|
|
|
torrents = tr_new0( tr_torrent*, 1 );
|
|
|
|
if(( tor = tr_torrentFindFromId( handle, id )))
|
|
|
|
torrents[torrentCount++] = tor;
|
|
|
|
}
|
2008-05-12 00:41:55 +00:00
|
|
|
else /* all of them */
|
|
|
|
{
|
|
|
|
tr_torrent * tor = NULL;
|
2008-05-22 20:44:41 +00:00
|
|
|
const int n = tr_sessionCountTorrents( handle );
|
2008-05-12 00:41:55 +00:00
|
|
|
torrents = tr_new0( tr_torrent*, n );
|
|
|
|
while(( tor = tr_torrentNext( handle, tor )))
|
|
|
|
torrents[torrentCount++] = tor;
|
|
|
|
}
|
|
|
|
|
2008-06-16 22:11:50 +00:00
|
|
|
/***
|
|
|
|
**** filter the torrents
|
|
|
|
***/
|
|
|
|
|
|
|
|
method = TR_FILTER_ALL;
|
|
|
|
if( tr_bencDictFindStr( args, "filter", &str ) ) {
|
|
|
|
if( !strcmp( str, "active" ) ) method = TR_FILTER_ACTIVE;
|
|
|
|
else if( !strcmp( str, "downloading" ) ) method = TR_FILTER_DOWNLOADING;
|
|
|
|
else if( !strcmp( str, "paused" ) ) method = TR_FILTER_PAUSED;
|
|
|
|
else if( !strcmp( str, "seeding" ) ) method = TR_FILTER_SEEDING;
|
|
|
|
}
|
|
|
|
if( method != TR_FILTER_ALL )
|
|
|
|
tr_torrentFilter( torrents, &torrentCount, method );
|
|
|
|
|
|
|
|
/***
|
|
|
|
**** sort the torrents
|
|
|
|
***/
|
|
|
|
|
|
|
|
method = TR_SORT_ID;
|
|
|
|
sortAscending = 1;
|
2008-06-17 16:25:13 +00:00
|
|
|
tr_bencDictFindInt( args, "ascending", &sortAscending );
|
2008-06-16 22:11:50 +00:00
|
|
|
if( tr_bencDictFindStr( args, "sort", &str ) ) {
|
|
|
|
if( !strcmp( str, "activity" ) ) method = TR_SORT_ACTIVITY;
|
|
|
|
else if( !strcmp( str, "age" ) ) method = TR_SORT_AGE;
|
|
|
|
else if( !strcmp( str, "name" ) ) method = TR_SORT_NAME;
|
|
|
|
else if( !strcmp( str, "progress" ) ) method = TR_SORT_PROGRESS;
|
|
|
|
else if( !strcmp( str, "ratio" ) ) method = TR_SORT_RATIO;
|
|
|
|
else if( !strcmp( str, "state" ) ) method = TR_SORT_STATE;
|
|
|
|
else if( !strcmp( str, "tracker" ) ) method = TR_SORT_TRACKER;
|
|
|
|
}
|
|
|
|
tr_torrentSort( torrents, torrentCount, method, sortAscending!=0 );
|
|
|
|
|
|
|
|
/***
|
|
|
|
**** return the results
|
|
|
|
***/
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
*setmeCount = torrentCount;
|
|
|
|
return torrents;
|
|
|
|
}
|
2008-05-12 13:05:06 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
static const char*
|
|
|
|
torrentStart( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
|
|
|
int i, torrentCount;
|
2008-05-12 13:05:06 +00:00
|
|
|
tr_torrent ** torrents = getTorrents( h, args_in, &torrentCount );
|
2008-05-12 00:41:55 +00:00
|
|
|
for( i=0; i<torrentCount; ++i )
|
2008-05-18 16:44:30 +00:00
|
|
|
{
|
|
|
|
tr_torrent * tor = torrents[i];
|
|
|
|
tr_torrentStart( tor );
|
|
|
|
notify( h, TR_RPC_TORRENT_STARTED, tor );
|
|
|
|
}
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_free( torrents );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char*
|
2008-05-12 13:05:06 +00:00
|
|
|
torrentStop( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-18 16:44:30 +00:00
|
|
|
int i, torrentCount;
|
|
|
|
tr_torrent ** torrents = getTorrents( h, args_in, &torrentCount );
|
|
|
|
for( i=0; i<torrentCount; ++i )
|
|
|
|
{
|
|
|
|
tr_torrent * tor = torrents[i];
|
|
|
|
tr_torrentStop( tor );
|
|
|
|
notify( h, TR_RPC_TORRENT_STOPPED, tor );
|
|
|
|
}
|
|
|
|
tr_free( torrents );
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-20 23:58:59 +00:00
|
|
|
static const char*
|
|
|
|
torrentRemove( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
|
|
|
{
|
|
|
|
int i, torrentCount;
|
|
|
|
tr_torrent ** torrents = getTorrents( h, args_in, &torrentCount );
|
|
|
|
for( i=0; i<torrentCount; ++i )
|
|
|
|
{
|
|
|
|
tr_torrent * tor = torrents[i];
|
|
|
|
notify( h, TR_RPC_TORRENT_REMOVING, tor );
|
|
|
|
tr_torrentRemove( tor );
|
|
|
|
}
|
|
|
|
tr_free( torrents );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static const char*
|
2008-05-12 13:05:06 +00:00
|
|
|
torrentVerify( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-18 16:44:30 +00:00
|
|
|
int i, torrentCount;
|
|
|
|
tr_torrent ** torrents = getTorrents( h, args_in, &torrentCount );
|
|
|
|
for( i=0; i<torrentCount; ++i )
|
|
|
|
{
|
|
|
|
tr_torrent * tor = torrents[i];
|
|
|
|
tr_torrentVerify( tor );
|
|
|
|
notify( h, TR_RPC_TORRENT_CHANGED, tor );
|
|
|
|
}
|
|
|
|
tr_free( torrents );
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static void
|
|
|
|
addFiles( const tr_info * info, tr_benc * files )
|
|
|
|
{
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_file_index_t i;
|
2008-05-12 00:41:55 +00:00
|
|
|
for( i=0; i<info->fileCount; ++i )
|
|
|
|
{
|
|
|
|
const tr_file * file = &info->files[i];
|
2008-05-22 16:59:51 +00:00
|
|
|
tr_benc * d = tr_bencListAddDict( files, 2 );
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_bencDictAddInt( d, "length", file->length );
|
|
|
|
tr_bencDictAddStr( d, "name", file->name );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
static void
|
|
|
|
addWebseeds( const tr_info * info, tr_benc * webseeds )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for( i=0; i<info->webseedCount; ++i )
|
|
|
|
tr_bencListAddStr( webseeds, info->webseeds[i] );
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static void
|
|
|
|
addTrackers( const tr_info * info, tr_benc * trackers )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for( i=0; i<info->trackerCount; ++i )
|
|
|
|
{
|
|
|
|
const tr_tracker_info * t = &info->trackers[i];
|
|
|
|
tr_benc * d = tr_bencListAddDict( trackers, 3 );
|
|
|
|
tr_bencDictAddStr( d, "announce", t->announce );
|
|
|
|
tr_bencDictAddStr( d, "scrape", t->scrape );
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_bencDictAddInt( d, "tier", t->tier );
|
2008-05-12 00:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
static void
|
2008-06-16 03:47:50 +00:00
|
|
|
addInfo( const tr_torrent * tor, tr_benc * d, uint64_t fields )
|
2008-05-12 13:05:06 +00:00
|
|
|
{
|
|
|
|
const tr_info * inf = tr_torrentInfo( tor );
|
2008-06-16 03:47:50 +00:00
|
|
|
const tr_stat * st = tr_torrentStat( (tr_torrent*)tor );
|
2008-05-12 13:05:06 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
tr_bencInitDict( d, 64 );
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_ACTIVITY ) {
|
|
|
|
tr_bencDictAddInt( d, "desiredAvailable", st->desiredAvailable );
|
|
|
|
tr_bencDictAddInt( d, "eta", st->eta );
|
|
|
|
tr_bencDictAddInt( d, "peersConnected", st->peersConnected );
|
|
|
|
tr_bencDictAddInt( d, "peersGettingFromUs", st->peersGettingFromUs );
|
|
|
|
tr_bencDictAddInt( d, "peersSendingToUs", st->peersSendingToUs );
|
|
|
|
tr_bencDictAddDouble( d, "rateDownload", st->rateDownload );
|
|
|
|
tr_bencDictAddDouble( d, "rateUpload", st->rateUpload );
|
|
|
|
tr_bencDictAddDouble( d, "recheckProgress", st->recheckProgress );
|
|
|
|
tr_bencDictAddInt( d, "status", st->status );
|
|
|
|
tr_bencDictAddDouble( d, "swarmSpeed", st->swarmSpeed );
|
2008-06-17 04:47:20 +00:00
|
|
|
tr_bencDictAddDouble( d, "ratio", st->ratio );
|
2008-06-16 03:47:50 +00:00
|
|
|
tr_bencDictAddInt( d, "webseedsSendingToUs", st->webseedsSendingToUs );
|
|
|
|
}
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_ANNOUNCE ) {
|
|
|
|
tr_bencDictAddStr( d, "announceResponse", st->announceResponse );
|
|
|
|
tr_bencDictAddStr( d, "announceURL", st->announceURL );
|
|
|
|
tr_bencDictAddInt( d, "lastAnnounceTime", st->lastAnnounceTime );
|
|
|
|
tr_bencDictAddInt( d, "manualAnnounceTime", st->manualAnnounceTime );
|
|
|
|
tr_bencDictAddInt( d, "nextAnnounceTime", st->nextAnnounceTime );
|
|
|
|
}
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_ERROR ) {
|
|
|
|
tr_bencDictAddInt( d, "error", st->error );
|
|
|
|
tr_bencDictAddStr( d, "errorString", st->errorString );
|
|
|
|
}
|
2008-05-13 17:31:09 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_FILES )
|
|
|
|
addFiles( inf, tr_bencDictAddList( d, "files", inf->fileCount ) );
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_HISTORY ) {
|
|
|
|
tr_bencDictAddInt( d, "activityDate", st->activityDate );
|
|
|
|
tr_bencDictAddInt( d, "addedDate", st->addedDate );
|
|
|
|
tr_bencDictAddInt( d, "corruptEver", st->corruptEver );
|
|
|
|
tr_bencDictAddInt( d, "doneDate", st->doneDate );
|
2008-06-04 07:06:47 +00:00
|
|
|
tr_bencDictAddInt( d, "downloadedEver", st->downloadedEver );
|
2008-06-16 03:47:50 +00:00
|
|
|
tr_bencDictAddInt( d, "startDate", st->startDate );
|
|
|
|
tr_bencDictAddInt( d, "uploadedEver", st->uploadedEver );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_ID ) {
|
|
|
|
tr_bencDictAddInt( d, "id", st->id );
|
2008-05-22 19:24:11 +00:00
|
|
|
tr_bencDictAddStr( d, "hashString", tor->info.hashString );
|
2008-06-16 03:47:50 +00:00
|
|
|
tr_bencDictAddStr( d, "name", inf->name );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_INFO ) {
|
|
|
|
tr_bencDictAddStr( d, "comment", inf->comment ? inf->comment : "" );
|
|
|
|
tr_bencDictAddStr( d, "creator", inf->creator ? inf->creator : "" );
|
|
|
|
tr_bencDictAddInt( d, "dateCreated", inf->dateCreated );
|
|
|
|
tr_bencDictAddInt( d, "pieceCount", inf->pieceCount );
|
|
|
|
tr_bencDictAddInt( d, "pieceSize", inf->pieceSize );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_LIMITS ) {
|
|
|
|
tr_bencDictAddInt( d, "downloadLimit", tr_torrentGetSpeedLimit( tor, TR_DOWN ) );
|
|
|
|
tr_bencDictAddInt( d, "downloadLimitMode", tr_torrentGetSpeedMode( tor, TR_DOWN ) );
|
|
|
|
tr_bencDictAddInt( d, "maxConnectedPeers", tr_torrentGetPeerLimit( tor ) );
|
|
|
|
tr_bencDictAddInt( d, "uploadLimit", tr_torrentGetSpeedLimit( tor, TR_UP ) );
|
|
|
|
tr_bencDictAddInt( d, "uploadLimitMode", tr_torrentGetSpeedMode( tor, TR_UP ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_PEERS ) {
|
2008-06-17 04:47:20 +00:00
|
|
|
const int * f = st->peersFrom;
|
|
|
|
tr_bencDictAddInt( d, "fromCache", f[TR_PEER_FROM_CACHE] );
|
|
|
|
tr_bencDictAddInt( d, "fromIncoming", f[TR_PEER_FROM_INCOMING] );
|
|
|
|
tr_bencDictAddInt( d, "fromPex", f[TR_PEER_FROM_PEX] );
|
|
|
|
tr_bencDictAddInt( d, "fromTracker", f[TR_PEER_FROM_TRACKER] );
|
2008-06-16 03:47:50 +00:00
|
|
|
}
|
|
|
|
|
2008-06-17 16:25:13 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_PRIORITIES ) {
|
|
|
|
tr_file_index_t i;
|
|
|
|
tr_benc * p = tr_bencDictAddList( d, "priorities", inf->fileCount );
|
|
|
|
tr_benc * w = tr_bencDictAddList( d, "wanted", inf->fileCount );
|
|
|
|
for( i=0; i<inf->fileCount; ++i ) {
|
|
|
|
tr_bencListAddInt( p, inf->files[i].priority );
|
|
|
|
tr_bencListAddInt( w, inf->files[i].dnd ? 0 : 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_SCRAPE ) {
|
|
|
|
tr_bencDictAddInt( d, "lastScrapeTime", st->lastScrapeTime );
|
|
|
|
tr_bencDictAddInt( d, "nextScrapeTime", st->nextScrapeTime );
|
|
|
|
tr_bencDictAddStr( d, "scrapeResponse", st->scrapeResponse );
|
|
|
|
tr_bencDictAddStr( d, "scrapeURL", st->scrapeURL );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_SIZE ) {
|
|
|
|
tr_bencDictAddInt( d, "haveUnchecked", st->haveUnchecked );
|
|
|
|
tr_bencDictAddInt( d, "haveValid", st->haveValid );
|
|
|
|
tr_bencDictAddInt( d, "leftUntilDone", st->leftUntilDone );
|
2008-06-04 07:06:47 +00:00
|
|
|
tr_bencDictAddInt( d, "sizeWhenDone", st->sizeWhenDone );
|
2008-06-16 03:47:50 +00:00
|
|
|
tr_bencDictAddInt( d, "totalSize", inf->totalSize );
|
2008-05-18 16:44:30 +00:00
|
|
|
}
|
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_TRACKER_STATS ) {
|
|
|
|
tr_bencDictAddInt( d, "leechers", st->leechers );
|
|
|
|
tr_bencDictAddInt( d, "peersKnown", st->peersKnown );
|
|
|
|
tr_bencDictAddInt( d, "seeders", st->seeders );
|
|
|
|
tr_bencDictAddDouble( d, "timesCompleted", st->timesCompleted );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_TRACKERS )
|
|
|
|
addTrackers( inf, tr_bencDictAddList( d, "trackers", inf->trackerCount ) );
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
if( fields & TR_RPC_TORRENT_FIELD_WEBSEEDS )
|
|
|
|
addWebseeds( inf, tr_bencDictAddList( d, "webseeds", inf->trackerCount ) );
|
|
|
|
}
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static const char*
|
2008-06-17 16:25:13 +00:00
|
|
|
torrentGet( tr_handle * handle, tr_benc * args_in, tr_benc * args_out )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
|
|
|
int i, torrentCount;
|
|
|
|
tr_torrent ** torrents = getTorrents( handle, args_in, &torrentCount );
|
2008-06-17 16:25:13 +00:00
|
|
|
tr_benc * list = tr_bencDictAddList( args_out, "torrents", torrentCount );
|
2008-06-16 03:47:50 +00:00
|
|
|
int64_t fields = 0;
|
|
|
|
|
|
|
|
if( !tr_bencDictFindInt( args_in, "fields", &fields ) )
|
|
|
|
fields = ~(int64_t)0;
|
|
|
|
tr_bencDictAddInt( args_out, "fields", fields );
|
2008-05-12 00:41:55 +00:00
|
|
|
|
|
|
|
for( i=0; i<torrentCount; ++i )
|
2008-06-16 03:47:50 +00:00
|
|
|
addInfo( torrents[i], tr_bencListAdd( list ), fields );
|
2008-05-12 00:41:55 +00:00
|
|
|
|
|
|
|
tr_free( torrents );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-16 03:47:50 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
static void
|
|
|
|
setFilePriorities( tr_torrent * tor, int priority, tr_benc * list )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int64_t tmp;
|
|
|
|
int fileCount = 0;
|
2008-05-13 17:31:09 +00:00
|
|
|
const int n = tr_bencListSize( list );
|
2008-05-12 13:05:06 +00:00
|
|
|
tr_file_index_t * files = tr_new0( tr_file_index_t, n );
|
|
|
|
|
|
|
|
for( i=0; i<n; ++i )
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencGetInt( tr_bencListChild( list, i ), &tmp ) )
|
2008-05-12 13:05:06 +00:00
|
|
|
files[fileCount++] = tmp;
|
|
|
|
|
|
|
|
if( fileCount )
|
|
|
|
tr_torrentSetFilePriorities( tor, files, fileCount, priority );
|
|
|
|
|
|
|
|
tr_free( files );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setFileDLs( tr_torrent * tor, int do_download, tr_benc * list )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int64_t tmp;
|
|
|
|
int fileCount = 0;
|
2008-05-13 17:31:09 +00:00
|
|
|
const int n = tr_bencListSize( list );
|
2008-05-12 13:05:06 +00:00
|
|
|
tr_file_index_t * files = tr_new0( tr_file_index_t, n );
|
|
|
|
|
|
|
|
for( i=0; i<n; ++i )
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencGetInt( tr_bencListChild( list, i ), &tmp ) )
|
2008-05-12 13:05:06 +00:00
|
|
|
files[fileCount++] = tmp;
|
|
|
|
|
|
|
|
if( fileCount )
|
|
|
|
tr_torrentSetFileDLs( tor, files, fileCount, do_download );
|
|
|
|
|
|
|
|
tr_free( files );
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static const char*
|
2008-06-17 16:25:13 +00:00
|
|
|
torrentSet( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-12 13:05:06 +00:00
|
|
|
int i, torrentCount;
|
|
|
|
tr_torrent ** torrents = getTorrents( h, args_in, &torrentCount );
|
|
|
|
|
|
|
|
for( i=0; i<torrentCount; ++i )
|
|
|
|
{
|
2008-06-17 16:25:13 +00:00
|
|
|
int64_t tmp;
|
2008-05-12 13:05:06 +00:00
|
|
|
tr_benc * files;
|
|
|
|
tr_torrent * tor = torrents[i];
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencDictFindList( args_in, "files-unwanted", &files ) )
|
|
|
|
setFileDLs( tor, FALSE, files );
|
|
|
|
if( tr_bencDictFindList( args_in, "files-wanted", &files ) )
|
|
|
|
setFileDLs( tor, TRUE, files );
|
2008-06-17 16:25:13 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "peer-limit", &tmp ) )
|
|
|
|
tr_torrentSetPeerLimit( tor, tmp );
|
2008-05-12 13:05:06 +00:00
|
|
|
if( tr_bencDictFindList( args_in, "priority-high", &files ) )
|
|
|
|
setFilePriorities( tor, TR_PRI_HIGH, files );
|
|
|
|
if( tr_bencDictFindList( args_in, "priority-low", &files ) )
|
|
|
|
setFilePriorities( tor, TR_PRI_LOW, files );
|
|
|
|
if( tr_bencDictFindList( args_in, "priority-normal", &files ) )
|
|
|
|
setFilePriorities( tor, TR_PRI_NORMAL, files );
|
2008-06-17 16:25:13 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-down", &tmp ) )
|
|
|
|
tr_torrentSetSpeedLimit( tor, TR_DOWN, tmp );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-down-enabled", &tmp ) )
|
|
|
|
tr_torrentSetSpeedMode( tor, TR_DOWN, tmp ? TR_SPEEDLIMIT_SINGLE
|
|
|
|
: TR_SPEEDLIMIT_GLOBAL );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-up", &tmp ) )
|
|
|
|
tr_torrentSetSpeedLimit( tor, TR_UP, tmp );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-up-enabled", &tmp ) )
|
|
|
|
tr_torrentSetSpeedMode( tor, TR_UP, tmp ? TR_SPEEDLIMIT_SINGLE
|
|
|
|
: TR_SPEEDLIMIT_GLOBAL );
|
2008-05-18 16:44:30 +00:00
|
|
|
|
|
|
|
notify( h, TR_RPC_TORRENT_CHANGED, tor );
|
2008-05-12 13:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tr_free( torrents );
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static const char*
|
2008-05-12 13:05:06 +00:00
|
|
|
torrentAdd( tr_handle * h, tr_benc * args_in, tr_benc * args_out )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-20 17:33:54 +00:00
|
|
|
const char * filename = NULL;
|
|
|
|
const char * metainfo_base64 = NULL;
|
|
|
|
tr_bencDictFindStr( args_in, "filename", &filename );
|
|
|
|
tr_bencDictFindStr( args_in, "metainfo", &metainfo_base64 );
|
|
|
|
if( !filename && !metainfo_base64 )
|
|
|
|
return "no filename or metainfo specified";
|
2008-05-18 16:44:30 +00:00
|
|
|
else
|
|
|
|
{
|
2008-05-12 13:05:06 +00:00
|
|
|
int64_t i;
|
|
|
|
int err = 0;
|
|
|
|
const char * str;
|
|
|
|
tr_ctor * ctor;
|
|
|
|
tr_torrent * tor;
|
|
|
|
|
|
|
|
ctor = tr_ctorNew( h );
|
2008-05-20 17:33:54 +00:00
|
|
|
|
|
|
|
/* set the metainfo */
|
|
|
|
if( filename )
|
|
|
|
tr_ctorSetMetainfoFromFile( ctor, filename );
|
|
|
|
else {
|
|
|
|
int len;
|
|
|
|
char * metainfo = tr_base64_decode( metainfo_base64, -1, &len );
|
|
|
|
tr_ctorSetMetainfo( ctor, (uint8_t*)metainfo, len );
|
|
|
|
tr_free( metainfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the optional arguments */
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencDictFindStr( args_in, "download-dir", &str ) )
|
|
|
|
tr_ctorSetDownloadDir( ctor, TR_FORCE, str );
|
2008-05-12 23:51:17 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "paused", &i ) )
|
|
|
|
tr_ctorSetPaused( ctor, TR_FORCE, i );
|
2008-05-12 16:33:17 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "peer-limit", &i ) )
|
|
|
|
tr_ctorSetPeerLimit( ctor, TR_FORCE, i );
|
2008-05-20 17:33:54 +00:00
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
tor = tr_torrentNew( h, ctor, &err );
|
|
|
|
tr_ctorFree( ctor );
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tor ) {
|
2008-06-16 03:47:50 +00:00
|
|
|
addInfo( tor, tr_bencDictAdd( args_out, "torrent-added" ), TR_RPC_TORRENT_FIELD_ID );
|
2008-05-18 16:44:30 +00:00
|
|
|
notify( h, TR_RPC_TORRENT_ADDED, tor );
|
|
|
|
} else if( err == TR_EDUPLICATE ) {
|
2008-05-12 13:05:06 +00:00
|
|
|
return "duplicate torrent";
|
2008-05-18 16:44:30 +00:00
|
|
|
} else if( err == TR_EINVALID ) {
|
2008-05-12 13:05:06 +00:00
|
|
|
return "invalid or corrupt torrent file";
|
2008-05-18 16:44:30 +00:00
|
|
|
}
|
2008-05-12 13:05:06 +00:00
|
|
|
}
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static const char*
|
2008-05-12 16:33:17 +00:00
|
|
|
sessionSet( tr_handle * h, tr_benc * args_in, tr_benc * args_out UNUSED )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-12 16:33:17 +00:00
|
|
|
int64_t i;
|
|
|
|
const char * str;
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencDictFindStr( args_in, "download-dir", &str ) )
|
|
|
|
tr_sessionSetDownloadDir( h, str );
|
2008-05-12 16:33:17 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "peer-limit", &i ) )
|
|
|
|
tr_sessionSetPeerLimit( h, i );
|
2008-05-13 17:31:09 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "pex-allowed", &i ) )
|
|
|
|
tr_sessionSetPexEnabled( h, i );
|
2008-05-12 16:33:17 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "port", &i ) )
|
2008-05-23 16:18:58 +00:00
|
|
|
tr_sessionSetPeerPort( h, i );
|
2008-05-12 16:33:17 +00:00
|
|
|
if( tr_bencDictFindInt( args_in, "port-forwarding-enabled", &i ) )
|
|
|
|
tr_sessionSetPortForwardingEnabled( h, i );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-down", &i ) )
|
|
|
|
tr_sessionSetSpeedLimit( h, TR_DOWN, i );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-down-enabled", &i ) )
|
|
|
|
tr_sessionSetSpeedLimitEnabled( h, TR_DOWN, i );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-up", &i ) )
|
|
|
|
tr_sessionSetSpeedLimit( h, TR_UP, i );
|
|
|
|
if( tr_bencDictFindInt( args_in, "speed-limit-up-enabled", &i ) )
|
|
|
|
tr_sessionSetSpeedLimitEnabled( h, TR_UP, i );
|
|
|
|
if( tr_bencDictFindStr( args_in, "encryption", &str ) ) {
|
|
|
|
if( !strcmp( str, "required" ) )
|
|
|
|
tr_sessionSetEncryption( h, TR_ENCRYPTION_REQUIRED );
|
|
|
|
else if( !strcmp( str, "tolerated" ) )
|
|
|
|
tr_sessionSetEncryption( h, TR_PLAINTEXT_PREFERRED );
|
|
|
|
else
|
|
|
|
tr_sessionSetEncryption( h, TR_ENCRYPTION_PREFERRED );
|
|
|
|
}
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
notify( h, TR_RPC_SESSION_CHANGED, NULL );
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char*
|
2008-05-12 16:33:17 +00:00
|
|
|
sessionGet( tr_handle * h, tr_benc * args_in UNUSED, tr_benc * args_out )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
2008-05-12 16:33:17 +00:00
|
|
|
const char * str;
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_benc * d = tr_bencDictAddDict( args_out, "session", 10 );
|
2008-05-12 16:33:17 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_bencDictAddStr( d, "download-dir",
|
|
|
|
tr_sessionGetDownloadDir( h ) );
|
2008-05-12 16:33:17 +00:00
|
|
|
tr_bencDictAddInt( d, "peer-limit",
|
|
|
|
tr_sessionGetPeerLimit( h ) );
|
2008-05-13 17:31:09 +00:00
|
|
|
tr_bencDictAddInt( d, "pex-allowed",
|
|
|
|
tr_sessionIsPexEnabled( h ) );
|
2008-05-12 16:33:17 +00:00
|
|
|
tr_bencDictAddInt( d, "port",
|
2008-05-23 16:18:58 +00:00
|
|
|
tr_sessionGetPeerPort( h ) );
|
2008-05-12 16:33:17 +00:00
|
|
|
tr_bencDictAddInt( d, "port-forwarding-enabled",
|
|
|
|
tr_sessionIsPortForwardingEnabled( h ) );
|
|
|
|
tr_bencDictAddInt( d, "speed-limit-up",
|
|
|
|
tr_sessionGetSpeedLimit( h, TR_UP ) );
|
|
|
|
tr_bencDictAddInt( d, "speed-limit-up-enabled",
|
|
|
|
tr_sessionIsSpeedLimitEnabled( h, TR_UP ) );
|
|
|
|
tr_bencDictAddInt( d, "speed-limit-down",
|
|
|
|
tr_sessionGetSpeedLimit( h, TR_DOWN ) );
|
|
|
|
tr_bencDictAddInt( d, "speed-limit-down-enabled",
|
|
|
|
tr_sessionIsSpeedLimitEnabled( h, TR_DOWN ) );
|
|
|
|
switch( tr_sessionGetEncryption( h ) ) {
|
|
|
|
case TR_PLAINTEXT_PREFERRED: str = "tolerated"; break;
|
|
|
|
case TR_ENCRYPTION_REQUIRED: str = "required"; break;
|
|
|
|
default: str = "preferred"; break;
|
|
|
|
}
|
|
|
|
tr_bencDictAddStr( d, "encryption", str );
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
typedef const char* (handler)( tr_handle*, tr_benc*, tr_benc* );
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
struct method {
|
2008-05-13 17:31:09 +00:00
|
|
|
const char * name;
|
2008-05-12 13:05:06 +00:00
|
|
|
handler * func;
|
2008-05-13 17:31:09 +00:00
|
|
|
} methods[] = {
|
2008-05-18 16:44:30 +00:00
|
|
|
{ "session-get", sessionGet },
|
|
|
|
{ "session-set", sessionSet },
|
2008-05-12 13:05:06 +00:00
|
|
|
{ "torrent-add", torrentAdd },
|
2008-06-17 16:25:13 +00:00
|
|
|
{ "torrent-get", torrentGet },
|
2008-05-20 23:58:59 +00:00
|
|
|
{ "torrent-remove", torrentRemove },
|
2008-05-18 16:44:30 +00:00
|
|
|
{ "torrent-set", torrentSet },
|
|
|
|
{ "torrent-start", torrentStart },
|
|
|
|
{ "torrent-stop", torrentStop },
|
|
|
|
{ "torrent-verify", torrentVerify }
|
2008-05-12 13:05:06 +00:00
|
|
|
};
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
static char*
|
|
|
|
request_exec( struct tr_handle * handle,
|
|
|
|
tr_benc * request,
|
|
|
|
int * response_len )
|
|
|
|
{
|
|
|
|
int64_t i;
|
|
|
|
const char * str;
|
|
|
|
char * out;
|
|
|
|
tr_benc response;
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_benc * args_in = tr_bencDictFind( request, "arguments" );
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_benc * args_out = NULL;
|
|
|
|
const char * result = NULL;
|
|
|
|
|
|
|
|
/* build the response skeleton */
|
2008-05-12 23:51:17 +00:00
|
|
|
tr_bencInitDict( &response, 3 );
|
2008-05-18 16:44:30 +00:00
|
|
|
args_out = tr_bencDictAddDict( &response, "arguments", 0 );
|
2008-05-12 00:41:55 +00:00
|
|
|
|
|
|
|
/* parse the request */
|
2008-05-12 23:51:17 +00:00
|
|
|
if( !tr_bencDictFindStr( request, "method", &str ) )
|
|
|
|
result = "no method name";
|
2008-05-12 00:41:55 +00:00
|
|
|
else {
|
2008-05-13 17:31:09 +00:00
|
|
|
const int n = TR_N_ELEMENTS( methods );
|
2008-05-12 13:05:06 +00:00
|
|
|
for( i=0; i<n; ++i )
|
2008-05-13 17:31:09 +00:00
|
|
|
if( !strcmp( str, methods[i].name ) )
|
2008-05-12 13:05:06 +00:00
|
|
|
break;
|
|
|
|
result = i==n
|
2008-05-12 23:51:17 +00:00
|
|
|
? "method name not recognized"
|
2008-05-13 17:31:09 +00:00
|
|
|
: (*methods[i].func)( handle, args_in, args_out );
|
2008-05-12 00:41:55 +00:00
|
|
|
}
|
|
|
|
|
2008-05-12 13:05:06 +00:00
|
|
|
/* serialize & return the response */
|
2008-05-12 00:41:55 +00:00
|
|
|
if( !result )
|
2008-05-12 23:51:17 +00:00
|
|
|
result = "success";
|
|
|
|
tr_bencDictAddStr( &response, "result", result );
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_bencDictFindInt( request, "tag", &i ) )
|
|
|
|
tr_bencDictAddInt( &response, "tag", i );
|
2008-05-12 23:51:17 +00:00
|
|
|
out = tr_bencSaveAsJSON( &response, response_len );
|
2008-05-12 00:41:55 +00:00
|
|
|
tr_bencFree( &response );
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
2008-05-13 12:52:58 +00:00
|
|
|
tr_rpc_request_exec_json( struct tr_handle * handle,
|
2008-05-18 16:44:30 +00:00
|
|
|
const void * request_json,
|
|
|
|
int request_len,
|
|
|
|
int * response_len )
|
2008-05-12 00:41:55 +00:00
|
|
|
{
|
|
|
|
tr_benc top;
|
2008-05-13 12:52:58 +00:00
|
|
|
int have_content;
|
|
|
|
char * ret;
|
|
|
|
|
|
|
|
if( request_len < 0 )
|
|
|
|
request_len = strlen( request_json );
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
have_content = !tr_jsonParse( request_json, request_len, &top, NULL );
|
2008-05-13 12:52:58 +00:00
|
|
|
ret = request_exec( handle, have_content ? &top : NULL, response_len );
|
|
|
|
|
2008-05-12 00:41:55 +00:00
|
|
|
if( have_content )
|
|
|
|
tr_bencFree( &top );
|
|
|
|
return ret;
|
|
|
|
}
|
2008-05-13 12:52:58 +00:00
|
|
|
|
2008-05-24 18:22:16 +00:00
|
|
|
/**
|
|
|
|
* Munge the URI into a usable form.
|
|
|
|
*
|
|
|
|
* We have very loose typing on this to make the URIs as simple as possible:
|
|
|
|
* - anything not a 'tag' or 'method' is automatically in 'arguments'
|
|
|
|
* - values that are all-digits are numbers
|
|
|
|
* - values that are all-digits or commas are number lists
|
|
|
|
* - all other values are strings
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tr_rpc_parse_list_str( tr_benc * setme,
|
|
|
|
const char * str_in,
|
|
|
|
size_t len )
|
|
|
|
|
|
|
|
{
|
|
|
|
char * str = tr_strndup( str_in, len );
|
|
|
|
int isNum;
|
|
|
|
int isNumList;
|
|
|
|
int commaCount;
|
|
|
|
const char * walk;
|
|
|
|
|
|
|
|
isNum = 1;
|
|
|
|
isNumList = 1;
|
|
|
|
commaCount = 0;
|
|
|
|
walk = str;
|
|
|
|
for( ; *walk && (isNumList || isNum); ++walk ) {
|
|
|
|
if( isNumList ) isNumList = *walk=='-' || isdigit(*walk) || *walk==',';
|
|
|
|
if( isNum ) isNum = *walk=='-' || isdigit(*walk);
|
|
|
|
if( *walk == ',' ) ++commaCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( isNum )
|
|
|
|
tr_bencInitInt( setme, strtol( str, NULL, 10 ) );
|
|
|
|
else if( !isNumList )
|
|
|
|
tr_bencInitStrDup( setme, str );
|
|
|
|
else {
|
|
|
|
tr_bencInitList( setme, commaCount + 1 );
|
|
|
|
walk = str;
|
|
|
|
while( *walk ) {
|
|
|
|
char * p;
|
|
|
|
tr_bencListAddInt( setme, strtol( walk, &p, 10 ) );
|
|
|
|
if( *p!=',' )
|
|
|
|
break;
|
|
|
|
walk = p + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_free( str );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-13 12:52:58 +00:00
|
|
|
char*
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_rpc_request_exec_uri( struct tr_handle * handle,
|
|
|
|
const void * request_uri,
|
|
|
|
int request_len,
|
|
|
|
int * response_len )
|
2008-05-13 12:52:58 +00:00
|
|
|
{
|
2008-05-13 17:31:09 +00:00
|
|
|
char * ret = NULL;
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_benc top, * args;
|
|
|
|
char * request = tr_strndup( request_uri, request_len );
|
|
|
|
const char * pch;
|
|
|
|
|
|
|
|
tr_bencInitDict( &top, 3 );
|
|
|
|
args = tr_bencDictAddDict( &top, "arguments", 0 );
|
|
|
|
|
|
|
|
/* munge the URI into a usable form.
|
|
|
|
* we have very loose typing on this to make the URIs as simple as possible:
|
|
|
|
* - anything not a 'tag' or 'method' is automatically in 'arguments'
|
|
|
|
* - values that are all-digits are numbers
|
|
|
|
* - values that are all-digits or commas are number lists
|
|
|
|
* - all other values are strings
|
|
|
|
*/
|
|
|
|
|
|
|
|
pch = strchr( request, '?' );
|
|
|
|
if( !pch ) pch = request;
|
|
|
|
while( pch )
|
2008-05-13 17:31:09 +00:00
|
|
|
{
|
2008-05-18 16:44:30 +00:00
|
|
|
const char * delim = strchr( pch, '=' );
|
|
|
|
const char * next = strchr( pch, '&' );
|
|
|
|
if( delim )
|
|
|
|
{
|
|
|
|
char * key = tr_strndup( pch, delim-pch );
|
|
|
|
int isArg = strcmp( key, "method" ) && strcmp( key, "tag" );
|
|
|
|
tr_benc * parent = isArg ? args : ⊤
|
2008-05-24 18:22:16 +00:00
|
|
|
tr_rpc_parse_list_str( tr_bencDictAdd( parent, key ),
|
|
|
|
delim+1,
|
|
|
|
next ? (size_t)(next-(delim+1)) : strlen(delim+1) );
|
|
|
|
tr_free( key );
|
2008-05-18 16:44:30 +00:00
|
|
|
}
|
|
|
|
pch = next ? next+1 : NULL;
|
2008-05-13 17:31:09 +00:00
|
|
|
}
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
ret = request_exec( handle, &top, response_len );
|
2008-05-13 17:31:09 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
/* cleanup */
|
|
|
|
tr_bencFree( &top );
|
2008-05-13 17:31:09 +00:00
|
|
|
tr_free( request );
|
2008-05-13 12:52:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|