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.
		
		
		
		
		
			
		
			
				
	
	
		
			75 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			75 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import Foundation
 | |
| 
 | |
| extension SnodeAPI {
 | |
|     public final class DeleteAllMessagesRequest: SnodeAuthenticatedRequestBody, UpdatableTimestamp {
 | |
|         enum CodingKeys: String, CodingKey {
 | |
|             case namespace
 | |
|         }
 | |
|         
 | |
|         /// The message namespace from which to delete messages.  The request will delete all messages
 | |
|         /// from the specific namespace, or from all namespaces when not provided
 | |
|         ///
 | |
|         /// **Note:** If omitted when sending the request, messages are deleted from the default namespace
 | |
|         /// only (namespace 0)
 | |
|         let namespace: SnodeAPI.Namespace
 | |
|         
 | |
|         override var verificationBytes: [UInt8] {
 | |
|             /// Ed25519 signature of `( "delete_all" || namespace || timestamp )`, where
 | |
|             /// `namespace` is the empty string for the default namespace (whether explicitly specified or
 | |
|             /// not), and otherwise the stringified version of the namespace parameter (i.e. "99" or "-42" or "all").
 | |
|             /// The signature must be signed by the ed25519 pubkey in `pubkey` (omitting the leading prefix).
 | |
|             /// Must be base64 encoded for json requests; binary for OMQ requests.
 | |
|             SnodeAPI.Endpoint.deleteAll.path.bytes
 | |
|                 .appending(contentsOf: namespace.verificationString.bytes)
 | |
|                 .appending(contentsOf: timestampMs.map { "\($0)" }?.data(using: .ascii)?.bytes)
 | |
|         }
 | |
|         
 | |
|         // MARK: - Init
 | |
|         
 | |
|         public init(
 | |
|             namespace: SnodeAPI.Namespace,
 | |
|             pubkey: String,
 | |
|             timestampMs: UInt64,
 | |
|             ed25519PublicKey: [UInt8],
 | |
|             ed25519SecretKey: [UInt8]
 | |
|         ) {
 | |
|             self.namespace = namespace
 | |
|             
 | |
|             super.init(
 | |
|                 pubkey: pubkey,
 | |
|                 ed25519PublicKey: ed25519PublicKey,
 | |
|                 ed25519SecretKey: ed25519SecretKey,
 | |
|                 timestampMs: timestampMs
 | |
|             )
 | |
|         }
 | |
|         
 | |
|         // MARK: - Coding
 | |
|         
 | |
|         override public func encode(to encoder: Encoder) throws {
 | |
|             var container: KeyedEncodingContainer<CodingKeys> = encoder.container(keyedBy: CodingKeys.self)
 | |
|             
 | |
|             // The 'all' namespace should be sent through as `all` instead of a numerical value
 | |
|             switch namespace {
 | |
|                 case .all: try container.encode(namespace.verificationString, forKey: .namespace)
 | |
|                 default: try container.encode(namespace, forKey: .namespace)
 | |
|             }
 | |
|             
 | |
|             try super.encode(to: encoder)
 | |
|         }
 | |
|         
 | |
|         // MARK: - UpdatableTimestamp
 | |
|         
 | |
|         public func with(timestampMs: UInt64) -> DeleteAllMessagesRequest {
 | |
|             return DeleteAllMessagesRequest(
 | |
|                 namespace: self.namespace,
 | |
|                 pubkey: self.pubkey,
 | |
|                 timestampMs: timestampMs,
 | |
|                 ed25519PublicKey: self.ed25519PublicKey,
 | |
|                 ed25519SecretKey: self.ed25519SecretKey
 | |
|             )
 | |
|         }
 | |
|     }
 | |
| }
 |