summaryrefslogtreecommitdiffabout
path: root/kabc/converter/opie/opieconverter.cpp
blob: fbb581748ed8abf95981ab7c49455f6c828f7749 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
    This file is part of libkabc.
    Copyright (c) 2002 Tobias Koenig <tokoe@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., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.
*/

/*
Enhanced Version of the file for platform independent KDE tools.
Copyright (c) 2004 Ulf Schenk

$Id$
*/

//US
#include "kglobal.h"


#include "opieconverter.h"

using namespace KABC;

OpieConverter::OpieConverter()
{
}

OpieConverter::~OpieConverter()
{
}
  
bool OpieConverter::opieToAddressee( OContact &contact, Addressee &addr )
{
    // name
//US    QString fileAs() const { return find( Qtopia::FileAs ); }

    addr.setFamilyName( contact.lastName() );
    addr.setGivenName( contact.firstName() );
    addr.setAdditionalName( contact.middleName() );
    addr.setPrefix( contact.title() );
    addr.setSuffix( contact.suffix() );
  
    
    // email
    QStringList emails = contact.emailList();
    for ( QStringList::Iterator it = emails.begin(); it != emails.end(); ++it ) {
      addr.insertEmail( *it, ((*it) == contact.defaultEmail()) );
    }

    // home
    Address homeaddress;
    homeaddress.setType(Address::Home);
//US    homeaddress.setPostOfficeBox( "" );
//US    homeaddress.setExtended( "" );
    homeaddress.setStreet( contact.homeStreet() );
    homeaddress.setLocality( contact.homeCity() );
    homeaddress.setRegion( contact.homeState() );
    homeaddress.setPostalCode( contact.homeZip() );
    homeaddress.setCountry( contact.homeCountry() );
    
    addr.insertAddress( homeaddress );
    
    if (!contact.homePhone().isEmpty())
    {
      PhoneNumber homephone;
      homephone.setType( PhoneNumber::Home );
      homephone.setNumber( contact.homePhone() );
      addr.insertPhoneNumber( homephone );
    }
    
    if (!contact.homeFax().isEmpty())
    {
      PhoneNumber homefax;
      homefax.setType( PhoneNumber::Home | PhoneNumber::Fax );
      homefax.setNumber( contact.homeFax() );
      addr.insertPhoneNumber( homefax );
    }
    
    if (!contact.homeMobile().isEmpty())
    {
      PhoneNumber homemobile;
      homemobile.setType( PhoneNumber::Home | PhoneNumber::Cell );
      homemobile.setNumber( contact.homeMobile() );
      addr.insertPhoneNumber( homemobile );
    }
    
    addr.setUrl( contact.homeWebpage() );
                

    // business
    Address businessaddress;
    businessaddress.setType(Address::Work);
//US    businessaddress.setPostOfficeBox( "" );
//US    businessaddress.setExtended( "" );
    businessaddress.setStreet( contact.businessStreet() );
    businessaddress.setLocality( contact.businessCity() );
    businessaddress.setRegion( contact.businessState() );
    businessaddress.setPostalCode( contact.businessZip() );
    businessaddress.setCountry( contact.businessCountry() );
    
    addr.insertAddress( businessaddress );

    if (!contact.businessPhone().isEmpty())
    {
      PhoneNumber businessphone;
      businessphone.setType( PhoneNumber::Work );
      businessphone.setNumber( contact.businessPhone() );
      addr.insertPhoneNumber( businessphone );
    }
    
    if (!contact.businessFax().isEmpty())
    {
      PhoneNumber businessfax;
      businessfax.setType( PhoneNumber::Work | PhoneNumber::Fax );
      businessfax.setNumber( contact.businessFax() );
      addr.insertPhoneNumber( businessfax );
    }
    
    if (!contact.businessMobile().isEmpty())
    {
      PhoneNumber businessmobile;
      businessmobile.setType( PhoneNumber::Work | PhoneNumber::Cell );
      businessmobile.setNumber( contact.businessMobile() );
      addr.insertPhoneNumber( businessmobile );
    }

    if (!contact.businessPager().isEmpty())
    {
      PhoneNumber businesspager;
      businesspager.setType( PhoneNumber::Work | PhoneNumber::Pager );
      businesspager.setNumber( contact.businessPager() );
      addr.insertPhoneNumber( businesspager );
    }
        
    addr.setRole( contact.jobTitle() ); //?
    addr.setOrganization( contact.company() );
    addr.insertCustom( "KADDRESSBOOK", "X-Profession", contact.profession() );
    addr.insertCustom( "KADDRESSBOOK", "X-AssistantsName", contact.assistant() );
    addr.insertCustom( "KADDRESSBOOK", "X-Department", contact.department() );
    addr.insertCustom( "KADDRESSBOOK", "X-ManagersName", contact.manager() );
    addr.insertCustom( "KADDRESSBOOK", "X-Office", contact.office() );

//???       
//US    QString businessWebpage() const { return find( Qtopia::BusinessWebPage ); }

    //personal
    addr.insertCustom( "KADDRESSBOOK", "X-SpousesName", contact.spouse() );
    addr.insertCustom( "KADDRESSBOOK", "X-Gender", contact.gender() );
    addr.insertCustom( "KADDRESSBOOK", "X-Anniversary", dateToAddresseeString(contact.anniversary()) );
    addr.insertCustom( "KADDRESSBOOK", "X-Children", contact.children() );
    addr.setBirthday( contact.birthday() );
    addr.setNickName( contact.nickname() );

    // other
    addr.setNote( contact.notes() );
    
//US    QString groups() const { return find( Qtopia::Groups ); }
//US    QStringList groupList() const;

/*US    
    QStringList cats = contact.categoryNames("Contacts");
    for ( QStringList::Iterator it = cats.begin(); it != cats.end(); ++it ) {
      qDebug("Cat: %s", (*it).latin1());
    }
*/    
    addr.setCategories( contact.categoryNames("Contacts") );
//    qDebug("Groups: %s", contact.groups().latin1());
//    addr.setCategories( contact.groupList() );


    return true;
}

bool OpieConverter::addresseeToOpie( const Addressee &addr, OContact &contact )
{
  return false;
}

QString OpieConverter::dateToAddresseeString( const QDate &date )
{
  return KGlobal::locale()->formatDate(date, true);
//US  return date.toString("yyyyMMdd");
}