1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67//
// NetworkUtility.swift
// hyperSwitch
//
// Created by Kuntimaddi Manideep on 19/12/25.
//
import Foundation
class NetworkUtility {
static func fetchData(from endpoint: String, baseUrl: URL) async throws -> [String: Any] {
guard let url = URL(string: endpoint, relativeTo: baseUrl) else {
throw NSError(domain: "Invalid URL", code: 400, userInfo: [NSLocalizedDescriptionKey: "Invalid URL"])
}
var request = URLRequest(url: url)
request.httpMethod = "GET"
let (data, response) = try await URLSession.shared.data(for: request)
guard let httpResponse = response as? HTTPURLResponse, (200...299).contains(httpResponse.statusCode) else {
throw NSError(domain: "API Error", code: 500, userInfo: [NSLocalizedDescriptionKey: "Invalid server response"])
}
guard let json = try? JSONSerialization.jsonObject(with: data) as? [String: Any] else {
throw NSError(domain: "Serialization Error", code: 500, userInfo: [NSLocalizedDescriptionKey: "Unable to decode response"])
}
return json
}
static func postData(to endpoint: String, body: [String: Any], baseUrl: URL, headers: [String: String]? = nil) async throws -> [String: Any] {
guard let url = URL(string: endpoint, relativeTo: baseUrl) else {
throw NSError(domain: "Invalid URL", code: 400, userInfo: [NSLocalizedDescriptionKey: "Invalid URL"])
}
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
if let headers = headers {
for (key, value) in headers {
request.setValue(value, forHTTPHeaderField: key)
}
}
do {
let jsonData = try JSONSerialization.data(withJSONObject: body, options: [])
request.httpBody = jsonData
} catch {
throw NSError(domain: "Serialization Error", code: 400, userInfo: [NSLocalizedDescriptionKey: "Unable to serialize request body"])
}
let (data, _) = try await URLSession.shared.data(for: request)
guard let json = try? JSONSerialization.jsonObject(with: data) as? [String: Any] else {
throw NSError(domain: "Serialization Error", code: 500, userInfo: [NSLocalizedDescriptionKey: "Unable to decode response"])
}
return json
}
}