ATProtoKit

0.10.2

A straightforward solution for using the AT Protocol and Bluesky, written in Swift.
MasterJ93/ATProtoKit

What's New

v0.10.2

2024-05-01T20:54:01Z

Version 0.10.2 includes the following changes:

  • Re-organized the Admin and Ozone-related methods and models to their correct location and correct links.
    • Also renamed them to the applicable names.
  • Add documentation for some private and public methods and model properties respectively.
  • Completed checks for conforming to the latest API Design Guidelines.
  • Micro formats to the code with respect to formatting.

Once again, thank you for your support. Please give feedback, bug reports, and contributions if you have time. You can also speak to me on Bluesky (@cjrriley.com) for any questions.

A logo for ATProtoKit, which contains three stacks of rounded rectangles in an isometric top view. At the top stack, the at symbol is in a thick weight, with clouds as the symbol’s colour. The three stacks are darker shades of blue.

ATProtoKit

A straightforward solution for using the AT Protocol and Bluesky, written in Swift.

GitHub code size in bytes

Static Badge


Caution

This API library is highly unstable. Things will change. Things are incomplete. Things will break. Until the project reaches version 1.0.0, stability will not be guaranteed.

ATProtoKit is an easy-to-understand API library that leverages the AT Protocol with the type-safety and ease-of-use you’ve come to expect with the Swift programming language. Whether you’re building a bot, a server app, or just another user-facing Bluesky client, this project should hopefully get you up to speed.

Example Usage

let config = ATProtocolConfiguration(handle: "example.bsky.social", appPassword: "app-password")

Task {
    let session = try await config.authenticate()
    switch session {
        case .success(let result):
            let atProto = ATProtoKit(session: result)
            let postResult = await atProto.createPostRecord(text: "Hello Bluesky!")
        case .failure(let error):
            print("Error: \(error)")
        }
}

Motivation

I believe Bluesky and its accompanying AT Protocol gives the perfect balance between embracing decentralization and simplifying the user experience. Because of this, I wanted a way for Swift developers to use the AT Protocol in a way that feels right at home, both client-side with Apple's platforms, and server-side with Linux. For this reason, I decided to open source this project.

Features

  • Full compatibility with Apple’s APIs for each of the platforms.
  • Written with adherence to the Swift API Design Guidelines.
  • Well-written documentation for all of the AT Protocol and Bluesky APIs.
  • A RichText helper to parse text into the applicable facets.
  • Extend the capabilities of the classes in case your project requires it.
  • A powerful Firehose API that retrieves and filters events and records in real-time.
  • An HTML-parsing system to grab search engine-friendly elements for embeds.
  • A logging tool for easy debugging.

* Not all features above have been implemented; however, they will be, soon.

Installation

You can use the Swift Package Manager to download and import the library into your project:

dependencies: [
    .package(url: "https://github.com/MasterJ93/ATProtoKit.git", from: "0.10.0")
]

Then under targets:

targets: [
    .target(
        // name: ...,
        dependencies: [
            .product(name: "ATProtoKit", package: "atprotokit")
        ]
    )
]

Roadmap

The Projects page isn't set up yet, so it'll be a while before you can see the progress for this project. However, some of the goals include:

  • Making the library fully compatible for Linux, for both client-side and server-side applications.
  • Replacing SwiftSoup to a more laser-focused Swift package dedicated for the AT Protocol and Bluesky.
  • Adding a separate package for auto-generating lexicons based on the Swift API Design Guidelines, Swift best practices, and this project’s own API design guidelines.

Quick Start

As shown in the Example Usage, it all starts with ATProtocolConfiguration, which uses the handle, app password, and pdsURL to access and create a session:

import ATProtoKit

let config = ATProtocolConfiguration(handle: "lucy.bsky.social", appPassword: "app-password")

By default, ATProtocolConfiguration conforms to https://bsky.social. However, if you’re using a different distributed service, you can specify the URL:

let result = ATProtocolConfiguration(handle: "lucy.example.social", appPassword: "app-password", pdsURL: "https://example.social")

This session contains all of the elements you need, such as the access and refresh tokens:

Task {
    let session = try await config.authenticate()

    switch session {
        case .success(let result):
            print("Result (Access Token): \(session.accessToken)")
            print("Result (Refresh Token): \(session.refreshToken)")
        case .failure(let error):
            print("Error: \(error)")
    }
}

Requirements

To use ATProtoKit in your apps, your app should target the specific version numbers:

  • iOS and iPadOS 15 or later.
  • macOS 12 or later.
  • tvOS 15 or later.
  • watchOS 8 or later.
  • visionOS 1 or later.

Warning

As of right now, Linux support is theoretically possible, but not guaranteed to be tested. The plan is to make it fully compatible with Linux by version 1.0, though this is not a required goal to get there. For other platforms (such as Android), this is also not tested, but should be theoretically possible. While it’s not a goal to make it fully compatible, contributions and feedback on the matter are welcomed.

Contributions and Feedback

While this project will change significantly, early feedback, issues, and contributions are highly welcomed and encouraged. If you'd like to contribute to this project, please be sure to read both the API Guidelines as well as the Contributor Guidelines before submitting a pull request.

If you have any questions, you can ask me on Bluesky (@cjrriley.com). And while you're at it, give me a follow! I'm also active on the Blueksy API Touchers Discord server.

License

This Swift package is using the MIT License. Please view LICENSE.md for more details.

The documentation text used by Bluesky is licenced under the MIT Licence. Please view ATPROTO-LICENSE.md for more details.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Thu May 02 2024 20:18:23 GMT-0900 (Hawaii-Aleutian Daylight Time)