mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
259a28e33e
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
64 lines
2.4 KiB
Swift
64 lines
2.4 KiB
Swift
/*
|
|
* Copyright (C) 2022 by Claudio Cambra <claudio.cambra@nextcloud.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import FileProvider
|
|
import Foundation
|
|
import OSLog
|
|
|
|
let ncAccountDictUsernameKey = "usernameKey"
|
|
let ncAccountDictPasswordKey = "passwordKey"
|
|
let ncAccountDictNcKitAccountKey = "ncKitAccountKey"
|
|
let ncAccountDictServerUrlKey = "serverUrlKey"
|
|
let ncAccountDictDavFilesUrlKey = "davFilesUrlKey"
|
|
|
|
struct NextcloudAccount: Equatable {
|
|
static let webDavFilesUrlSuffix: String = "/remote.php/dav/files/"
|
|
let username, password, ncKitAccount, serverUrl, davFilesUrl: String
|
|
|
|
init(user: String, serverUrl: String, password: String) {
|
|
username = user
|
|
self.password = password
|
|
ncKitAccount = user + " " + serverUrl
|
|
self.serverUrl = serverUrl
|
|
davFilesUrl = serverUrl + NextcloudAccount.webDavFilesUrlSuffix + user
|
|
}
|
|
|
|
init?(dictionary: Dictionary<String, String>) {
|
|
guard let username = dictionary[ncAccountDictUsernameKey],
|
|
let password = dictionary[ncAccountDictPasswordKey],
|
|
let ncKitAccount = dictionary[ncAccountDictNcKitAccountKey],
|
|
let serverUrl = dictionary[ncAccountDictServerUrlKey],
|
|
let davFilesUrl = dictionary[ncAccountDictDavFilesUrlKey]
|
|
else {
|
|
Logger.ncAccount.error("Could not convert dictionary to NextcloudAccount!")
|
|
return nil
|
|
}
|
|
|
|
self.username = username
|
|
self.password = password
|
|
self.ncKitAccount = ncKitAccount
|
|
self.serverUrl = serverUrl
|
|
self.davFilesUrl = davFilesUrl
|
|
}
|
|
|
|
func dictionary() -> Dictionary<String, String> {
|
|
return [
|
|
ncAccountDictUsernameKey: username,
|
|
ncAccountDictPasswordKey: password,
|
|
ncAccountDictNcKitAccountKey: ncKitAccount,
|
|
ncAccountDictServerUrlKey: serverUrl,
|
|
ncAccountDictDavFilesUrlKey: davFilesUrl
|
|
]
|
|
}
|
|
}
|