mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import Foundation
 | |
| import Combine
 | |
| import SessionSnodeKit
 | |
| import SessionUtilitiesKit
 | |
| 
 | |
| public enum FileServerAPI {
 | |
|     
 | |
|     // MARK: - Settings
 | |
|     
 | |
|     public static let oldServer = "http://88.99.175.227"
 | |
|     public static let oldServerPublicKey = "7cb31905b55cd5580c686911debf672577b3fb0bff81df4ce2d5c4cb3a7aaa69"
 | |
|     public static let server = "http://filev2.getsession.org"
 | |
|     public static let serverPublicKey = "da21e1d886c6fbaea313f75298bd64aab03a97ce985b46bb2dad9f2089c8ee59"
 | |
|     
 | |
|     /// **Note:** The max file size is 10,000,000 bytes (rather than 10MiB which would be `(10 * 1024 * 1024)`), 10,000,000
 | |
|     /// exactly will be fine but a single byte more will result in an error
 | |
|     public static let maxFileSize = 10_000_000
 | |
|     
 | |
|     /// Standard timeout is 10 seconds which is a little too short for file upload/download with slightly larger files
 | |
|     public static let fileDownloadTimeout: TimeInterval = 30
 | |
|     public static let fileUploadTimeout: TimeInterval = 60
 | |
|     
 | |
|     // MARK: - File Storage
 | |
|     
 | |
|     public static func upload(_ file: Data) -> AnyPublisher<FileUploadResponse, Error> {
 | |
|         let request = Request(
 | |
|             method: .post,
 | |
|             server: server,
 | |
|             endpoint: Endpoint.file,
 | |
|             headers: [
 | |
|                 .contentDisposition: "attachment",
 | |
|                 .contentType: "application/octet-stream"
 | |
|             ],
 | |
|             body: Array(file)
 | |
|         )
 | |
| 
 | |
|         return send(request, serverPublicKey: serverPublicKey, timeout: FileServerAPI.fileUploadTimeout)
 | |
|             .decoded(as: FileUploadResponse.self)
 | |
|     }
 | |
|     
 | |
|     public static func download(_ fileId: String, useOldServer: Bool) -> AnyPublisher<Data, Error> {
 | |
|         let serverPublicKey: String = (useOldServer ? oldServerPublicKey : serverPublicKey)
 | |
|         let request = Request<NoBody, Endpoint>(
 | |
|             server: (useOldServer ? oldServer : server),
 | |
|             endpoint: .fileIndividual(fileId: fileId)
 | |
|         )
 | |
|         
 | |
|         return send(request, serverPublicKey: serverPublicKey, timeout: FileServerAPI.fileDownloadTimeout)
 | |
|     }
 | |
| 
 | |
|     public static func getVersion(_ platform: String) -> AnyPublisher<String, Error> {
 | |
|         let request = Request<NoBody, Endpoint>(
 | |
|             server: server,
 | |
|             endpoint: .sessionVersion,
 | |
|             queryParameters: [
 | |
|                 .platform: platform
 | |
|             ]
 | |
|         )
 | |
|         
 | |
|         return send(request, serverPublicKey: serverPublicKey, timeout: HTTP.defaultTimeout)
 | |
|             .decoded(as: VersionResponse.self)
 | |
|             .map { response in response.version }
 | |
|             .eraseToAnyPublisher()
 | |
|     }
 | |
|     
 | |
|     // MARK: - Convenience
 | |
|     
 | |
|     private static func send<T: Encodable>(
 | |
|         _ request: Request<T, Endpoint>,
 | |
|         serverPublicKey: String,
 | |
|         timeout: TimeInterval
 | |
|     ) -> AnyPublisher<Data, Error> {
 | |
|         let urlRequest: URLRequest
 | |
|         
 | |
|         do {
 | |
|             urlRequest = try request.generateUrlRequest()
 | |
|         }
 | |
|         catch {
 | |
|             return Fail(error: error)
 | |
|                 .eraseToAnyPublisher()
 | |
|         }
 | |
|         
 | |
|         return OnionRequestAPI
 | |
|             .sendOnionRequest(
 | |
|                 urlRequest,
 | |
|                 to: request.server,
 | |
|                 with: serverPublicKey,
 | |
|                 timeout: timeout
 | |
|             )
 | |
|             .subscribe(on: DispatchQueue.global(qos: .userInitiated))
 | |
|             .tryMap { _, response -> Data in
 | |
|                 guard let response: Data = response else { throw HTTPError.parsingFailed }
 | |
|                 
 | |
|                 return response
 | |
|             }
 | |
|             .eraseToAnyPublisher()
 | |
|     }
 | |
| }
 |