MyGit

prolificinteractive/Bellerophon

Fork: 6 Star: 12 (更新于 2024-05-26 16:46:27)

license: MIT

Language: Swift .

最后发布版本: 1.2.2 ( 2018-09-20 22:57:58)

GitHub网址

BELLEROPHON

Travis build status CocoaPods Compatible Platform Docs

Bellerophon fighting Chimera

Bellerophon is a hero of Greek mythology. He was "the greatest hero and slayer of monsters, alongside Cadmus and Perseus, before the days of Heracles", and his greatest feat was killing the Chimera, a monster that Homer depicted with a lion's head, a goat's body, and a serpent's tail.

Sometimes in a development phase, it happens for different reasons that the app available in the store has to be killed. It could be because it contains a major issue (crash, security breach...) or for a business decision (killing the app before a Sale starts, so users are not buying before the others for example).

Description

Bellerophon is a Swift implementation of a protocol and convenient methods that allow you to either kill your app or force the users to update using the App Store. By implementing Bellerophon, you will be able to easily add the logic to present a kill state view in your app, or force update view in your app.

Requirements

  • iOS 9.0+
  • Xcode 8.0+

Installation

To use in your projects, simply add the following line to your Podfile:

pod 'Bellerophon'

You can then use Bellerophon by importing it into your files:

import Bellerophon

Configuration

In order to use Bellerophon, you'll have to follow these steps:

1 - In your AppDelegate implementation file, import the project and register to the BellerophonManagerDelegate.

class AppDelegate: UIResponder, UIApplicationDelegate, BellerophonManagerDelegate {
	...
}

2 - Implement and configure BellerophonManager via BellerophonConfig. The configuration supports optional kill switch view, optional force update view, and many optional delegate methods. If a developer chooses to not supply a kill switch view nor a force update view

let killSwitchView = <YOUR VIEW>
let forceUpdateView = <YOUR VIEW>
let config = BellerophonConfig(window: window, killSwitchView: killSwitchView, forceUpdateView: forceUpdateView, delegate: self)

3 - Start the check the app status

killSwitchManager.checkAppStatus()

Here is for the Bellerophon basic implementation. Now you will need to create your own model that conforms to the Bellerophon status protocol, BellerophonObservable.

4 - Creates your model and make it conforms to BellerophonObservable.

class BellerophonModel: BellerophonObservable { }

5 - Implements the BellerophonObservable methods.

@objc func apiInactive() -> Bool {
	...
}

@objc func forceUpdate() -> Bool {
	...
}

@objc func retryInterval() -> NSTimeInterval {
	...
}

@objc func userMessage() -> String {
	...
}

@objc func setUserMessage(_ message: String) {
	...
}

6 - Now that you have your model, you are ready to implement the BellerophonManagerDelegate methods in your App Delegate.

func bellerophonStatus(_ manager: BellerophonManager,
                                  completion: @escaping (BellerophonObservable?, NSError?) -> ()) {
    // MAKE API CALL
    Alamofire.request(killSwitchURL,
                      method: .get,
                      parameters: nil,
                      encoding: JSONEncoding(),
                      headers: nil)
        .responseJSON { (response) in
            if let json = response.result.value as? JSON {
                let model = BellerophonModel(json: json)
                completion(model, nil)
            } else if let error = response.result.error as NSError? {
                completion(nil, error)
            }
    }
}

func shouldForceUpdate() {
	// A force update event should occur. An alert should be displayed to redirect to the App Store.
}

Your app is not ready to work with Bellerophon. If the status tells Bellerophon to kill the app, it will display a full screen view on top of everything and will keep it like that until the status API indicates that the app should work again. A timer is also starting based on the retry interval provided by the status object. Similar behavior will occur for force update view.

Your API and model should be able to indicate at least these informations :

  • Is the API active or inactive?
  • Should the app be forced to update?
  • What is the retry interval?
  • What is the user message to display on the kill view?

The specifications that we are using at Prolific Interactive are this one:

{
    "apiInactive": false,
    "forceUpdate": false,
    "retryInterval": 15,
    "userMessage": null
}
  • apiInactive
    • Determines if the API is active or not. If it is true the App UI should be blocked until this is false.
    • Required, type: boolean
  • forceUpdate
    • Determines if the App should force the user to update to the latest version. This should be used very sparingly. Only in emergencies or non supported app versions.
    • Required, type: boolean
  • retryInterval
    • The time in seconds to wait to ping this endpoint until apiInactive is set to false.
    • Required, type: integer
  • userMessage
    • A message to describe the issue that is going on.
    • Optional, type: string

How to test?

Currently there is not an easy way to test Bellerophon. The best way is either to force the response model from the API to return an API inactive state so you can see the kill switch, or use a web debugging proxy like Charles to set a breakpoint on the endpoint and change the API response to deactivate the API.

Contributing

To report a bug or enhancement request, feel free to file an issue under the respective heading.

Additionally, JSON responses for the test project are created via myJSON. You are welcome to create your own urls that contain any JSON for testing purposes.

If you wish to contribute to the project, fork this repo and submit a pull request. project.

License

Bellerophon is Copyright (c) 2015 Prolific Interactive. It may be redistributed under the terms specified in the LICENSE file.

Maintainers

prolific

Bellerophon is maintained and funded by Prolific Interactive. The names and logos are trademarks of Prolific Interactive.

最近版本更新:(数据更新于 2024-05-06 01:13:36)

2018-09-20 22:57:58 1.2.2

2018-01-10 06:16:21 1.2.0

2017-11-30 03:08:53 1.1.0

2017-09-29 09:47:02 1.0.3

2017-05-19 23:25:55 1.0.1

2016-10-19 04:46:44 0.2.0

2016-09-16 16:54:46 1.0.0

2016-09-14 16:05:17 0.1.4

2016-06-17 14:07:09 0.1.3

2016-04-28 06:54:48 0.1.2

prolificinteractive/Bellerophon同语言 Swift最近更新仓库

2024-06-20 05:54:09 pointfreeco/swift-composable-architecture

2024-06-18 07:16:59 MrKai77/Loop

2024-06-06 18:20:00 jordanbaird/Ice

2024-05-31 03:51:49 wordpress-mobile/WordPress-iOS

2024-05-30 21:11:16 argmaxinc/WhisperKit

2024-05-29 20:26:43 saagarjha/Ensemble