mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-09 20:38:47 +01:00
53 lines
1.4 KiB
Swift
53 lines
1.4 KiB
Swift
//
|
|
// DeveloperServicesSubmitCSRRequest.swift
|
|
// Supercharge
|
|
//
|
|
// Created by Kabir Oberai on 24/07/19.
|
|
// Copyright © 2019 Kabir Oberai. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class DeveloperServicesSubmitCSRRequest: DeveloperServicesPlatformRequest {
|
|
|
|
public struct Response: Decodable, Sendable {
|
|
public let certRequest: DeveloperServicesCSRResponse
|
|
}
|
|
public typealias Value = DeveloperServicesCSRResponse
|
|
|
|
public let platform: DeveloperServicesPlatform
|
|
public let teamID: DeveloperServicesTeam.ID
|
|
public let csr: CSR
|
|
public let machineName: String
|
|
public let machineID: String
|
|
|
|
var subAction: String { return "submitDevelopmentCSR" }
|
|
var subParameters: [String: Any] {
|
|
return [
|
|
"teamId": teamID.rawValue,
|
|
"csrContent": csr.pemString,
|
|
"machineId": machineID,
|
|
"machineName": machineName
|
|
]
|
|
}
|
|
|
|
public func parse(_ response: Response) -> DeveloperServicesCSRResponse {
|
|
response.certRequest
|
|
}
|
|
|
|
public init(
|
|
platform: DeveloperServicesPlatform,
|
|
teamID: DeveloperServicesTeam.ID,
|
|
csr: CSR,
|
|
machineName: String,
|
|
machineID: String
|
|
) {
|
|
self.platform = platform
|
|
self.teamID = teamID
|
|
self.csr = csr
|
|
self.machineName = machineName
|
|
self.machineID = machineID
|
|
}
|
|
|
|
}
|