WordpressReader

0.4.1

A simple asynchronous way to download and decode public Wordpress content.
ryanlintott/WordpressReader

What's New

v0.4.1

2024-04-11T14:04:39Z

Changed a couple unchanging computed properties to let

WordpressReader Logo

Swift Compatibility Platform Compatibility License - MIT Version GitHub last commit Mastodon Twitter

Overview

A simple asynchronous way to download and decode public Wordpress content.

WordpressReaderExample

Check out the example app to see how you can use this package in your iOS app.

Installation

  1. In Xcode go to File -> Add Packages
  2. Paste in the repo's url: https://github.com/ryanlintott/WordpressReader and select by version.

Usage

Import the package using import WordpressReader

Platforms

This package is compatible with iOS 14 or later.

Is this Production-Ready?

Really it's up to you. I currently use this package in my own Old English Wordhord app.

Support

If you like this package, buy me a coffee to say thanks!

ko-fi


Details

Create an instance of WordpressSite for any Wordpress.com website:

let site = WordpressSite(domain: "oldenglishwordhord.com", name: "Old English Wordhord")

Fetch posts, pages, categories, or tags asynchronously:

let posts: [WordpressPost] = try await site.fetch(.posts())
let pages: [WordpressPage] = try await site.fetch(.pages())
let categories: [WordpressCategory] = try await site.fetch(.categories())
let tags: [WordpressTag] = try await site.fetch(.tags())

Add a set of WordpressQueryItem to narrow down your request:

let request = WordpressRequest.posts([.postedAfter(aWeekAgo), .order(.asc), perPage(10)])
let posts = try await site.fetch(request)

Wordpress queries may result in several pages of items. You can customize your WordpressRequest to get the first page out quickly:

var recentPosts = WordpressRequest.posts()
recentPosts.maxPages = 1

var remainingPosts = WordpressRequest.posts()
remainingPosts.startPage = 2

self.posts = try await site.fetch(recentPosts)
self.posts += try await site.fetch(remainingPosts)

The default .fetch() will get pages in parallel but only return when they're all done. If you want each batch in order as soon as they're ready, use an async stream:

for try await batch in try await site.stream(request) {
  self.posts += posts
}

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sat Apr 13 2024 12:04:04 GMT-0900 (Hawaii-Aleutian Daylight Time)