-rw-r--r-- | kabc/plugins/file/resourcefile.cpp | 49 | ||||
-rw-r--r-- | kabc/plugins/file/resourcefile.h | 1 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmdoc.cpp | 45 |
3 files changed, 93 insertions, 2 deletions
diff --git a/kabc/plugins/file/resourcefile.cpp b/kabc/plugins/file/resourcefile.cpp index 2bd9e71..c89939d 100644 --- a/kabc/plugins/file/resourcefile.cpp +++ b/kabc/plugins/file/resourcefile.cpp | |||
@@ -38,16 +38,17 @@ $Id$ | |||
38 | 38 | ||
39 | #include <kapplication.h> | 39 | #include <kapplication.h> |
40 | #include <kconfig.h> | 40 | #include <kconfig.h> |
41 | #include <kdebug.h> | 41 | #include <kdebug.h> |
42 | #include <klocale.h> | 42 | #include <klocale.h> |
43 | //US #include <ksavefile.h> | 43 | //US #include <ksavefile.h> |
44 | #include <kstandarddirs.h> | 44 | #include <kstandarddirs.h> |
45 | #include <kmessagebox.h> | 45 | #include <kmessagebox.h> |
46 | #include <kglobalsettings.h> | ||
46 | 47 | ||
47 | #include "formatfactory.h" | 48 | #include "formatfactory.h" |
48 | 49 | ||
49 | #include "resource.h" | 50 | #include "resource.h" |
50 | #include "resourcefileconfig.h" | 51 | #include "resourcefileconfig.h" |
51 | #include "stdaddressbook.h" | 52 | #include "stdaddressbook.h" |
52 | #define NO_DIRWATCH | 53 | #define NO_DIRWATCH |
53 | #include "resourcefile.h" | 54 | #include "resourcefile.h" |
@@ -74,38 +75,39 @@ __declspec(dllexport) | |||
74 | #endif | 75 | #endif |
75 | 76 | ||
76 | ResourceFile::ResourceFile( const KConfig *config ) | 77 | ResourceFile::ResourceFile( const KConfig *config ) |
77 | : Resource( config ) , mFormat( 0 ) | 78 | : Resource( config ) , mFormat( 0 ) |
78 | { | 79 | { |
79 | QString fileName, formatName, default_fileName; | 80 | QString fileName, formatName, default_fileName; |
80 | 81 | ||
81 | default_fileName = StdAddressBook::fileName(); | 82 | default_fileName = StdAddressBook::fileName(); |
82 | 83 | mLastBackupDate = -1; | |
83 | KConfig *cfg = (KConfig *)config; | 84 | KConfig *cfg = (KConfig *)config; |
84 | if ( cfg ) { | 85 | if ( cfg ) { |
85 | fileName = cfg->readEntry( "FileName", default_fileName ); | 86 | fileName = cfg->readEntry( "FileName", default_fileName ); |
86 | formatName = cfg->readEntry( "FileFormat", "vcard" ); | 87 | formatName = cfg->readEntry( "FileFormat", "vcard" ); |
87 | mFamily = cfg->readEntry( "ResourceName", "std" ); | 88 | mFamily = cfg->readEntry( "ResourceName", "std" ); |
89 | mLastBackupDate = cfg->readNumEntry( "LastBackupDate", 0 ); | ||
88 | } else { | 90 | } else { |
89 | fileName = default_fileName; | 91 | fileName = default_fileName; |
90 | formatName = "vcard"; | 92 | formatName = "vcard"; |
91 | } | 93 | } |
92 | 94 | ||
93 | init( fileName, formatName ); | 95 | init( fileName, formatName ); |
94 | } | 96 | } |
95 | 97 | ||
96 | ResourceFile::ResourceFile( const QString &fileName , | 98 | ResourceFile::ResourceFile( const QString &fileName , |
97 | const QString &formatName ) | 99 | const QString &formatName ) |
98 | : Resource( 0 ) | 100 | : Resource( 0 ) |
99 | { | 101 | { |
100 | // qDebug("ResourceFile::ResourceFile : 3 %s, %s", fileName.latin1(), formatName.latin1()); | 102 | // qDebug("ResourceFile::ResourceFile : 3 %s, %s", fileName.latin1(), formatName.latin1()); |
101 | 103 | ||
102 | 104 | ||
103 | 105 | mLastBackupDate = -1; | |
104 | init( fileName, formatName ); | 106 | init( fileName, formatName ); |
105 | } | 107 | } |
106 | 108 | ||
107 | void ResourceFile::init( const QString &fileName, const QString &formatName ) | 109 | void ResourceFile::init( const QString &fileName, const QString &formatName ) |
108 | { | 110 | { |
109 | mFormatName = formatName; | 111 | mFormatName = formatName; |
110 | 112 | ||
111 | FormatFactory *factory = FormatFactory::self(); | 113 | FormatFactory *factory = FormatFactory::self(); |
@@ -252,16 +254,59 @@ bool ResourceFile::save( Ticket *ticket ) | |||
252 | ok = saveFile.close(); | 254 | ok = saveFile.close(); |
253 | } | 255 | } |
254 | */ | 256 | */ |
255 | 257 | ||
256 | //US ToDo: write backupfile | 258 | //US ToDo: write backupfile |
257 | #ifndef NO_DIRWATCH | 259 | #ifndef NO_DIRWATCH |
258 | mDirWatch.stopScan(); | 260 | mDirWatch.stopScan(); |
259 | #endif | 261 | #endif |
262 | if ( mLastBackupDate >= 0 && mFamily != "sync_res") { | ||
263 | KConfig conf (locateLocal("config","microkdeglobalrc")); | ||
264 | conf.setGroup( "BackupSettings" ); | ||
265 | bool b_enabled = conf.readBoolEntry( "BackupEnabled" ); | ||
266 | if ( b_enabled ) { | ||
267 | int num = conf.readNumEntry( "BackupNumbers" ); | ||
268 | int d_count = conf.readNumEntry( "BackupDayCount" ); | ||
269 | bool stdDir = conf.readBoolEntry( "BackupUseDefaultDir" ); | ||
270 | QString bupDir = conf.readEntry( "BackupDatadir" ); | ||
271 | QDate reference ( 2000,1,1 ); | ||
272 | int daysTo = reference.daysTo ( QDate::currentDate() ); | ||
273 | bool saveDate = false; | ||
274 | if ( daysTo - d_count >= mLastBackupDate ) { | ||
275 | qDebug("KA: Last backup was %d days ago ", daysTo - mLastBackupDate ); | ||
276 | if ( stdDir ) | ||
277 | bupDir = KGlobalSettings::backupDataDir(); | ||
278 | int retval = KApplication::createBackup( fileName(), bupDir, num ); | ||
279 | if ( retval == 0 ) { | ||
280 | qDebug("KO: Backup cancelled. Will try again tomorrow "); | ||
281 | // retval == 0 : backup skipped for today, try again tomorrow | ||
282 | mLastBackupDate = daysTo - d_count+1; | ||
283 | saveDate = true; | ||
284 | } else if ( retval == 1 ){ | ||
285 | qDebug("KO: Backup created."); | ||
286 | // backup ok | ||
287 | mLastBackupDate = daysTo; | ||
288 | saveDate = true; | ||
289 | } else if ( retval == 2 ){ | ||
290 | qDebug("KO: Backup globally cancelled."); | ||
291 | // backup globally cancelled | ||
292 | b_enabled = false; | ||
293 | } | ||
294 | if ( !b_enabled ) { | ||
295 | conf.writeEntry( "mBackupEnabled", false ); | ||
296 | } | ||
297 | if ( saveDate ) { | ||
298 | KConfig config ( locateLocal("config","kabcrc") ); | ||
299 | config.setGroup( "Resource_" + identifier() ); | ||
300 | config.writeEntry( "LastBackupDate", mLastBackupDate ); | ||
301 | } | ||
302 | } | ||
303 | } | ||
304 | } | ||
260 | QFile info; | 305 | QFile info; |
261 | info.setName( fileName() ); | 306 | info.setName( fileName() ); |
262 | bool ok = info.open( IO_WriteOnly ); | 307 | bool ok = info.open( IO_WriteOnly ); |
263 | if ( ok ) { | 308 | if ( ok ) { |
264 | mFormat->saveAll( addressBook(), this, &info ); | 309 | mFormat->saveAll( addressBook(), this, &info ); |
265 | 310 | ||
266 | info.close(); | 311 | info.close(); |
267 | ok = true; | 312 | ok = true; |
diff --git a/kabc/plugins/file/resourcefile.h b/kabc/plugins/file/resourcefile.h index 3e9edfc..61da154 100644 --- a/kabc/plugins/file/resourcefile.h +++ b/kabc/plugins/file/resourcefile.h | |||
@@ -142,16 +142,17 @@ protected slots: | |||
142 | 142 | ||
143 | protected: | 143 | protected: |
144 | void init( const QString &fileName, const QString &format ); | 144 | void init( const QString &fileName, const QString &format ); |
145 | 145 | ||
146 | bool lock( const QString &fileName ); | 146 | bool lock( const QString &fileName ); |
147 | void unlock( const QString &fileName ); | 147 | void unlock( const QString &fileName ); |
148 | 148 | ||
149 | private: | 149 | private: |
150 | int mLastBackupDate; | ||
150 | QString mFamily; | 151 | QString mFamily; |
151 | QString mFileName2; | 152 | QString mFileName2; |
152 | QString mFormatName; | 153 | QString mFormatName; |
153 | 154 | ||
154 | FormatPlugin *mFormat; | 155 | FormatPlugin *mFormat; |
155 | 156 | ||
156 | QString mLockUniqueName; | 157 | QString mLockUniqueName; |
157 | #ifndef NO_DIRWATCH | 158 | #ifndef NO_DIRWATCH |
diff --git a/pwmanager/pwmanager/pwmdoc.cpp b/pwmanager/pwmanager/pwmdoc.cpp index 61f2616..36b0df5 100644 --- a/pwmanager/pwmanager/pwmdoc.cpp +++ b/pwmanager/pwmanager/pwmdoc.cpp | |||
@@ -30,16 +30,18 @@ | |||
30 | #include "pwminit.h" | 30 | #include "pwminit.h" |
31 | #include "libgcryptif.h" | 31 | #include "libgcryptif.h" |
32 | #ifdef PWM_EMBEDDED | 32 | #ifdef PWM_EMBEDDED |
33 | #include "pwmprefs.h" | 33 | #include "pwmprefs.h" |
34 | #include "kglobal.h" | 34 | #include "kglobal.h" |
35 | #endif | 35 | #endif |
36 | 36 | ||
37 | #include <kmessagebox.h> | 37 | #include <kmessagebox.h> |
38 | #include <kconfig.h> | ||
39 | #include <kglobalsettings.h> | ||
38 | #include <libkcal/syncdefines.h> | 40 | #include <libkcal/syncdefines.h> |
39 | 41 | ||
40 | 42 | ||
41 | #ifdef CONFIG_KWALLETIF | 43 | #ifdef CONFIG_KWALLETIF |
42 | # include "kwalletemu.h" | 44 | # include "kwalletemu.h" |
43 | #endif // CONFIG_KWALLETIF | 45 | #endif // CONFIG_KWALLETIF |
44 | 46 | ||
45 | #include <qdatetime.h> | 47 | #include <qdatetime.h> |
@@ -422,16 +424,59 @@ PwMerror PwMDoc::saveDoc(char compress, const QString *file) | |||
422 | } | 424 | } |
423 | char cryptAlgo = static_cast<char>(_cryptAlgo); | 425 | char cryptAlgo = static_cast<char>(_cryptAlgo); |
424 | char hashAlgo = static_cast<char>(_hashAlgo); | 426 | char hashAlgo = static_cast<char>(_hashAlgo); |
425 | 427 | ||
426 | if (conf()->confGlobMakeFileBackup()) { | 428 | if (conf()->confGlobMakeFileBackup()) { |
427 | if (!backupFile(filename)) | 429 | if (!backupFile(filename)) |
428 | return e_fileBackup; | 430 | return e_fileBackup; |
429 | } | 431 | } |
432 | int mLastBackupDate = 0; | ||
433 | KConfig configGlobal (locateLocal("config","pwmanagerbuprc")); | ||
434 | QFileInfo fileInfo ( filename ); | ||
435 | mLastBackupDate = configGlobal.readNumEntry( "LastBackupDate-"+ fileInfo.fileName (), 0 ); | ||
436 | KConfig config (locateLocal("config","microkdeglobalrc")); | ||
437 | config.setGroup( "BackupSettings" ); | ||
438 | bool b_enabled = config.readBoolEntry( "BackupEnabled" ); | ||
439 | if ( b_enabled ) { | ||
440 | int num = config.readNumEntry( "BackupNumbers" ); | ||
441 | int d_count = config.readNumEntry( "BackupDayCount" ); | ||
442 | bool stdDir = config.readBoolEntry( "BackupUseDefaultDir" ); | ||
443 | QString bupDir = config.readEntry( "BackupDatadir" ); | ||
444 | QDate reference ( 2000,1,1 ); | ||
445 | int daysTo = reference.daysTo ( QDate::currentDate() ); | ||
446 | bool saveDate = false; | ||
447 | if ( daysTo - d_count >= mLastBackupDate ) { | ||
448 | qDebug("KA: Last backup was %d days ago ", daysTo - mLastBackupDate ); | ||
449 | if ( stdDir ) | ||
450 | bupDir = KGlobalSettings::backupDataDir(); | ||
451 | int retval = KApplication::createBackup( filename, bupDir, num ); | ||
452 | if ( retval == 0 ) { | ||
453 | qDebug("KO: Backup cancelled. Will try again tomorrow "); | ||
454 | // retval == 0 : backup skipped for today, try again tomorrow | ||
455 | mLastBackupDate = daysTo - d_count+1; | ||
456 | saveDate = true; | ||
457 | } else if ( retval == 1 ){ | ||
458 | qDebug("KO: Backup created."); | ||
459 | // backup ok | ||
460 | mLastBackupDate = daysTo; | ||
461 | saveDate = true; | ||
462 | } else if ( retval == 2 ){ | ||
463 | qDebug("KO: Backup globally cancelled."); | ||
464 | // backup globally cancelled | ||
465 | b_enabled = false; | ||
466 | } | ||
467 | if ( !b_enabled ) { | ||
468 | config.writeEntry( "mBackupEnabled", false ); | ||
469 | } | ||
470 | if ( saveDate ) { | ||
471 | configGlobal.writeEntry( "LastBackupDate-"+ fileInfo.fileName (), mLastBackupDate ); | ||
472 | } | ||
473 | } | ||
474 | } | ||
430 | if (QFile::exists(filename)) { | 475 | if (QFile::exists(filename)) { |
431 | /* Move the existing file to some tmp file. | 476 | /* Move the existing file to some tmp file. |
432 | * When saving file succeeds, delete tmp file. Otherwise | 477 | * When saving file succeeds, delete tmp file. Otherwise |
433 | * move tmp file back. See below. | 478 | * move tmp file back. See below. |
434 | */ | 479 | */ |
435 | Randomizer *rnd = Randomizer::obj(); | 480 | Randomizer *rnd = Randomizer::obj(); |
436 | char rnd_buf[5]; | 481 | char rnd_buf[5]; |
437 | sprintf(rnd_buf, "%X%X%X%X", rnd->genRndChar() & 0xFF, rnd->genRndChar() & 0xFF, | 482 | sprintf(rnd_buf, "%X%X%X%X", rnd->genRndChar() & 0xFF, rnd->genRndChar() & 0xFF, |