GhostingKit is an unofficial Swift SDK for the Ghost Content API to interact with Ghost blogs, allowing you to fetch posts, pages, tags, and authors detail. I was learning about Phantom Types in Swift when learning about the Ghost Content API, and that is how I came with the name PhantomKit. Then, a week later, I had a thought about how recruiters ghosted me during my internship hunt so I renamed this library to GhostingKit.
- One line Swift methods for the Ghost Content API using Swift concurrency
- Built for Swift 6.0 and compatible with iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, and visionOS 1+
You can add GhostingKit to your project using Swift Package Manager. Add the following line to your Package.swift
file:
dependencies: [
.package(url: "https://github.com/rryam/GhostingKit.git", from: "0.1.0")
]
Or add it directly in Xcode using File > Add Packages and enter the repository URL.
Import GhostingKit in your Swift file:
import GhostingKit
Then, create an instance of GhostingKit
with your Ghost site's admin domain and Content API key:
let ghostingKit = GhostingKit(
adminDomain: "your-site.ghost.io",
apiKey: "your-content-api-key"
)
To fetch posts from your Ghost blog:
do {
let postsResponse = try await ghostingKit.getPosts(limit: 15, page: 1)
for post in postsResponse.posts {
print(post.title)
}
} catch {
print("Error fetching posts: \(error)")
}
To fetch pages from your Ghost site:
do {
let pagesResponse = try await ghostingKit.getPages(limit: 10, page: 1)
for page in pagesResponse.pages {
print(page.title)
}
} catch {
print("Error fetching pages: \(error)")
}
To fetch tags from your Ghost blog:
do {
let tagsResponse = try await ghostingKit.getTags(limit: 20, include: "count.posts")
for tag in tagsResponse.tags {
print("\(tag.name): \(tag.count?.posts ?? 0) posts")
}
} catch {
print("Error fetching tags: \(error)")
}
To fetch authors from your Ghost blog:
do {
let authorsResponse = try await ghostingKit.getAuthors(limit: 5, include: "count.posts")
for author in authorsResponse.authors {
print("\(author.name): \(author.count?.posts ?? 0) posts")
}
} catch {
print("Error fetching authors: \(error)")
}
To fetch a specific post by its ID:
do {
let post = try await ghostingKit.getPost(id: "post-id", include: "authors,tags")
print("Post title: \(post.title)")
print("Author: \(post.authors?.first?.name ?? "Unknown")")
} catch {
print("Error fetching post: \(error)")
}
To fetch a specific page by its slug:
do {
let page = try await ghostingKit.getPageBySlug(slug: "about", include: "authors")
print("Page title: \(page.title)")
print("Content: \(page.html)")
} catch {
print("Error fetching page: \(error)")
}
Contributions to GhostingKit are more than welcome! Please feel free to submit a Pull Request.
GhostingKit is available under the MIT license. See the LICENSE file for more info.
Note: Not affiliated with Ghost.