summaryrefslogtreecommitdiffstats
path: root/korn/tdeio_proto.cpp
blob: c6ebe85cb86ffe686aface0df888c719fb3e29aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Copyright (C) 2005, Mart Kelder (mart.kde@hccnet.nl)
 *
 * 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.
 *
 * 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; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */


#include "tdeio_proto.h"

#include <tdeconfig.h>
#include <kdebug.h>

#include <tqmap.h>

TQMap< TQString, TQString >* KIO_Protocol::createConfig( TDEConfigGroup * group, const TQString& password ) const
{
	TQMap< TQString, TQString > *result = new TQMap< TQString, TQString >;

	result->insert( "name", group->readEntry( "name", "" ) );
	result->insert( "server", group->readEntry( "server", "" ) );
	result->insert( "port", group->readEntry( "port", "" ) );
	result->insert( "username", group->readEntry( "username", "" ) );
	result->insert( "password", password );
	result->insert( "mailbox", group->readEntry( "mailbox", "" ) );
	result->insert( "savepassword", group->readEntry( "savepassword", "false" ) );
	result->insert( "ssl", group->readEntry( "ssl", "false" ) );
	result->insert( "metadata", group->readEntry( "metadata", "" ) );

	return result;
}

void KIO_Protocol::clearFields( TQMap<TQString, TQString> *map, const KIO_Protocol::Fields fields ) const
{
	if( fields & server )
		map->insert( "server", "" );
	if( fields & port )
		map->insert( "port", "" );
	if( fields & username )
		map->insert( "username", "" );
	if( fields & password )
		map->insert( "password", "" );
	if( fields & mailbox )
		map->insert( "mailbox", "" );	
	if( fields & save_password  )
		map->insert( "savepassword", "" );
	if( fields & metadata )
		map->insert( "metadata", "" );
}

void KIO_Protocol::readEntries( TQMap< TQString, TQString >* map ) const
{
	TQMap< TQString, TQString> *metadata = new TQMap< TQString, TQString >;

	if( map->contains( "metadata" ) )
	{
		TQStringList list = TQStringList::split( ",", *map->find( "metadata" ) );
		TQStringList::Iterator it;
		for( it = list.begin(); it != list.end(); ++it )
		{
			int split = (*it).find( '=' );

			metadata->insert( (*it).left( split ), (*it).right( (*it).length() - split - 1 ) );
		}
	}

	this->readEntries( map, metadata );

	delete metadata;
}