Swiftpack.co - vetrek/SmartNet as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by vetrek.
vetrek/SmartNet 1.0.4
Swift Networking Library
⭐️ 6
🕓 3 weeks ago
iOS macOS
.package(url: "https://github.com/vetrek/SmartNet.git", from: "1.0.4")

SmartNet

SmartNet is a comprehensive Swift HTTP networking library designed for iOS development. It simplifies complex networking tasks, offering support for multipart/form-data, concurrent uploads and downloads, and modern Swift features like async/await and Combine.

Features

  • Global Network Configuration
  • Supported Request Types: Encodable, Dictionary, String, multipart/form-data
  • Flexible Response Handling: Decodable, String, Data, Void
  • Concurrent Uploads/Downloads with progress tracking
  • Async/Await and Combine Support
  • Middleware for request/response interception

Projects using SmartNet

Installation

Swift Package Manager

https://github.com/vetrek/SmartNet.git

CocoaPods

pod 'SmartNet'

Usage Examples

Configuring the ApiClient

let apiClient = ApiClient(
  config: NetworkConfiguration(
    baseURL: URL(string: "https://api.publicapis.org")!
  )
)

Advanced

let config = NetworkConfiguration(
    baseURL: URL(string: "https://api.publicapis.org")!,
    headers: ["Content-Type": "application/json"],
    queryParameters: ["userid": "xxxxxx"],
    trustedDomains: ["api.publicapis.org"],
    requestTimeout: 120
)
let network = ApiClient(config: config)

Endpoints

// MARK: - Define Response DTO
struct Person: Codable {
  let name: string?
  let age: Int?
}

// MARK: - GET
let getEndpoint = Endpoint<Person>(
  path: "person",
  queryParameters: QueryParameters(
    parameters: [
      "name": "Jhon",
      "age": 18
    ]
  )
)

// MARK: - POST
let postEndpoint = Endpoint<Person>(
  path: "person",
  method: .post,
  body: HTTPBody(
    encodable: PersonRequst(
      name: "Jhon",
      age: 18
    )
  )
)

Async

do {
  let person = try await apiClient.request(with: getEndpoint)
  print(person.name)
} catch {
    print(error)
}

Closures

apiClient.request(with: postEndpoint) { response in
    switch response.result {
    case let .success(person):
        print(person.name)
    case let .failure(error):
        print(error.localizedDescription)
    }
}

Combine

var subscriptions = Set<AnyCancellable>()

apiClient.request(with: getEndpoint)
    .sink(receiveCompletion: { completion in
        if case .failure(let error) = completion {
            print("Error: \(error)")
        }
    }, receiveValue: { person in
        print(person.name)
    })
    .store(in: &subscriptions)

Middleware

Intercept every request and response with middleware.

// MARK: - Add a global middleware
network.addMiddleware(
  ApiClient.Middleware(
    pathComponent: "/",
    preRequestCallback: { request in
      print("Request: \(request)")
      throw NSError(
        domain: "smartnet",
        code: 1, 
        userInfo: [
          NSLocalizedDescriptionKey: "Invalid API Request"
        ]
      )
    },
    postResponseCallback: { _, _, _ in
      await testAsync()
      throw NSError(
        domain: "smartnet", 
        code: 2,
        userInfo: [
          NSLocalizedDescriptionKey: "Invalid Token Refres"
        ]
      )
    }
  )
)

// MARK: - Add path specific middleware
network.addMiddleware(
  ApiClient.Middleware(
    pathComponent: "person",
    preRequestCallback: { request in
      print("Request: \(request)")
      throw NSError(
        domain: "smartnet",
        code: 1, 
        userInfo: [
          NSLocalizedDescriptionKey: "Invalid API Request"
        ]
      )
    },
    postResponseCallback: { _, _, _ in
      print("Response received")
      throw NSError(
        domain: "smartnet", 
        code: 2,
        userInfo: [
          NSLocalizedDescriptionKey: "Invalid Token Refres"
        ]
      )
    }
  )
)

Upload

Upload files with multipart/form-data. Progress updates and response handling are supported.

let uploadTask = try! network.upload(
  with: MultipartFormEndpoint(
    path: "your/upload/path",
    form: MultipartFormData { form in
      form.addTextField(named: "key-1", value: "value-1")
      form.addDataField(named: "file", data: fileData, fileName: "example.jpg", mimeType: "image/jpeg")
    }
  )
).progress { progress in
  print("Upload Progress: \(progress.fractionCompleted)")
}.response { response in
  print("Upload Response: \(response)")
}

Downloading Files

Download files with progress tracking and easy response handling.

let downloadTask = network.download(url: URL(string: "https://example.com/file.zip")!)?
  .downloadProgress { progress, _ in
    print("Download Progress: \(progress.fractionCompleted)")
  }
  .response { response in
    print("Download Response: \(response.result)")
  }

GitHub

link
Stars: 6
Last commit: 3 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics