Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wangzhizhou/exarotonapi

API for Exaroton Platform in Swift
https://github.com/wangzhizhou/exarotonapi

Last synced: about 2 months ago
JSON representation

API for Exaroton Platform in Swift

Awesome Lists containing this project

README

        

# ExarotonAPI

[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fwangzhizhou%2FExarotonAPI%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/wangzhizhou/ExarotonAPI) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fwangzhizhou%2FExarotonAPI%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/wangzhizhou/ExarotonAPI)

[API][Exaroton API Website] for [Exaroton][Exaroton] in Swift

## Usage 🤩

this swift package include products as follow:

1. **ExarotonHTTP**: httpclient which generated use the [swift-openapi-generator][Swift OpenAPI Generator]
and [exaroton openapi spec][Exaroton OpenAPI Doc], you can view OpenAPI Spec with [Swagger Editor][Swagger Editor]

2. **ExarotonWebSocket**: websocket feature

### HTTPClient

Add Dependency: `ExarotonHTTP`:

```swift

import PackageDescription

let package = Package(
...
dependencies: [
.package(url: "https://github.com/wangzhizhou/ExarotonAPI.git", branch: "main"),
],
targets: [
.target(
name: "Your Target Name",
dependencies: [
.product(name: "ExarotonHTTP", package: "ExarotonAPI"),
...
]),
]
...
)

```

Use ExarotonHTTP:

```swift
import Foundation
import ExarotonHTTP
import OpenAPIRuntime
import OpenAPIURLSession

@main
struct HttpUsageDemo {
static func main() async throws {

let yourAccountToken = ProcessInfo.processInfo.environment["TOKEN"] ?? ""

let client = Client(
serverURL: try! Servers.server1(),
transport: URLSessionTransport(),
middlewares: [AuthenticationMiddleware(token: yourAccountToken)]
)
let response = try await client.getAccount()

switch response {
case .ok(let ok):
if let data = try ok.body.json.data,
let name = data.name {
print("account: \(name)")
}
case .forbidden(let forbidden):
let json = try forbidden.body.json
print(json.error ?? "")
case .undocumented(let statusCode, let unknownPayload):
print("statusCode:\(statusCode), payload: \(unknownPayload)")
}
}
}

```

For More Use Cases:

- 👉🏻 [http client unittests][openapi http client cases]

### WebSocketClient

Add Dependency: `ExarotonWebSocket`:

```swift

import PackageDescription

let package = Package(
...
dependencies: [
.package(url: "https://github.com/wangzhizhou/ExarotonAPI.git", branch: "main"),
],
targets: [
.target(
name: "Your Target Name",
dependencies: [
.product(name: "ExarotonWebSocket", package: "ExarotonAPI"),
...
]),
]
...
)

```

Use ExarotonWebSocket:

```swift
import Foundation
import ExarotonWebSocket
import Starscream

@main
struct WebSocketUsageDemo {

static func main() async throws {

let socket = ExarotonWebSocketAPI(
token: ProcessInfo.processInfo.environment["TOKEN"] ?? "your_account_token",
serverId: ProcessInfo.processInfo.environment["SERVER"] ?? "your_server_id",
delegate: ServerEventHandler()
)

socket.client.connect()
try await wait(for: socket.timeout)

let consoleStreamMessage = ExarotonMessage(
stream: .console,
type: StreamType.start,
data: ["tail": 2]
)
socket.client.write(stringData: try consoleStreamMessage.toData) {
print("console stream start completed!")
}

try await wait(for: socket.timeout)
socket.client.disconnect()
}

static func wait(for minutes: Double) async throws {
try await Task.sleep(nanoseconds: UInt64(1_000_000_000 * minutes))
}
}

final class ServerEventHandler: ExarotonServerEventHandlerProtocol {

func onReady(serverID: String?) {
print("server ready: \(serverID ?? "")")
}

func onConnected() {
print("server connected")
}

func onDisconnected(reason: String?) {
print("server disconnected: \(reason ?? "")")
}

func onKeepAlive() {
print("server keep alive")
}

func onStatusChanged(_ info: ExarotonWebSocket.Server?) {
if let info {
print("status: \(info)")
}
}

func onStreamStarted(_ stream: ExarotonWebSocket.StreamCategory?) {
if let stream {
print("stream started: \(stream)")
}
}

func onStreamStopped(_ stream: StreamCategory?) {
if let stream {
print("stream stopped: \(stream)")
}
}

func onConsoleLine(_ line: String?) {
if let line {
print("console line: \(line)")
}
}

func onTick(_ tick: ExarotonWebSocket.Tick?) {
if let tick {
print("tick: \(tick)")
}
}

func onStats(_ stats: ExarotonWebSocket.Stats?) {
if let stats {
print("stats: \(stats)")
}
}

func onHeap(_ heap: ExarotonWebSocket.Heap?) {
if let heap {
print("heap: \(heap)")
}
}

// MARK: WebSocketDelegate
func didReceive(event: Starscream.WebSocketEvent, client: any Starscream.WebSocketClient) {
// all events, if you need process them your self
}
}
```
For More Use Cases:
- 👉🏻 [Send Message][websocket send message cases]
- 👉🏻 [Receive Message][websocket message receive handler]

## Developemnt 👨🏻‍💻

If you want to contribute to this project, you can use your Mac device and install the Xcode`(>= 15.3)` to get start

Run shell command as follow to get the project and open it with xcode editor:

```bash
$ git clone https://github.com/wangzhizhou/ExarotonAPI.git
$ cd ExarotonAPI && xed .
```

when you open the project with Xcode, and the dependencies be pull to local,
you can open the target schema:

![schema](./images/schema.png)

add environment variables `TOKEN` `SERVER` `POOL` secrets of you into the schema

![xcode schema env vars](./images/environments.png)

---

- **TOKEN**: The Exaroton Account Info for you to access your server

- **SERVER**: The Exaroton Server ID

- **POOL**: The Exaroton Credit Pool ID

---

Then you can run all this unit test with shortcut: `CMD+U`,
or you can run tests from menu of `Product -> Test`

If things goes well, you will see the unittests run and success or fail as follow:

![unit tests](./images/unittests.png)

[Exaroton]:
[Exaroton API Website]:
[Exaroton OpenAPI Doc]:
[Swagger Editor]:
[Swift OpenAPI Generator]:
[openapi http client cases]:
[websocket send message cases]:
[websocket message receive handler]: