passepartout-apple/PassepartoutLibrary/Sources/PassepartoutProvidersImpl/Strategies/LocationMapper.swift

84 lines
2.8 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// LocationMapper.swift
// Passepartout
//
// Created by Davide De Rosa on 3/14/22.
2023-03-17 15:56:19 +00:00
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
2022-04-12 13:09:14 +00:00
//
// https://github.com/passepartoutvpn
//
// This file is part of Passepartout.
//
// Passepartout 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 3 of the License, or
// (at your option) any later version.
//
// Passepartout 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.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import CoreData
import Foundation
2022-06-23 21:31:01 +00:00
import PassepartoutCore
2023-05-24 16:19:47 +00:00
import PassepartoutProviders
2022-04-12 13:09:14 +00:00
import PassepartoutServices
struct LocationMapper: DTOMapper, ModelMapper {
private let context: NSManagedObjectContext
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
init(_ context: NSManagedObjectContext) {
self.context = context
}
func toDTO(_ ws: WSProviderLocation) -> CDInfrastructureLocation {
let location = CDInfrastructureLocation(context: context)
location.countryCode = ws.countryCode
let servers = ws.servers.compactMap(ServerMapper(context).toDTO)
servers.forEach {
$0.location = location
}
location.addToServers(Set(servers) as NSSet)
return location
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static func toModel(_ dto: CDInfrastructureLocation) -> ProviderLocation? {
guard let infrastructureDTO = dto.category?.infrastructure,
let providerDTO = infrastructureDTO.provider,
let providerMetadata = ProviderMapper.toModel(providerDTO),
let vpnProtocolString = infrastructureDTO.vpnProtocol,
let vpnProtocol = VPNProtocolType(rawValue: vpnProtocolString),
let categoryName = dto.category?.name,
let countryCode = dto.countryCode else {
Utils.assertCoreDataDecodingFailed()
2022-04-12 13:09:14 +00:00
return nil
}
2023-03-17 20:55:47 +00:00
// var server: ProviderServer?
// if dto.servers?.count == 1, let serverDTO = dto.servers?.anyObject() as? CDInfrastructureServer {
// server = ServerMapper.toModel(serverDTO)
// }
let servers = (dto.servers?.allObjects as? [CDInfrastructureServer])?
.compactMap(ServerMapper.toModel)
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
return ProviderLocation(
providerMetadata: providerMetadata,
vpnProtocol: vpnProtocol,
categoryName: categoryName,
countryCode: countryCode,
// servers: server.map {
// [$0]
// }
servers: servers
2022-04-12 13:09:14 +00:00
)
}
}