Swiftpack.co - OwnID/ownid-gigya-ios-sdk as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by OwnID.
OwnID/ownid-gigya-ios-sdk 2.2.0
OwnID iOS SDK - passwordless solution for your app!
⭐️ 0
🕓 49 weeks ago
iOS
.package(url: "https://github.com/OwnID/ownid-gigya-ios-sdk.git", from: "2.2.0")

OwnIDSDK

OwnID Gigya-iOS SDK

The OwnID Gigya-iOS SDK integrates with Email/Password-based Gigya Authentication for apps that do not use Screen-Sets. If your app uses Gigya Screen-Sets, you should use the OwnID Gigya-Screen-Sets iOS SDK instead. For instructions, see the Gigya-Screen-Sets guide.

The OwnID Gigya-iOS SDK is a client library written in Swift that provides a passwordless login alternative for your iOS application by using cryptographic keys to replace the traditional password. Integrating the SDK with your iOS app adds a Skip Password option to its registration and login screens.

Table of contents

Before You Begin

Before incorporating OwnID into your iOS app, you must create an OwnID application and integrate it with your Gigya project. For step-by-step instructions, see OwnID-Gigya Integration Basics.

In addition, ensure you have done everything to add Gigya authentication to your iOS project.

Add Package Dependency

The SDK is distributed via Cocoapods. Use the Cocoapods to add the following package dependency to your project:

pod 'ownid-gigya-ios-sdk'

Add Property List File to Project

When the application starts, the OwnID SDK automatically reads OwnIDConfiguration.plist from the file system to configure the default instance that is created. At a minimum, this PLIST file defines a redirection URI and unique app id. Create OwnIDConfiguration.plist and define the following mandatory parameters:

Complete example

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>OwnIDRedirectionURL</key>
        <string>com.myapp.demo://bazco</string>
        <key>OwnIDAppID</key>
        <string>l16tzgmvvyf5qn</string>
        <key>OwnIDEnv</key>
        <string>uat</string>
</dict>
</plist>

Where:

  • The OwnIDAppID is the unique AppID, which you can obtain from the OwnID Console.
  • The OwnIDRedirectionURL is the full redirection URL, including its custom scheme. This URL custom scheme must match the one that you defined in your target.
  • The OwnIDEnv represents the OwnID environment. Configure the value uat when using OwnID’s UAT environment. You must remove this parameter for production.

Create URL Type (Custom URL Scheme)

You need to open your project and create a new URL type that corresponds to the redirection URL specified in OwnIDConfiguration.plist. In Xcode, go to Info > URL Types, and then use the URL Schemes field to specify the redirection URL. For example, if the value of the OwnIDRedirectionURL key is com.myapp.demo://bazco, then you could copy com.myapp.demo and paste it into the URL Schemes field.

Import OwnID Module

Once you have added the OwnID package dependency, you need to import the OwnID module so you can access the SDK features. As you implement OwnID in your project, add the following to your source files:

Complete example

import OwnIDGigyaSDK

Initialize the SDK

The OwnID SDK must be initialized properly using the configure() function, preferably in the main entry point of your app (in the @main App struct). For example, enter:

Complete example

@main
struct ExampleApp: App {
    init() {
        OwnID.GigyaSDK.configure()
    }
}

If you did not follow the recommendation for creating the OwnIDConfiguration.plist file, you need to specify arguments when calling the configure function. For details, see Alternative Syntax for Configure Function.

Implement the Registration Screen

Within a Model-View-ViewModel (MVVM) architecture pattern, adding the Skip Password option to your registration screen is as easy as adding an OwnID view model and subscription to your app's ViewModel layer, then adding the OwnID view to your main View. That's it! When the user selects Skip Password, your app waits for events while the user interacts with the OwnID Web App, then calls a function to register the user once they have completed the Skip Password process.

Important: When a user registers with OwnID, a random password is generated and set for the user's Gigya account.

Customize View Model

The OwnID view that inserts the Skip Password UI is bound to an instance of the OwnID view model. Before modifying your View layer, create an instance of this view model, OwnID.FlowsSDK.RegisterView.ViewModel, within your ViewModel layer:

Complete example

final class MyRegisterViewModel: ObservableObject {
    // MARK: OwnID
    let ownIDViewModel = OwnID.GigyaSDK.registrationViewModel(instance: <Your Instance Of Gigya>, emailPublisher: AnyPublisher<String, Never>)
}

Where emailPublisher provides input that user is typing into email field. See example of @Published property in demo app.

After creating this OwnID view model, your View Model layer should listen to events from the OwnID Event Publisher, which allows your app to know what actions to take based on the user's interaction. Simply add the following to your existing ViewModel layer to subscribe to the OwnID Event Publisher and respond to events (it can be placed just after the code that creates the OwnID view model instance).

Complete example

final class MyRegisterViewModel: ObservableObject {
    // MARK: OwnID
    let ownIDViewModel = OwnID.GigyaSDK.registrationViewModel(instance: <Your Instance Of Gigya>)

    init() {
     subscribe(to: ownIDViewModel.eventPublisher)
    }

     func subscribe(to eventsPublisher: OwnID.RegistrationPublisher) {
       eventsPublisher
           .receive(on: DispatchQueue.main)
           .sink { [unowned self] event in
               switch event {
               case .success(let event):
                   switch event {
                   // Event when user successfully
                   // finishes Skip Password
                   // in OwnID Web App
                   case .readyToRegister:
                     // To pass additional parameters,
                     // such as first name, use
                     // the same approach as in Gigya
                     let nameValue = "{ \"firstName\": \"\(firstName)\" }"
                     let paramsDict = ["profile": nameValue]
                     let params = OwnID.GigyaSDK.Registration.Parameters(parameters: paramsDict)
                     ownIDViewModel.register(registerParameters: params)

                   // Event when OwnID creates Gigya
                   // account and logs in user
                   case .userRegisteredAndLoggedIn:
                     // User is registered and logged in with OwnID

                   case .loading:
                     // Button displays customizable loader
		     
		   case .resetTapped:
 		     // User tapped activeted button. Rest any data if
 		     // needed. 
                   }

               case .failure(let error):
                // Handle OwnID.CoreSDK.Error here
                // For an example of handling an interruption,
                // see Errors section of this doc
               }
           }
           .store(in: &bag)
   }
}

Important: The OwnID ownIDViewModel.register function must be called in response to the .readyToRegister event. This ownIDViewModel.register function eventually calls the standard Gigya function createUser(withEmail: password:) to register the user in Gigya, so you do not need to call this Gigya function yourself.

Add the OwnID View

Inserting the OwnID view into your View layer results in the OwnID button appearing in your app. The code that creates this view accepts the OwnID view model as its argument.

It is reccomended to set height of button the same as text field and disable text field when OwnID is enabled.

Complete example

//Put RegisterView inside your main view, preferably besides password field
var body: some View {
    OwnID.GigyaSDK.createRegisterView(viewModel: viewModel.ownIDViewModel)
}

Implement the Login Screen

The process of implementing your Login screen is very similar to the one used to implement the Registration screen. When the user selects Skip Password on the Login screen and if the user has previously set up OwnID authentication, allows them to log in with OwnID.

Like the Registration screen, you add Skip Password to your application's Login screen by including an OwnID view. In this case, it is OwnID.LoginView. This OwnID view has its own view model, OwnID.LoginView.ViewModel.

Customize View Model

You need to create an instance of the view model, OwnID.LoginView.ViewModel, that the OwnID login view uses. Within your ViewModel layer, enter:

Complete example

final class MyLogInViewModel: ObservableObject {
    // MARK: OwnID
    let ownIDViewModel = OwnID.GigyaSDK.loginViewModel(instance: <Your Instance Of Gigya>, emailPublisher: AnyPublisher<String, Never>)
}

Where emailPublisher provides input that user is typing into email field. See example of @Published property in demo app.

After creating this OwnID view model, your View Model layer should listen to events from the OwnID Event Publisher, which allows your app to know what actions to take based on the user's interaction with the Skip Password option. Simply add the following to your existing ViewModel layer to subscribe to the OwnID Event Publisher and respond to events.

Complete example

final class MyLogInViewModel: ObservableObject {
    // MARK: OwnID
    let ownIDViewModel = OwnID.GigyaSDK.loginViewModel(instance: <Your Instance Of Gigya>)

     init() {
       subscribe(to: ownIDViewModel.eventPublisher)
     }

     func subscribe(to eventsPublisher: OwnID.LoginPublisher) {
       eventsPublisher
           .receive(on: DispatchQueue.main)
           .sink { [unowned self] event in
               switch event {
               case .success(let event):
                   switch event {
                   // Event when user who previously set up
                   // OwnID logs in with Skip Password
                   case .loggedIn:
                     // User is logged in with OwnID
                     
                   case .loading:
                     // Button displays customizable loader
                   }

               case .failure(let error):
                 // Handle OwnID.CoreSDK.Error here
               }
           }
           .store(in: &bag)
   }
}

Add OwnID View

Inserting the OwnID view into your View layer results in the Skip Password option appearing in your app. When the user selects Skip Password, the SDK opens a sheet to interact with the user. It is recommended that you place the OwnID view, OwnID.LoginView, immediately after the password text field. The code that creates this view accepts the OwnID view model as its argument. It is suggested that you pass user's email binding for properly creating accounts.

Complete example

//Put LoginView inside your main view, preferably below password field
var body: some View {
  //...
  OwnID.GigyaSDK.createLoginView(viewModel: viewModel.ownIDViewModel)
  //...
}

By default, tooltip popup will appear every time login view is shown.

Errors

All errors from the SDK have an OwnID.CoreSDK.Error type. You can use them, for example, to properly ask the user to perform an action.

Here are some of the possible errors:

Complete example

switch error {
case .unsecuredHttpPassed:
    print("unsecuredHttpPassed")

case .notValidRedirectionURLOrNotMatchingFromConfiguration:
    print("notValidRedirectionURLOrNotMatchingFromConfiguration")

case .emailIsInvalid:
    print("emailIsInvalid")

case .flowCancelled:
    print("flowCancelled")

case .requestResponseIsEmpty:
    print("requestResponseIsEmpty")

case .plugin(let pluginError):
    print("plugin: \(pluginError)")
}

Handling Gigya Request Data

The following example shows how to get request data from the Gigya SDK if an error occurred

Complete example

case .failure(let error):
    switch error {
    case .plugin(let gigyaPluginError):
        if let error = gigyaPluginError as? OwnID.GigyaSDK.Error {
            switch error {
            case .gigyaSDKError(let networkError, let dataDictionary):
                switch networkError {
                case .gigyaError(let model):
                    //handling the data
                    print(dataDictionary)
                    print(model.errorMessage)
                default: break
                }
            default:
                break
            }
        }

    default:
        break
    }

Advanced Configuration

Button Apperance

It is possible to set button visual settings by passing OwnID.UISDK.VisualLookConfig. Additionally, you can override default behaviour of tooltip appearing or other settings in OwnID.UISDK.TooltipVisualLookConfig. By passing widgetPosition, or text view will change it's position accordingly. It is possible to modify look & behaviour of loader by modifying default settings of loaderViewConfig parameter.

let config = OwnID.UISDK.VisualLookConfig(buttonViewConfig: .init(iconColor: .red, shadowColor: .cyan),
                                          tooltipVisualLookConfig: .init(borderColor: .indigo, tooltipPosition: .bottom),
                                          loaderViewConfig: .init(spinnerColor: .accentColor, isSpinnerEnabled: false))
OwnID.GigyaSDK.createLoginView(viewModel: ownIDViewModel, visualConfig: config)

Alternative Syntax for Configure Function 🎛

If you followed the recommendation to add OwnIDConfiguration.plist to your project, calling configure() without any arguments is enough to initialize the SDK. If you did not follow this recommendation, you can still initialize the SDK with one of the following calls. Remember that these calls should be made within your app's @main App struct.

  • OwnID.GigyaSDK.configure(plistUrl: plist) explicitly provides the path to the OwnID configuration file, where plist is the path to the file.
  • OwnID.GigyaSDK.configure(appID: String, redirectionURL: URL) explicitly defines the configuration options rather than using a PLIST file. The server app id is unique to your OwnID application, and can be obtained in the OwnID Console. The redirection URL is your app's redirection URL, including its custom scheme.

By default, SDK uses language TAGs list (well-formed IETF BCP 47 language tag) based on the device locales set by the user in system. You can override this behavior by passing language list manually by passing languages in an array.

Optionally provide list of supported languages of OwnID.CoreSDK.Languages as supportedLanguages parameter.

OwnID.GigyaSDK.configure(supportedLanguages: .init(rawValue: ["he"]))

Manually Invoke OwnID Flow

As alternative to OwnID button it is possible to use custom view to call functionality. In a nutshell, here it is the same behaviour from ownIDViewModel, just with your custom view provided.

Create simple PassthroughSubject. After you created custom view, on press send void action through this PassthroughSubject. In your viewModel, make ownIDViewModel to subscribe to this newly created publisher.

Complete example

ownIDViewModel.subscribe(to: customButtonPublisher.eraseToAnyPublisher())

Additionally you can reset view by calling ownIDViewModel.resetState().

Logging

You can enable Xcode console & Console.app logging by calling OwnID.startDebugConsoleLogger().

License

                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS


   Copyright 2022 OwnID INC.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

GitHub

link
Stars: 0
Last commit: 30 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

2.1.1
33 weeks ago

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