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.
		
		
		
		
		
			
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Swift
		
	
| import PromiseKit
 | |
| import SessionSnodeKit
 | |
| import SessionUtilitiesKit
 | |
| 
 | |
| public final class NotifyPNServerJob : NSObject, Job, NSCoding { // NSObject/NSCoding conformance is needed for YapDatabase compatibility
 | |
|     public let message: SnodeMessage
 | |
|     public var delegate: JobDelegate?
 | |
|     public var id: String?
 | |
|     public var failureCount: UInt = 0
 | |
| 
 | |
|     // MARK: Settings
 | |
|     public class var collection: String { return "NotifyPNServerJobCollection" }
 | |
|     public static let maxFailureCount: UInt = 20
 | |
| 
 | |
|     // MARK: Initialization
 | |
|     init(message: SnodeMessage) {
 | |
|         self.message = message
 | |
|     }
 | |
| 
 | |
|     // MARK: Coding
 | |
|     public init?(coder: NSCoder) {
 | |
|         guard let message = coder.decodeObject(forKey: "message") as! SnodeMessage?,
 | |
|             let id = coder.decodeObject(forKey: "id") as! String? else { return nil }
 | |
|         self.message = message
 | |
|         self.id = id
 | |
|         self.failureCount = coder.decodeObject(forKey: "failureCount") as! UInt? ?? 0
 | |
|     }
 | |
| 
 | |
|     public func encode(with coder: NSCoder) {
 | |
|         coder.encode(message, forKey: "message")
 | |
|         coder.encode(id, forKey: "id")
 | |
|         coder.encode(failureCount, forKey: "failureCount")
 | |
|     }
 | |
| 
 | |
|     // MARK: Running
 | |
|     public func execute() {
 | |
|         let _: Promise<Void> = execute()
 | |
|     }
 | |
|     
 | |
|     public func execute() -> Promise<Void> {
 | |
|         if let id = id {
 | |
|             JobQueue.currentlyExecutingJobs.insert(id)
 | |
|         }
 | |
|         let server = PushNotificationAPI.server
 | |
|         let parameters = [ "data" : message.data.description, "send_to" : message.recipient ]
 | |
|         let url = URL(string: "\(server)/notify")!
 | |
|         let request = TSRequest(url: url, method: "POST", parameters: parameters)
 | |
|         request.allHTTPHeaderFields = [ "Content-Type" : "application/json" ]
 | |
|         let promise = attempt(maxRetryCount: 4, recoveringOn: DispatchQueue.global()) {
 | |
|             OnionRequestAPI.sendOnionRequest(request, to: server, target: "/loki/v2/lsrpc", using: PushNotificationAPI.serverPublicKey).map { _ in }
 | |
|         }
 | |
|         let _ = promise.done(on: DispatchQueue.global()) { // Intentionally capture self
 | |
|             self.handleSuccess()
 | |
|         }
 | |
|         promise.catch(on: DispatchQueue.global()) { error in
 | |
|             self.handleFailure(error: error)
 | |
|         }
 | |
|         return promise
 | |
|     }
 | |
| 
 | |
|     private func handleSuccess() {
 | |
|         delegate?.handleJobSucceeded(self)
 | |
|     }
 | |
| 
 | |
|     private func handleFailure(error: Error) {
 | |
|         delegate?.handleJobFailed(self, with: error)
 | |
|     }
 | |
| }
 | |
| 
 |