Swiftpack.co - Pocket/pocket-ios as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Pocket.
Pocket/pocket-ios release/v8.0.3.24835
Mozilla's Pocket iOS App, Rebuild in Swift
⭐️ 174
🕓 3 days ago
iOS macOS
.package(url: "https://github.com/Pocket/pocket-ios.git", from: "release/v8.0.3.24835")

Pocket iOS

Welcome to the Next iteration of the Pocket iOS client, currently in development.

Getting Started

Setup Pocket Secrets File

pocket-ios requires a secrets.xcconfig file to run and secrets_test.xcconfig file to test, we have included some mock secrets in the repo but if you are a Mozillan or Pocketeer you can obtain the actual secret keys from the Pocket Team.

External contributors may generate their own Pocket API keys at https://getpocket.com/developer/ though some features (payments, for example) will still not work.

Once obtained you can run the following command from the root directory:

cp Config/secrets.xcconfig.example Config/secrets.xcconfig

Then replace values in Config/secrets.xcconfig with the values you have received.

After you will need to run the API Generation steps below.

Install Docker (Mozillans/Pocketeers Only)

To run our UITests locally, you will need an instance of Snowplow Micro running on your system on port 9090. We use Docker for this purpose. You can install Docker using Homebrew: brew install docker Or you may download it from the Docker website

Once installed you need to provide your Docker username to the iOS lead so they can add you to the Pocket docker Organisation. Once done you can simply run docker compose up in Terminal from the root Pocket directory to run an instance of Snowplow Micro.

###Snowplow Micro Snowplow micro has 4 endpoints of note:

  1. http://localhost:9090/micro/all - Lists the total number of events received and whether they are bad or good.
  2. http://localhost:9090/micro/good - Returns all the good (passed validation) events snowplow received and the data within.
  3. http://localhost:9090/micro/bad - Returns all the bad (failed validation) events snowplow received and the reason why.
  4. http://localhost:9090/micro/reset - Resets snowplow to 0 events received. Should be ran at the start of each test.

[SnowplowMicro](https://raw.github.com/Pocket/pocket-ios/develop/./Tests iOS/Support/SnowplowMicro) class is used to interact with Snowplow and provide helper assertions to make testing events easier.

Pocket Graph (API) Schema

Pocket for iOS uses Apollo client to autogenerate its API schema code. You will need to run the following commands every time the APIs you use change or if you change your API queries.

To Start run the following command:

cd PocketKit/
swift package --allow-writing-to-package-directory apollo-cli-install

Downloading Graph Schema

To download a new version of PocketKit/Sources/Sync/schema.graphqls you can run the following commands:

cd PocketKit/
./apollo-ios-cli fetch-schema

Generating API.swift

To download a new version of PocketKit/Sources/Sync/API.swift you can run the following commands:

cd PocketKit/
./apollo-ios-cli generate

Modifiying GraphQL query/mutation in code

To modify/create a request look into PocketKit/Sources/PocketGraph/user-defined-operations

Any modifications done here and after you generate above will be auto-generated in our codebase for usage.

Previously we used a singleton PocketSource, but we are moving away from that model and instead encourage the adoption of a protocol Service. As an example, you can look at SlateService.

Future

We plan on implementing the following changes in the future:

Setup Fonts

Pocket uses custom fonts: Graphik & Blanco. In order for the styles to present as expected in your local build you need to obtain the font files. Mozillians and Pocketeers can request them from the iOS manager and install them in PocketKit/Sources/Textile/Style/Typography/Fonts

Build Targets

Pocket Kit

PocketKit is the foundation of all of Pocket. Pocket is purposefully abstracted into a Kit so that we can define multiple targets in the Apple Ecosystem and still use the same code base. Here you can find the view controllers, app delegates and most entrypoints into the Pocket application.

Sync

Sync is the main API & Core Data layer that Pocket is built on. This library provides the work needed to communicate with the Pocket API and our Offline storage layer, backed by CoreData.

Textile

Textile provides the standard views and styles that can be re-used across all of the Pocket targets we create in the Apple Ecosystem.

Analytics

Analytics provides Pocket's implementation of Snowplow which we use to provide a feedback loop to the Pocket product team into how our features are used.

SaveToPocketKit

SaveToPocketKit is the code base needed to make the Pocket Share Extension function and is embeded in the SaveToPocket Extension that enables you to Save to Pocket from other applications.

SharedPocketKit

SharedPocketKit is for code that is shared between PocketKit and SaveToPocketKit. It contains code for session management and keychain storage that is used across all apps in the Pocket App Group.

Developing in Pocket

See our Contribution Guide for day-to-day Pocket development guides.

License Acknowledgements

When you add a dependncy we need to ensure that our OpenSource Licenses are up to date with all licenses we are using.

The following are the high level steps to update the notices page:

  1. Install LicensePlist brew install licenseplist
  2. Run license-plist --markdown-path Acknowledgements.markdown
  3. Open an issue on Bedrock with a description and the requested page to update with a link to a document of the generated Acknowledgements.markdown

Releasing

To release a version of Pocket following our 2-week cycle, you should follow either of the below steps depending on your release scenario. The following assumes you will be releasing to the Testflight Audience and then potentially promoting that version of the App to the store.

###If you need to increment the app version:

  1. If needed pr to increment the app version number in Git on the develop branch.
  2. Trigger the nightly-internal-pipeline manually to submit a new build to Testflight. You can see instructions for a manual build here

###If you will use the app version already in develop

  1. Find the nightly you will promote that is already Testflight Nightlies. Correlate it's build number with Bitrise and find the respective commit and write that down. You can search by build number in the Bitrise UI. a. Alternatively trigger the nightly-internal-pipeline manually to submit a new build to Testflight from the latest on the develop branch.

Once you have the build and associated commit you want to release to the Testflight audience perform the following in Git and Github:

  1. Tag the commit in git with the name release/v0.0.0.0000 where 0.0.0 is the app version, and .0000 is the build number.
  2. Push the tag to github.
  3. Draft a new GitHub release by clicking here
  4. For the name put v0.0.0.0000 where 0.0.0 is the app version, and .0000 is the build number.
  5. In the 'Choose a tag' dropdown select the tag you pushed to GitHub and make sure the target is main. This will draft the release by comparing the changes between the tag and the last release.
  6. Click Auto Generate Release Notes.
  7. Obtain the public release notes and add it as the last section.
  8. Publish the release, or save as draft until you are ready.
  9. Once ready, checkout out main locally git checkout main
  10. Merge the tag you made into main git merge release/v0.0.0.0000 and push it to GitHub. Alternativly do a PR from the tag to main and ensure you merge the PR maintaining history. (otherwise you need to merge main back into develop)

You are now done with the process in Git and Github!

App Store Connect

Releasing to Beta Testers:

  1. Find the build you want to release to testers
  2. Add in the public facing release notes in TestFlight.
  3. Add the Public Beta and Mozillians Testflight Groups to the build. They will be notified once the app passes External Beta Review and receive the update. Ensure you coordinate this with the Product team.
  4. At the same time you should also submit the App for Apple review. Set the build to manual release by checking the 'Manually release this version' radio button under 'Version Release' in App Store Connect. This ensures that after our beta cycle finishes, we can immediately launch that version to the Store. a. When you release the App to the beta audience, you should at the same time release the last beta app to the store. In coordination with the product team.

GitHub

link
Stars: 175
Last commit: 9 hours ago
jonrohan Something's broken? Yell at me @ptrpavlik. Praise and feedback (and money) is also welcome.

Dependencies

Release Notes

v8.0.3.24835
3 days ago

What's Changed

Full Changelog: https://github.com/Pocket/pocket-ios/compare/release/v8.0.2.24801...release/v8.0.3.24835

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