oncall-mobile-ios/ntfy/Utils/ApiService.swift
2022-05-27 20:45:17 -04:00

87 lines
3.2 KiB
Swift

import Foundation
class ApiService {
private let tag = "ApiService"
static let shared = ApiService()
func poll(subscription: Subscription, completionHandler: @escaping ([Message]?, Error?) -> Void) {
guard let url = URL(string: subscription.urlString()) else {
// FIXME
return
}
let since = subscription.lastNotificationId ?? "all"
let urlString = "\(url)/json?poll=1&since=\(since)"
Log.d(tag, "Polling from \(urlString)")
fetchJsonData(urlString: urlString, completionHandler: completionHandler)
}
func poll(subscription: Subscription, messageId: String, completionHandler: @escaping (Message?, Error?) -> Void) {
let url = URL(string: "\(subscription.urlString())/json?poll=1&id=\(messageId)")!
Log.d(tag, "Polling single message from \(url)")
URLSession.shared.dataTask(with: URLRequest(url: url)) { (data, response, error) in
if let error = error {
completionHandler(nil, error)
return
}
do {
let message = try JSONDecoder().decode(Message.self, from: data!)
completionHandler(message, nil)
} catch {
completionHandler(nil, error)
}
}.resume()
}
func publish(
subscription: Subscription,
message: String,
title: String,
priority: Int = 3,
tags: [String] = []
) {
guard let url = URL(string: subscription.urlString()) else { return }
var request = URLRequest(url: url)
Log.d(tag, "Publishing to \(url)")
request.httpMethod = "POST"
request.setValue(title, forHTTPHeaderField: "Title")
request.setValue(String(priority), forHTTPHeaderField: "Priority")
request.setValue(tags.joined(separator: ","), forHTTPHeaderField: "Tags")
request.httpBody = message.data(using: String.Encoding.utf8)
URLSession.shared.dataTask(with: request) { (data, response, error) in
guard error == nil else {
Log.e(self.tag, "Error publishing message", error!)
return
}
Log.d(self.tag, "Publishing message succeeded", response)
}.resume()
}
private func fetchJsonData<T: Decodable>(urlString: String, completionHandler: @escaping ([T]?, Error?) -> ()) {
guard let url = URL(string: urlString) else { return }
let request = URLRequest(url: url)
URLSession.shared.dataTask(with: request) { (data, response, error) in
if let error = error {
print(error)
completionHandler(nil, error)
return
}
do {
let lines = String(decoding: data!, as: UTF8.self).split(whereSeparator: \.isNewline)
var notifications: [T] = []
for jsonLine in lines {
notifications.append(try JSONDecoder().decode(T.self, from: jsonLine.data(using: .utf8)!))
}
completionHandler(notifications, nil)
} catch {
print(error)
completionHandler(nil, error)
}
}.resume()
}
}