Browse Source

convert db

Marino Faggiana 7 years ago
parent
commit
36a3aebf17

+ 10 - 0
iOSClient/AppDelegate.m

@@ -1624,6 +1624,16 @@
         for (NSString *certificateLocation in listCertificateLocation)
             [[NCManageDatabase sharedInstance] addCertificates:certificateLocation];
     }
+    
+    if (([actualVersion compare:@"2.17.3" options:NSNumericSearch] == NSOrderedAscending)) {
+        
+        // Migrate Account Table From CoreData to Realm
+        
+        NSArray *listAccount = [CCCoreData getAllAccount];
+        for (TableAccount account in listAccount)
+            [[NCManageDatabase sharedInstance] addAccount:<#(NSString * _Nonnull)#> url:<#(NSString * _Nonnull)#> user:<#(NSString * _Nonnull)#> password:<#(NSString * _Nonnull)#>]
+
+    }
 }
 
 @end

+ 1 - 1
iOSClient/FileSystem/CCCoreData.h

@@ -50,7 +50,7 @@
 //+ (void)deleteAccount:(NSString *)account;
 //+ (TableAccount *)setActiveAccount:(NSString *)account;
 
-//+ (NSArray *)getAllAccount;
++ (NSArray *)getAllAccount;
 //+ (TableAccount *)getTableAccountFromAccount:(NSString *)account;
 //+ (NSArray *)getAllTableAccount;
 //+ (TableAccount *)getActiveAccount;

+ 15 - 0
iOSClient/FileSystem/CCCoreData.m

@@ -31,6 +31,21 @@
 #pragma mark ===== Account =====
 #pragma --------------------------------------------------------------------------------------------
 
++ (NSArray *)getAllAccount
+{
+    NSMutableArray *accounts = [NSMutableArray new];
+    NSArray *records;
+    
+    NSManagedObjectContext *context = [NSManagedObjectContext MR_defaultContext];
+    
+    records = [TableAccount MR_findAllInContext:context];
+    
+    for (TableAccount *tableAccount in records)
+        [accounts addObject:tableAccount.account];
+    
+    return accounts;
+}
+
 /*
 + (void)addAccount:(NSString *)account url:(NSString *)url user:(NSString *)user password:(NSString *)password
 {

+ 22 - 0
iOSClient/FileSystem/NCManageDatabase.swift

@@ -106,9 +106,31 @@ class NCManageDatabase: NSObject {
             addAccount.password = password
             addAccount.url = url
             addAccount.user = user
+            
+            realm.add(addAccount)
         }
     }
     
+    func addTableAccountOldDB(_ table: TableAccount) {
+        
+        let realm = try! Realm()
+        
+        let results = realm.objects(tableAccount.self).filter("account = %@", table.account!)
+        if (results.count == 0) {
+        
+            try! realm.write {
+                
+                let addAccount = tableAccount()
+                
+                
+                
+                
+                realm.add(addAccount)
+            }
+        }
+    }
+
+    
     func setAccountPassword(_ account: String, password: String) {
         
         let realm = try! Realm()