Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Implemented ADR to use ContactDataObject.
[xestiaab/.git] / source / contacteditor / frmContactEditor-Load.cpp
1 // frmContactEditor-Load.cpp - frmContactEditor load contact subroutines.
2 //
3 // (c) 2012-2015 Xestia Software Development.
4 //
5 // This file is part of Xestia Address Book.
6 //
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
10 //
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include <map>
21 #include <wx/ffile.h>
22 #include <wx/tokenzr.h>
23 #include <wx/datetime.h>
24 #include <wx/dir.h>
26 #include "frmContactEditor.h"
28 #include "../enums.h"
29 #include "../version.h"
30 #include "../vcard/vcard.h"
31 #include "../common/textprocessing.h"
32 #include "../common/dirs.h"
33 #include "cdo/ContactDataObject.h"
35 bool frmContactEditor::LoadContact(wxString Filename){
37         // Load the contact into the contact editor.
38         
39         wxFFile ContactFile;
40         wxString wxSContactString;
41         wxString ContactLine;
42         vCard ContactData;
43         XABViewMode XVMData;
44         if (StartupEditMode == FALSE){
45                 XVMData = MainPtr->GetViewMode();
46         }
47         
48         wxSContactFilename = Filename;
49         
50         // Check if we are using wxWidgets version 2.8 or less and
51         // execute the required command accordingly.
52         
53 #if wxABI_VERSION < 20900
54         ContactFile.Open(Filename.c_str(), wxT("r"));
55 #else
56         ContactFile.Open(Filename, wxT("r"));
57 #endif  
58         
59         if (ContactFile.IsOpened() == FALSE){
60         
61                 return FALSE;
62         
63         }
64         
65         ContactEditorData.LoadFile(Filename);
66         
67         ContactFile.ReadAll(&wxSContactString, wxConvAuto());
68         
69         // Split the lines.
70         
71         std::map<int, wxString> ContactFileLines;
72         std::map<int, wxString>::iterator striter;
73         
74         wxStringTokenizer wSTContactFileLines(wxSContactString, wxT("\r\n"));
76         int ContactLineSeek = 0;
78         while (wSTContactFileLines.HasMoreTokens() == TRUE){
80                 ContactLine = wSTContactFileLines.GetNextToken();
81                 ContactFileLines.insert(std::make_pair(ContactLineSeek, ContactLine));
82                 ContactLineSeek++;              
83         
84         }
86         // Get the line.
88         bool QuoteMode = FALSE;
89         bool PropertyFind = TRUE;
90         bool HasExtraNicknames = FALSE;
91         bool IgnoreGender = FALSE;
92         bool ExtraLineSeek = TRUE;
93         //bool BirthdayProcessed = FALSE;
94         //bool AnniversaryProcessed = FALSE;
95         bool FNProcessed = FALSE;
96         bool GenderProcessed = FALSE;
97         bool NameProcessed = FALSE;
98         //bool UIDProcessed = FALSE;
99         //bool KindProcessed = FALSE;
100         bool ETagFound = FALSE;
101         bool ETagOrigFound = FALSE;
102         bool VersionProcessed = FALSE;
103         int intExtraNickname = 0;
104         wxString wxSProperty;
105         wxString wxSPropertySeg1;
106         wxString wxSPropertySeg2;
107         wxString wxSPropertyNextLine;
108         size_t ContactLineLen = 0;
109         int QuoteBreakPoint = 0;
110         int FNCount = 0;
111         int NameCount = 0;
112         int NicknameCount = 0;
113         int ADRCount = 0;
114         int EmailCount = 0;
115         int IMPPCount = 0;
116         int TelCount = 0;
117         int LangCount = 0;
118         int TZCount = 0;
119         int GeoCount = 0;
120         int URLCount = 0;
121         int RelatedCount = 0;
122         int TitleCount = 0;
123         int RoleCount = 0;
124         int OrgCount = 0;
125         int NoteCount = 0;
126         int CategoryCount = 0;
127         int GroupCount = 0;
128         int PhotoCount = 0;
129         int LogoCount = 0;
130         int SoundCount = 0;
131         int CalAdrCount = 0;
132         int CalReqAdrCount = 0;
133         int FreeBusyCount = 0;
134         int KeyCount = 0;
135         int VendorCount = 0;
136         int XTokenCount = 0;
137         //int intValueSeek = 1;
139         // Process the unique ID (UID)
140         
141         UIDToken = ContactEditorData.UIDToken;
143         // Process the contact type (KIND) (frmContactEditor-LoadGroup.cpp)
145         LoadKind(&ContactEditorData.ContactKind);
147         // Process the Birthday (BDAY) (frmContactEditor-LoadBADays.cpp)
148         
149         LoadBirthday(&ContactEditorData.Birthday, &ContactEditorData.BirthdayText);
151         // Process the Anniversary (ANNIVERSARY) (frmContactEditor-LoadBADays.cpp)
152         
153         LoadAnniversary(&ContactEditorData.Anniversary, &ContactEditorData.AnniversaryText);
155         // Process the Gender (GENDER) (frmContactEditor-LoadGender.cpp)
156         
157         LoadGender(&ContactEditorData.Gender, &ContactEditorData.GenderDetails);
158         
159         // Process the Name (N) (frmContactEditor-LoadName.cpp)
160         
161         LoadName(&ContactEditorData.NameTitle, &ContactEditorData.NameForename,
162                 &ContactEditorData.NameSurname, &ContactEditorData.NameOtherNames,
163                 &ContactEditorData.NameSuffix);
164                 
165         // Process the group members (MEMBER) (frmContactEditor-LoadGroup.cpp)
166                 
167         LoadMember(&ContactEditorData.GroupsList);
169         // Process the address (ADR) (frmContactEditor-LoadAddress.cpp)
170         
171         LoadAddress(&ContactEditorData.GeneralAddressList,
172                 &ContactEditorData.GeneralAddressListTown,
173                 &ContactEditorData.GeneralAddressListCounty,
174                 &ContactEditorData.GeneralAddressListPostCode,
175                 &ContactEditorData.GeneralAddressListPref,
176                 &ContactEditorData.HomeAddressList,
177                 &ContactEditorData.HomeAddressListTown,
178                 &ContactEditorData.HomeAddressListCounty,
179                 &ContactEditorData.HomeAddressListPostCode,
180                 &ContactEditorData.HomeAddressListPref,
181                 &ContactEditorData.BusinessAddressList,
182                 &ContactEditorData.BusinessAddressListTown,
183                 &ContactEditorData.BusinessAddressListCounty,
184                 &ContactEditorData.BusinessAddressListPostCode,
185                 &ContactEditorData.BusinessAddressListPref,
186                 &ADRCount);
188         for (std::map<int,wxString>::iterator iter = ContactFileLines.begin(); 
189          iter != ContactFileLines.end(); ++iter){
190         
191                 // Find the colon which splits the start bit from the data part.
192                 
193                 ContactLine = iter->second;
194                 
195                 while (ExtraLineSeek == TRUE){
196                 
197                         // Check if there is extra data on the next line 
198                         // (indicated by space or tab at the start) and add data.
199                 
200                         iter++;
201                         
202                         if (iter == ContactFileLines.end()){
203                         
204                                 iter--;
205                                 break;
206                         
207                         }                       
208                 
209                         wxSPropertyNextLine = iter->second;
210                         
211                 
212                         if (wxSPropertyNextLine.Mid(0, 1) == wxT(" ") || wxSPropertyNextLine.Mid(0, 1) == wxT("\t")){
213                 
214                                 wxSPropertyNextLine.Remove(0, 1);
215                                 //wxSPropertyNextLine.Trim(FALSE);
216                                 //ContactLine.Trim();
217                                 ContactLine.Append(wxSPropertyNextLine);
218                 
219                         } else {
220                         
221                                 iter--;
222                                 ExtraLineSeek = FALSE;
223                         
224                         }
225                 
226                 }
228                 ContactLineLen = ContactLine.Len();
229                 
230                 // Make sure we are not in quotation mode.
231                 // Make sure colon does not have \ or \\ before it.
232                 
233                 for (int i = 0; i <= ContactLineLen; i++){
234                 
235                         if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
236                         
237                                 PropertyFind = FALSE;
238                         
239                         } else if (PropertyFind == TRUE){
240                         
241                                 wxSProperty.Append(ContactLine.Mid(i, 1));
242                         
243                         }               
244                 
245                         if (ContactLine.Mid(i, 1) == wxT("\"")){
246                         
247                                 if (QuoteMode == TRUE){
248                                 
249                                         QuoteMode = FALSE;
250                                 
251                                 } else {
252                         
253                                         QuoteMode = TRUE;
254                                         
255                                 }
256                         
257                         }
258                         
259                         if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
260                         
261                                 QuoteBreakPoint = i;
262                                 break;
263                         
264                         }
265                 
266                 }
267                 
268                 // Split that line at the point into two variables (ignore the colon).
269                 
270                 wxSPropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
271                 wxSPropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
272                 
273                 // Add the data into the contact editor depending on what it is.                                
274                 
275                 if (wxSProperty == wxT("VERSION") && VersionProcessed == FALSE){
276                 
277                         // Check if version is 4.0, otherwise don't
278                         // load.
279                         
280                         if (wxSPropertySeg2 != wxT("4.0")){
281                                 wxMessageBox(_("This file is not a vCard 4.0 contact and is not supported under Xestia Address Book."),
282                                         _("Contact not supported"), wxICON_ERROR);
283                                 this->Close();
284                                 return FALSE;
285                         }
286                         
287                         VersionProcessed = TRUE;
288                 
289                 }/* if (wxSProperty == wxT("KIND") && KindProcessed == FALSE){
290                 
291                         // See frmContactEditor-LoadGroup.cpp
292                 
293                         LoadKind(wxSPropertySeg2);
294                 
295                 }/* else if (wxSProperty == wxT("MEMBER")){
297                         // See frmContactEditor-LoadGroup.cpp
299                         LoadMember(wxSPropertySeg2, &GroupCount);               
300                 
301                 }*/ else if (wxSProperty == wxT("FN")){
302                 
303                         // See frmContactEditor-LoadName.cpp
304                 
305                         LoadFN(wxSPropertySeg1, wxSPropertySeg2, &FNCount, &FNProcessed, &ContactData);
306                 
307                 }/* else if (wxSProperty == wxT("N") && NameProcessed == FALSE){
308                 
309                         // See frmContactEditor-LoadName.cpp
310                 
311                         LoadN(wxSPropertySeg1, wxSPropertySeg2, &NameProcessed, &ContactData);
312                 
313                 }*/ else if (wxSProperty == wxT("NICKNAME")){
314                         
315                         // See frmContactEditor-LoadNickname.cpp
316                         
317                         LoadNickname(wxSPropertySeg1, wxSPropertySeg2, &NicknameCount, &ContactData);
318                         
319                 }/* else if (wxSProperty == wxT("GENDER") && GenderProcessed == FALSE){
320                 
321                         // See frmContactEditor-LoadGender.cpp
322                 
323                         LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
324                 
325                 } else if (wxSProperty == wxT("BDAY") && BirthdayProcessed == FALSE){
327                         // See frmContactEditor-LoadBADays.cpp
329                         LoadBDay(wxSPropertySeg1, wxSPropertySeg2, &BirthdayProcessed);
330                 
331                 } else if (wxSProperty == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
332                         
333                         // See frmContactEditor-LoadBADays.cpp
334                         
335                         LoadAnniversary(wxSPropertySeg1, wxSPropertySeg2, &AnniversaryProcessed);
336                 
337                 }*/ else if (wxSProperty == wxT("TZ")){
338                 
339                         // See frmContactEditor-LoadTimeZone.cpp
340                 
341                         LoadTimeZone(wxSPropertySeg1, wxSPropertySeg2, &TZCount);       
342                 
343                 }/* else if (wxSProperty == wxT("ADR")){
344                         
345                         // See frmContactEditor-LoadAddress.cpp
346                 
347                         LoadADR(wxSPropertySeg1, wxSPropertySeg2, &ADRCount);
348                 
349                 }*/ else if (wxSProperty == wxT("EMAIL")){
350                 
351                         // See frmContactEditor-LoadEmail.cpp
352                         
353                         LoadEmail(wxSPropertySeg1, wxSPropertySeg2, &EmailCount);       
354                 
355                 } else if (wxSProperty == wxT("IMPP")){
356                 
357                         // See frmContactEditor-LoadIM.cpp
358                 
359                         LoadIM(wxSPropertySeg1, wxSPropertySeg2, &IMPPCount);
360                 
361                 } else if (wxSProperty == wxT("TEL")){
362                 
363                         // See frmContactEditor-LoadTelephone.cpp
364                 
365                         LoadTelephone(wxSPropertySeg1, wxSPropertySeg2, &TelCount);
366                 
367                 } else if (wxSProperty == wxT("LANG")){
368                 
369                         // See frmContactEditor-LoadLanguage.cpp
370                         
371                         LoadLanguage(wxSPropertySeg1, wxSPropertySeg2, &LangCount);
372                 
373                 } else if (wxSProperty == wxT("GEO")){
374                 
375                         // See frmContactEditor-LoadGeo.cpp
376                         
377                         LoadGeo(wxSPropertySeg1, wxSPropertySeg2, &GeoCount);   
378                 
379                 } else if (wxSProperty == wxT("RELATED")){
380                         
381                         // See fromContactEditor-LoadRelated.cpp
382                         
383                         LoadRelated(wxSPropertySeg1, wxSPropertySeg2, &RelatedCount);           
384                 
385                 } else if (wxSProperty == wxT("URL")){
387                         // See frmContactEditor-LoadURL.cpp
388                 
389                         LoadURL(wxSPropertySeg1, wxSPropertySeg2, &URLCount);
390                 
391                 } else if (wxSProperty == wxT("TITLE")) {
392                 
393                         // See frmContactEditor-LoadTitle.cpp
394                         
395                         LoadTitle(wxSPropertySeg1, wxSPropertySeg2, &TitleCount);
396                         
397                 } else if (wxSProperty == wxT("ROLE")) {
399                         // See frmContactEditor-LoadRole.cpp
400                 
401                         LoadRole(wxSPropertySeg1, wxSPropertySeg2, &RoleCount);
402                         
403                 } else if (wxSProperty == wxT("ORG")) {
404                 
405                         // See frmContactEditor-LoadOrg.cpp
406                         
407                         LoadOrg(wxSPropertySeg1, wxSPropertySeg2, &OrgCount);
408                         
409                 } else if (wxSProperty == wxT("NOTE")) {
411                         // See frmContactEditor-LoadNote.cpp
413                         LoadNote(wxSPropertySeg1, wxSPropertySeg2, &NoteCount); 
414                         
415                 } else if (wxSProperty == wxT("CATEGORIES")) {
416                 
417                         // See frmContactEditor-LoadCategory.cpp
418                 
419                         LoadCategory(wxSPropertySeg1, wxSPropertySeg2, &CategoryCount); 
420                         
421                 } else if (wxSProperty == wxT("PHOTO")) {
422                 
423                         // See frmContactEditor-LoadPhoto.cpp
424                         
425                         LoadPhoto(wxSPropertySeg1, wxSPropertySeg2, &PhotoCount);
427                 } else if (wxSProperty == wxT("LOGO")) {
428                 
429                         // See frmContactEditor-LoadLogo.cpp
430                 
431                         LoadLogo(wxSPropertySeg1, wxSPropertySeg2, &LogoCount);
432                         
433                 } else if (wxSProperty == wxT("SOUND")) {
434                 
435                         // See frmContactEditor-LoadSound.cpp
436                         
437                         LoadSound(wxSPropertySeg1, wxSPropertySeg2, &SoundCount);
438                         
439                 } else if (wxSProperty == wxT("CALURI")){
441                         // See frmContactEditor-LoadCalendar.cpp
442                         
443                         LoadCalURI(wxSPropertySeg1, wxSPropertySeg2, &CalAdrCount);
444                 
445                 } else if (wxSProperty == wxT("CALADRURI")){
447                         // See frmContactEditor-LoadCalendar.cpp
448                         
449                         LoadCalAdrURI(wxSPropertySeg1, wxSPropertySeg2, &CalReqAdrCount);
450                 
451                 } else if (wxSProperty == wxT("FBURL")){
453                         // See frmContactEditor-LoadCalendar.cpp
455                         LoadCalFreeBusy(wxSPropertySeg1, wxSPropertySeg2, &FreeBusyCount);
457                 } else if (wxSProperty == wxT("KEY")){
458                 
459                         // See frmContactEditor-LoadKey.cpp
460                         
461                         LoadKey(wxSPropertySeg1, wxSPropertySeg2, &KeyCount);
462                 
463                 }/* else if (wxSProperty == wxT("UID") && UIDProcessed == FALSE){
464                 
465                         UIDToken = wxSPropertySeg2;
466                         UIDProcessed = TRUE;
467                 
468                 }*/ else if (wxSProperty.Mid(0, 3) == wxT("VND")){
469                 
470                         // Split the Vendor three ways.
471                         
472                         wxStringTokenizer wSTVendorDetails(wxSPropertySeg1, wxT("-"));
473                         
474                         wxString wxSVNDID;
475                         wxString wxSVNDPropName;
476                         long ListCtrlIndex;                     
478                         while (wSTVendorDetails.HasMoreTokens() == TRUE){
479                         
480                                 wSTVendorDetails.GetNextToken();
481                                 wxSVNDID = wSTVendorDetails.GetNextToken();
482                                 wxSVNDPropName = wSTVendorDetails.GetNextToken();
483                                 break;
484                         
485                         }
486                         
487                         if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
488                         
489                                 // Setup the values for later processing.
490                         
491                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
492                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
493                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));
494                         
495                                 // Add the data to the vendor variables.
496                         
497                                 wxListItem coldata;
498                 
499                                 coldata.SetId(intValueSeek);
500                                 coldata.SetData(intValueSeek);
501                                 coldata.SetText(wxSVNDID + wxT("-") + wxSVNDPropName);
503                                 ListCtrlIndex = lboVendorNamespace->InsertItem(coldata);
504                                 
505                                 VendorList.erase(intValueSeek);
506                                 VendorListPEN.erase(intValueSeek);
507                                 VendorListElement.erase(intValueSeek);
508                         
509                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
510                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
511                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));                         
512                         
513                                 VendorCount++;
514                                 intValueSeek++;
515                         
516                         }       
517                 
518                 } else if (wxSProperty.Mid(0, 2) == wxT("X-")){
519                 
520                         long ListCtrlIndex;
521                         
522                         XTokenList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
523                         XTokenListTokens.insert(std::make_pair(intValueSeek, wxSPropertySeg1.Mid(2)));
524                         
525                         // Add to the form.
526                         
527                         wxListItem coldata;
528                 
529                         coldata.SetId(intValueSeek);
530                         coldata.SetData(intValueSeek);
531                         coldata.SetText(wxSPropertySeg1.Mid(2));
533                         ListCtrlIndex = lboXToken->InsertItem(coldata);
534                         
535                         XTokenCount++;
536                         intValueSeek++;
537                         
538                 
539                 }
540                 
541                 // Reset the variables.
542                 
543                 QuoteMode = FALSE;
544                 PropertyFind = TRUE;
545                 ExtraLineSeek = TRUE;
546                 ContactLineLen = 0;
547                 QuoteBreakPoint = 0;
548                 ContactLine.Clear();
549                 wxSProperty.Clear();    
550         
551         }
552         
553         FMTimer.SetFilename(Filename);
554         FMTimer.Start(10000, FALSE);
555         
556         EditMode = TRUE;
557         
558         return TRUE;
561 void frmContactEditor::SplitValues(wxString *PropertyLine, 
562         std::map<int,int> *SplitPoints, 
563         std::map<int,int> *SplitLength, 
564         int intSize){
565         
566         size_t intPropertyLen = PropertyLine->Len();
567         int intSplitsFound = 0;
568         int intSplitSize = 0;
569         int intSplitSeek = 0;
570         
571         for (int i = intSize; i <= intPropertyLen; i++){
573                 intSplitSize++;
574         
575                 if (PropertyLine->Mid(i, 1) == wxT(";") &&
576                     PropertyLine->Mid((i - 1), 1) != wxT("\\")){
577            
578                     if (intSplitsFound == 0){
579             
580                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
581           
582                     } else {
583            
584                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
585             
586                     }
587             
588                     SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
589             
590                     intSplitsFound++;
591                     intSplitSeek = i;
592                     intSplitSize = 0;
593             
594                 }
596         }
598         if (intSplitsFound == 0){
600                 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
601                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
603         } else {
605                 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
606                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
608         }
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy