123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- //
- // ViewController.swift
- // SwiftyStoreKit
- //
- // Created by Andrea Bizzotto on 03/09/2015.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- import UIKit
- import StoreKit
- import SwiftyStoreKit
- enum RegisteredPurchase : String {
-
- case purchase1 = "purchase1"
- case purchase2 = "purchase2"
- case nonConsumablePurchase = "nonConsumablePurchase"
- case consumablePurchase = "consumablePurchase"
- case autoRenewablePurchase = "autoRenewablePurchase"
- case nonRenewingPurchase = "nonRenewingPurchase"
- }
- class ViewController: UIViewController {
- let AppBundleId = "com.musevisions.iOS.SwiftyStoreKit"
-
- let Purchase1 = RegisteredPurchase.purchase1
- let Purchase2 = RegisteredPurchase.autoRenewablePurchase
-
- // MARK: actions
- @IBAction func getInfo1() {
- getInfo(Purchase1)
- }
- @IBAction func purchase1() {
- purchase(Purchase1)
- }
- @IBAction func verifyPurchase1() {
- verifyPurchase(Purchase1)
- }
- @IBAction func getInfo2() {
- getInfo(Purchase2)
- }
- @IBAction func purchase2() {
- purchase(Purchase2)
- }
- @IBAction func verifyPurchase2() {
- verifyPurchase(Purchase2)
- }
- func getInfo(_ purchase: RegisteredPurchase) {
-
- NetworkActivityIndicatorManager.networkOperationStarted()
- SwiftyStoreKit.retrieveProductsInfo([AppBundleId + "." + purchase.rawValue]) { result in
- NetworkActivityIndicatorManager.networkOperationFinished()
-
- self.showAlert(self.alertForProductRetrievalInfo(result))
- }
- }
-
- func purchase(_ purchase: RegisteredPurchase) {
-
- NetworkActivityIndicatorManager.networkOperationStarted()
- SwiftyStoreKit.purchaseProduct(AppBundleId + "." + purchase.rawValue, atomically: true) { result in
- NetworkActivityIndicatorManager.networkOperationFinished()
-
- if case .success(_, let transaction) = result {
- // Deliver content from server, then:
- if let transaction = transaction {
- SwiftyStoreKit.finishTransaction(transaction)
- }
- }
- self.showAlert(self.alertForPurchaseResult(result))
- }
- }
-
- @IBAction func restorePurchases() {
-
- NetworkActivityIndicatorManager.networkOperationStarted()
- SwiftyStoreKit.restorePurchases(atomically: true) { results in
- NetworkActivityIndicatorManager.networkOperationFinished()
-
- for product in results.restoredProducts {
- // Deliver content from server, then:
- if let transaction = product.transaction {
- SwiftyStoreKit.finishTransaction(transaction)
- }
- }
- self.showAlert(self.alertForRestorePurchases(results))
- }
- }
- @IBAction func verifyReceipt() {
- NetworkActivityIndicatorManager.networkOperationStarted()
- SwiftyStoreKit.verifyReceipt(password: "your-shared-secret") { result in
- NetworkActivityIndicatorManager.networkOperationFinished()
- self.showAlert(self.alertForVerifyReceipt(result))
- if case .error(let error) = result {
- if case .noReceiptData = error {
- self.refreshReceipt()
- }
- }
- }
- }
- func verifyPurchase(_ purchase: RegisteredPurchase) {
-
- NetworkActivityIndicatorManager.networkOperationStarted()
- SwiftyStoreKit.verifyReceipt(password: "your-shared-secret") { result in
- NetworkActivityIndicatorManager.networkOperationFinished()
-
- switch result {
- case .success(let receipt):
-
- let productId = self.AppBundleId + "." + purchase.rawValue
-
- // Specific behaviour for AutoRenewablePurchase
- if purchase == .autoRenewablePurchase {
- let purchaseResult = SwiftyStoreKit.verifySubscription(
- productId: productId,
- inReceipt: receipt,
- validUntil: Date()
- )
- self.showAlert(self.alertForVerifySubscription(purchaseResult))
- }
- else {
- let purchaseResult = SwiftyStoreKit.verifyPurchase(
- productId: productId,
- inReceipt: receipt
- )
- self.showAlert(self.alertForVerifyPurchase(purchaseResult))
- }
-
- case .error(let error):
- self.showAlert(self.alertForVerifyReceipt(result))
- if case .noReceiptData = error {
- self.refreshReceipt()
- }
- }
- }
- }
- func refreshReceipt() {
- SwiftyStoreKit.refreshReceipt { result in
- self.showAlert(self.alertForRefreshReceipt(result))
- }
- }
- override var preferredStatusBarStyle: UIStatusBarStyle {
- return .lightContent
- }
- }
- // MARK: User facing alerts
- extension ViewController {
-
- func alertWithTitle(_ title: String, message: String) -> UIAlertController {
-
- let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: "OK", style: .cancel, handler: nil))
- return alert
- }
-
- func showAlert(_ alert: UIAlertController) {
- guard let _ = self.presentedViewController else {
- self.present(alert, animated: true, completion: nil)
- return
- }
- }
- func alertForProductRetrievalInfo(_ result: SwiftyStoreKit.RetrieveResults) -> UIAlertController {
-
- if let product = result.retrievedProducts.first {
- let priceString = product.localizedPrice!
- return alertWithTitle(product.localizedTitle, message: "\(product.localizedDescription) - \(priceString)")
- }
- else if let invalidProductId = result.invalidProductIDs.first {
- return alertWithTitle("Could not retrieve product info", message: "Invalid product identifier: \(invalidProductId)")
- }
- else {
- let errorString = result.error?.localizedDescription ?? "Unknown error. Please contact support"
- return alertWithTitle("Could not retrieve product info", message: errorString)
- }
- }
- func alertForPurchaseResult(_ result: SwiftyStoreKit.PurchaseResult) -> UIAlertController {
- switch result {
- case .success(let productId, _):
- print("Purchase Success: \(productId)")
- return alertWithTitle("Thank You", message: "Purchase completed")
- case .error(let error):
- print("Purchase Failed: \(error)")
- switch error {
- case .failed(let error):
- if (error as NSError).domain == SKErrorDomain {
- return alertWithTitle("Purchase failed", message: "Please check your Internet connection or try again later")
- }
- return alertWithTitle("Purchase failed", message: "Unknown error. Please contact support")
- case .invalidProductId(let productId):
- return alertWithTitle("Purchase failed", message: "\(productId) is not a valid product identifier")
- case .noProductIdentifier:
- return alertWithTitle("Purchase failed", message: "Product not found")
- case .paymentNotAllowed:
- return alertWithTitle("Payments not enabled", message: "You are not allowed to make payments")
- }
- }
- }
-
- func alertForRestorePurchases(_ results: SwiftyStoreKit.RestoreResults) -> UIAlertController {
- if results.restoreFailedProducts.count > 0 {
- print("Restore Failed: \(results.restoreFailedProducts)")
- return alertWithTitle("Restore failed", message: "Unknown error. Please contact support")
- }
- else if results.restoredProducts.count > 0 {
- print("Restore Success: \(results.restoredProducts)")
- return alertWithTitle("Purchases Restored", message: "All purchases have been restored")
- }
- else {
- print("Nothing to Restore")
- return alertWithTitle("Nothing to restore", message: "No previous purchases were found")
- }
- }
- func alertForVerifyReceipt(_ result: SwiftyStoreKit.VerifyReceiptResult) -> UIAlertController {
- switch result {
- case .success(let receipt):
- print("Verify receipt Success: \(receipt)")
- return alertWithTitle("Receipt verified", message: "Receipt verified remotly")
- case .error(let error):
- print("Verify receipt Failed: \(error)")
- switch (error) {
- case .noReceiptData :
- return alertWithTitle("Receipt verification", message: "No receipt data, application will try to get a new one. Try again.")
- default:
- return alertWithTitle("Receipt verification", message: "Receipt verification failed")
- }
- }
- }
-
- func alertForVerifySubscription(_ result: SwiftyStoreKit.VerifySubscriptionResult) -> UIAlertController {
-
- switch result {
- case .purchased(let expiresDate):
- print("Product is valid until \(expiresDate)")
- return alertWithTitle("Product is purchased", message: "Product is valid until \(expiresDate)")
- case .expired(let expiresDate):
- print("Product is expired since \(expiresDate)")
- return alertWithTitle("Product expired", message: "Product is expired since \(expiresDate)")
- case .notPurchased:
- print("This product has never been purchased")
- return alertWithTitle("Not purchased", message: "This product has never been purchased")
- }
- }
- func alertForVerifyPurchase(_ result: SwiftyStoreKit.VerifyPurchaseResult) -> UIAlertController {
-
- switch result {
- case .purchased:
- print("Product is purchased")
- return alertWithTitle("Product is purchased", message: "Product will not expire")
- case .notPurchased:
- print("This product has never been purchased")
- return alertWithTitle("Not purchased", message: "This product has never been purchased")
- }
- }
- func alertForRefreshReceipt(_ result: SwiftyStoreKit.RefreshReceiptResult) -> UIAlertController {
- switch result {
- case .success(let receiptData):
- print("Receipt refresh Success: \(receiptData.base64EncodedString)")
- return alertWithTitle("Receipt refreshed", message: "Receipt refreshed successfully")
- case .error(let error):
- print("Receipt refresh Failed: \(error)")
- return alertWithTitle("Receipt refresh failed", message: "Receipt refresh failed")
- }
- }
- }
|