Skyflow’s iOS SDK can be used to securely collect, tokenize, and display sensitive data in the mobile without exposing your front-end infrastructure to sensitive data.
#Mentioning the below source will pick the podspec from Skyflow repo
#Otherwise you can add cocoapod trunk as the source
#source 'https://github.com/skyflowapi/skyflow-iOS-spec.git'
pod 'Skyflow'
Use the initialize()
method to initialize a Skyflow client as shown below.
//DemoTokenProvider is an implementation of the Skyflow.TokenProvider protocol
let demoTokenProvider = DemoTokenProvider()
let config = Skyflow.Configuration(
vaultID: <VAULT_ID>,
vaultURL: <VAULT_URL>,
tokenProvider: demoTokenProvider,
options: Skyflow.Options(
logLevel: Skyflow.LogLevel, // optional, if not specified default is ERROR
env: Skyflow.Env // optional, if not specified default is PROD
)
)
let skyflowClient = Skyflow.initialize(config)
For the tokenProvider parameter, pass in an implementation of the Skyflow.TokenProvider
protocol that declares a getBearerToken method which retrieves a Skyflow bearer token from your backend. This function will be invoked when the SDK needs to insert or retrieve data from the vault.
For example, if the response of the consumer tokenAPI is in the below format
{
"accessToken": string,
"tokenType": string
}
then, your Skyflow.TokenProvider Implementation should be as below
public class DemoTokenProvider: Skyflow.TokenProvider {
public func getBearerToken(_ apiCallback: Skyflow.Callback) {
if let url = URL(string: <YOUR_TOKEN_ENDPOINT>) {
let session = URLSession(configuration: .default)
let task = session.dataTask(with: url) {data, _, error in
if error != nil {
print(error!)
return
}
if let safeData = data {
do {
let x = try JSONSerialization.jsonObject(with: safeData, options: []) as? [String: String]
if let accessToken = x?["accessToken"] {
apiCallback.onSuccess(accessToken)
}
} catch {
apiCallback.onFailure(error)
}
}
}
task.resume()
}
}
}
NOTE: You should pass access token as String
value in the success callback of getBearerToken.
For logLevel
parameter, there are 4 accepted values in Skyflow.LogLevel
DEBUG
When Skyflow.LogLevel.DEBUG
is passed, all level of logs will be printed(DEBUG, INFO, WARN, ERROR).
INFO
When Skyflow.LogLevel.INFO
is passed, INFO logs for every event that has occurred during the SDK flow execution will be printed along with WARN and ERROR logs.
WARN
When Skyflow.LogLevel.WARN
is passed, WARN and ERROR logs will be printed.
ERROR
When Skyflow.LogLevel.ERROR
is passed, only ERROR logs will be printed.
Note
:
logLevel
is optional, by default the logLevel will be ERROR
.For env
parameter, there are 2 accepted values in Skyflow.Env
PROD
DEV
In Event Listeners, actual value of element can only be accessed inside the handler when the env
is set to DEV
.
Note
:
env
is optional, by default the env will be PROD
.env
option with caution, make sure the env is set to PROD
when using skyflow-iOS
in production.To insert data into your vault, use the skyflowClient.insert()
method.
insert(records: [String: Any], options: InsertOptions?= InsertOptions() , callback: Skyflow.Callback)
The insert()
method requires a records parameter.
The records
parameter takes an array of records to insert into the vault.
let insertCallback = InsertCallback() //A Custom callback using Skyflow.Callback
skyflowClient.insert(
records: [
"records": [
[
"table": "cards",
"fields": [
"cardNumber": "41111111111",
"cvv": "123",
]
]
]
],
callback: insertCallback
)
Skyflow returns tokens for the record you just inserted.
{
"records": [ {
"table": "cards",
"fields": {
"cardNumber": "f37186-e7e2-466f-91e5-48e12c2bcbc1",
"cvv": "1989cb56-63da-4482-a2df-1f74cd0dd1a5"
}
}]
}
The options
parameter takes a Skyflow.InsertOptions object.
InsertOptions includes a tokens
boolean that controls whether you receive tokens after inserting a record into the vault.
InsertOptions also supports the upsert feature, that lets you conditionally insert or update an existing record by specifying the unique column to use as the unique value.
For example, if you specify the ‘customer_id’ column to use for upsert, and the same customer_id already exists, the existing record will update. If the customer_id doesn't exist, the vault creates a new record.
let records = [
"records" : [
[
"table": "customers", //The table where you are inserting the record.
"fields": [
"name" : "Francis",
"customer_id" : "12345"
]
]
]
]
let upsertOptions = [["table": "customers", "column": "customer_id"]] as [[String : Any]]
let insertOptions = Skyflow.InsertOptions(tokens: false, upsert: upsertOptions)
let insertCallback = InsertCallback() //Custom callback - implementation of Skyflow.Callback
skyflowClient.insert(records: records, options: insertOptions, callback: insertCallback)
Skyflow Elements provide developers with pre-built form elements to securely collect sensitive data client-side. This reduces your PCI compliance scope by not exposing your front-end application to sensitive data. Follow the steps below to securely collect data with Skyflow Elements in your application.
First create a container for the form elements using the skyflowClient.container(type: Skyflow.ContainerType)
method as show below
let container = skyflowClient.container(type: Skyflow.ContainerType.COLLECT)
To create a collect Element, we must first construct a Skyflow.CollectElementInput object defined as shown below:
let collectElementInput = Skyflow.CollectElementInput(
table: String, // optional, the table this data belongs to
column: String, // optional, the column into which this data should be inserted
inputStyles: Skyflow.Styles, // optional styles that should be applied to the form element
labelStyles: Skyflow.Styles, // optional styles that will be applied to the label of the collect element
errorTextStyles: Skyflow.Styles, // optional styles that will be applied to the errorText of the collect element
label: String, // optional label for the form element
placeholder: String, // optional placeholder for the form element
altText: String, // (DEPRECATED) optional that acts as an initial value for the collect element
validations: ValidationSet, // optional set of validations for the input element
type: Skyflow.ElementType, // Skyflow.ElementType enum
)
The table
and column
fields indicate which table and column in the vault the Element corresponds to. Note:
address.street.line1
)table
and column
are optional only if the element is being used in invokeConnection()The inputStyles
parameter accepts a Skyflow.Styles object which consists of multiple Skyflow.Styles
objects which should be applied to the form element in the following states:
base
: all other variants inherit from these stylescomplete
: applied when the Element has valid inputempty
: applied when the Element has no inputfocus
: applied when the Element has focusinvalid
: applied when the Element has invalid inputEach Style object accepts the following properties, please note that each property is optional:
let style = Skyflow.Style(
borderColor: UIColor, // optional
cornerRadius: CGFloat, // optional
padding: UIEdgeInsets, // optional
borderWidth: CGFloat, // optional
font: UIFont, // optional
textAlignment: NSTextAlignment, // optional
textColor: UIColor // optional
)
An example Skyflow.Styles object
let styles = Skyflow.Styles(
base: style, // optional
complete: style, // optional
empty: style, // optional
focus: style, // optional
invalid: style // optional
)
The labelStyles
and errorTextStyles
fields accept the above mentioned Skyflow.Styles
object which are applied to the label
and errorText
text views respectively.
The states that are available for labelStyles
are base
and focus
.
The state that is available for errorTextStyles
is only the base
state, it shows up when there is some error in the collect element.
The parameters in Skyflow.Style
object that are respected for label
and errorText
text views are
Other parameters in the Skyflow.Style
object are ignored for label
and errorText
text views.
Finally, the type
parameter takes a Skyflow.ElementType. Each type applies the appropriate regex and validations to the form element. There are currently 5 types:
INPUT_FIELD
CARDHOLDER_NAME
CARD_NUMBER
EXPIRATION_DATE
CVV
PIN
EXPIRATION_YEAR
EXPIRATION_MONTH
The INPUT_FIELD
type is a custom UI element without any built-in validations. See the section on validations for more information on validations.
Along with CollectElementInput
we can define other options which are optional inside the CollectElementOptions
object which is described below.
Skyflow.CollectElementOptions(
required: Boolean, //indicates whether the field is marked as required. Defaults to 'false'
enableCardIcon: Boolean, //indicates whether card icon should be enabled (only for CARD_NUMBER inputs)
format: String //Format for the element (only applicable currently for "EXPIRATION_DATE")
)
required
parameter indicates whether the field is marked as required or not, if not provided, it defaults to false
enableCardIcon
paramenter indicates whether the icon is visible for the CARD_NUMBER
element, defaults to true
format
parameter takes string value and indicates the format pattern applicable to the element type, It's currently only applicable to EXPIRATION_DATE
and EXPIRATION_YEAR
element types.
The values that are accepted for EXPIRATION_DATE
are
The values that are accepted for EXPIRATION_YEAR
are
NOTE
: If not specified or invalid value is passed to the format then it takes default value
Once the Skyflow.CollectElementInput
and Skyflow.CollectElementOptions
objects are defined, add to the container using the create(input: CollectElementInput, options: CollectElementOptions)
method as shown below. The input
param takes a Skyflow.CollectElementInput
object as defined above and the options
parameter takes an Skyflow.CollectElementOptions
object as described below:
let collectElementInput = Skyflow.CollectElementInput(
table: String, // the table this data belongs to
column: String, // the column into which this data should be inserted
inputStyles: Skyflow.Styles, // optional styles that should be applied to the form element
labelStyles: Skyflow.Styles, // optional styles that will be applied to the label of the collect element
errorTextStyles: Skyflow.Styles, // optional styles that will be applied to the errorText of the collect element
label: String, // optional label for the form element
placeholder: String, // optional placeholder for the form element
altText: String, // (DEPRECATED) optional that acts as an initial value for the collect element
validations: ValidationSet, // optional set of validations for the input element
type: Skyflow.ElementType, // Skyflow.ElementType enum
)
let collectElementOptions = Skyflow.CollectElementOptions(
required: false, // indicates whether the field is marked as required. Defaults to 'false',
enableCardIcon: true, // indicates whether card icon should be enabled (only for CARD_NUMBER inputs)
format: "mm/yy" // Format for the element (only applies currently for EXPIRATION_DATE element type)
)
let element = container?.create(input: collectElementInput, options: collectElementOptions)
To specify where the Elements will be rendered on the screen, create a parent UIView (like UIStackView, etc) and you can add it as a subview programmatically.
let stackView = UIStackView()
stackView.addArrangedSubview(element)
The Skyflow Element is an implementation of the UIView so it can be used/mounted similarly. Alternatively, you can use the unmount
method to reset any collect element to it's initial state
func clearFieldsOnSubmit(_ elements: [TextField]) {
// resets all elements in the array
for element in elements {
element.unmount()
}
}
When you submit the form, call the collect(options: Skyflow.CollectOptions? = nil, callback: Skyflow.Callback)
method on the container object. The options parameter takes a Skyflow.CollectOptions
object as shown below:
// Non-PCI records
let nonPCIRecords = ["table": "persons", "fields": [["gender": "MALE"]]]
// Upsert
let upsertOptions = [["table": "cards", "column": "cardNumber"]] as [[String : Any]]
// Send the non-PCI records as additionalFields of InsertOptions (optional) and apply upsert using `upsert` field of InsertOptions (optional)
let options = Skyflow.CollectOptions(tokens: true, additionalFields: nonPCIRecords)
//Custom callback - implementation of Skyflow.callback
let insertCallback = InsertCallback()
container?.collect(callback: insertCallback, options: options)
//Initialize skyflow configuration.
let config = Skyflow.Configuration(vaultID: VAULT_ID, vaultURL: VAULT_URL, tokenProvider: demoTokenProvider)
//Initialize skyflow client.
let skyflowClient = Skyflow.initialize(config)
//Create a CollectContainer.
let container = skyflowClient.container(type: Skyflow.ContainerType.COLLECT)
//Create Skyflow.Styles with individual Skyflow.Style variants.
let baseStyle = Skyflow.Style(borderColor: UIColor.blue)
let baseTextStyle = Skyflow.Style(textColor: UIColor.black)
let completeStyle = Skyflow.Style(borderColor: UIColor.green)
val focusTextStyle = Skyflow.Style(textColor: UIColor.red)
let inputStyles = Skyflow.Styles(base: baseStyle, complete: completeStyle)
let labelStyles = Skyflow.Styles(base: baseTextStyle, focus: focusTextStyle)
let errorTextStyles = Skyflow.Styles(base: baseTextStyle)
// Create a CollectElementInput.
let input = Skyflow.CollectElementInput(
table: "cards",
column: "cardNumber",
inputStyles: inputStyles,
labelStyles: labelStyles,
errorTextStyles: errorTextStyles,
label: "card number",
placeholder: "card number",
type: Skyflow.ElementType.CARD_NUMBER
)
// Create an option to require the element.
let requiredOption = Skyflow.CollectElementOptions(required: true)
// Create a Collect Element from the Collect Container.
let skyflowElement = container?.create(input: input, options: requiredOption)
// Can interact with this object as a normal UIView Object and add to View
// Non-PCI records
let nonPCIRecords = ["table": "persons", "fields": [["gender": "MALE"]]]
//Upsert options
let upsertOptions = [["table": "cards", "column": "cardNumber"]] as [[String : Any]]
// Send the Non-PCI records as additionalFields of CollectOptions (optional) and apply upsert using optional field `upsert` of CollectOptions.
let collectOptions = Skyflow.CollectOptions(tokens: true, additionalFields: nonPCIRecords, upsert: upsertOptions)
//Implement a custom Skyflow.Callback to call on Insertion success/failure.
public class InsertCallback: Skyflow.Callback {
public func onSuccess(_ responseBody: Any) {
print(responseBody)
}
public func onFailure(_ error: Any) {
print(error)
}
}
// Initialize custom Skyflow.Callback.
let insertCallback = InsertCallback()
// Call collect method on CollectContainer.
container?.collect(callback: insertCallback, options: collectOptions)
{
"records": [ {
"table": "cards",
"fields": {
"cardNumber": "f3907186-e7e2-466f-91e5-48e12c2bcbc1"
}
}, {
"table": "persons",
"fields": {
"gender": "12f670af-6c7d-4837-83fb-30365fbc0b1e",
}
}]
}
Skyflow-iOS provides two types of validations on Collect Elements
Every Collect Element except of type INPUT_FIELD
has a set of default validations listed below:
CARD_NUMBER
: Card number validation with checkSum algorithm(Luhn algorithm), available card lengths for defined card typesCARD_HOLDER_NAME
: Name should be 2 or more symbols, valid characters should match pattern - ^([a-zA-Z\\ \\,\\.\\-\\']{2,})$
CVV
: Card CVV can have 3-4 digitsEXPIRATION_DATE
: Any date starting from current month. By default valid expiration date should be in short year format - MM/YY
PIN
: Can have 4-12 digitsCustom validations can be added to any element which will be checked after the default validations have passed. The following Custom validation rules are currently supported:
RegexMatchRule
: You can use this rule to specify any Regular Expression to be matched with the text field valueLengthMatchRule
: You can use this rule to set the minimum and maximum permissible length of the textfield valueElementValueMatchRule
: You can use this rule to match the value of one element with anotherThe Sample code below illustrates the usage of custom validations:
/*
Reset Password - A simple example that illustrates custom validations.
The below code shows two input fields with custom validations,
one to enter a password and the second to confirm the same password.
*/
var myRuleset = ValidationSet()
let strongPasswordRule = RegexMatchRule(
regex: "^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]*$",
error: "At least one letter and one number"
) // This rule enforces a strong password
let lengthRule = LengthMatchRule(
minLength: 8,
maxLength: 16,
error: "Must be between 8 and 16 digits"
) // this rule allows input length between 8 and 16 characters
// for the Password element
myRuleset.add(rule: strongPasswordRule)
myRuleset.add(rule: lengthRule)
let collectElementOptions = CollectElementOptions(required: true)
let passwordInput = CollectElementInput(
inputStyles: styles,
label: "password",
placeholder: "********",
type: .INPUT_FIELD,
validations: myRuleset
)
let password = container?.create(input: passwordInput, options: collectElementOptions)
// For confirm password element - shows error when the passwords don't match
let elementValueMatchRule = ElementValueMatchRule(element: password!, error: "passwords don't match")
let confirmPasswordInput = CollectElementInput(
inputStyles: styles,
label: "Confirm password",
placeholder: "********",
type: .INPUT_FIELD,
validations: ValidationSet(rules: [strongPasswordRule, lengthRule, elementValueMatchRule])
)
let confirmPassword = container?.create(input: confirmPasswordInput, options: collectElementOptions)
// mount elements on screen - errors will be shown if any of the validaitons fail
stackView.addArrangedSubview(password!)
stackView.addArrangedSubview(confirmPassword!)
Helps to communicate with skyflow elements / iframes by listening to an event
element!.on(eventName: Skyflow.EventName) { _ in
// handle function
}
There are 4 events in Skyflow.EventName
CHANGE
READY
FOCUS
BLUR
(state: [String: Any]) -> Void
is a callback function you provide, that will be called when the event is fired with the state object as shown below.let state = [
"elementType": Skyflow.ElementType,
"isEmpty": Bool ,
"isFocused": Bool,
"isValid": Bool,
"value": String
]
Note:
values of SkyflowElements will be returned in element state object only when env
is DEV
, else it is empty string i.e, '', but in case of CARD_NUMBER type element when the env
is PROD
for all the card types except AMEX, it will return first eight digits, for AMEX it will return first six digits and rest all digits in masked format.
// create skyflow client with loglevel:"DEBUG"
let config = Skyflow.Configuration(
vaultID: VAULT_ID,
vaultURL: VAULT_URL,
tokenProvider: demoTokenProvider,
options: Skyflow.Options(logLevel: Skyflow.LogLevel.DEBUG)
)
let skyflowClient = Skyflow.initialize(config)
let container = skyflowClient.container(type: Skyflow.ContainerType.COLLECT)
// Create a CollectElementInput
let cardNumberInput = Skyflow.CollectElementInput(
table: "cards",
column: "cardNumber",
type: Skyflow.ElementType.CARD_NUMBER,
)
let cardHolderNameInput = Skyflow.CollectElementInput(
table: "cards",
column: "cardHolderName",
type: Skyflow.ElementType.CARDHOLDER_NAME,
)
let cardNumber = container?.create(input: cardNumberInput)
let cardHolderName = container?.create(input: cardHolderNameInput)
// subscribing to CHANGE event, which gets triggered when element changes
cardNumber.on(eventName: Skyflow.EventName.CHANGE) { state in
// Your implementation when Change event occurs
print(state)
}
cardHolderName.on(eventName: Skyflow.EventName.CHANGE) { state in
// Your implementation when Change event occurs
print(state)
}
env
is DEV
[
"elementType": Skyflow.ElementType.CARD_NUMBER,
"isEmpty": false,
"isFocused": true,
"isValid": true,
"value": "4111111111111111"
]
[
"elementType": Skyflow.ElementType.CARDHOLDER_NAME,
"isEmpty": false,
"isFocused": true,
"isValid": true,
"value": "John"
]
env
is PROD
[
"elementType": Skyflow.ElementType.CARD_NUMBER,
"isEmpty": false,
"isFocused": true,
"isValid": true,
"value": "41111111XXXXXXXX"
]
[
"elementType": Skyflow.ElementType.CARDHOLDER_NAME,
"isEmpty": false,
"isFocused": true,
"isValid": true,
"value": ""
]
Helps to display custom error messages on the Skyflow Elements through the methods setError
and resetError
on the elements.
setError(error: String)
method is used to set the error text for the element, when this method is trigerred, all the current errors present on the element will be overridden with the custom error message passed. This error will be displayed on the element until resetError()
is trigerred on the same element.
resetError()
method is used to clear the custom error message that is set using setError
.
// Create skyflow client with loglevel:"DEBUG"
let config = Skyflow.Configuration(
vaultID: VAULT_ID,
vaultURL: VAULT_URL,
tokenProvider: demoTokenProvider,
options: Skyflow.Options(logLevel: Skyflow.LogLevel.DEBUG)
)
let skyflowClient = Skyflow.initialize(config)
let container = skyflowClient.container(type: Skyflow.ContainerType.COLLECT)
// Create a CollectElementInput
let cardNumberInput = Skyflow.CollectElementInput(
table: "cards",
column: "cardNumber",
type: Skyflow.ElementType.CARD_NUMBER
)
let cardNumber = container.create(input: cardNumberInput)
// Set custom error
cardNumber.setError("custom error")
// Reset custom error
cardNumber.resetError()
setValue(value: String)
method is used to set the value of the element. This method will override any previous value present in the element.
clearValue()
method is used to reset the value of the element.
Note:
This methods are only available in DEV env for testing/developmental purposes and MUST NOT be used in PROD env.
// Create skyflow client with env DEV
let config = Skyflow.Configuration(
vaultID: VAULT_ID,
vaultURL: VAULT_URL,
tokenProvider: demoTokenProvider,
options: Skyflow.Options(env: Skyflow.Env.DEV)
)
let skyflowClient = Skyflow.initialize(config)
let container = skyflowClient.container(type: Skyflow.ContainerType.COLLECT)
// Create a CollectElementInput
let cardNumberInput = Skyflow.CollectElementInput(
table: "cards",
column: "cardNumber",
type: Skyflow.ElementType.CARD_NUMBER
)
let cardNumber = container.create(input: cardNumberInput)
// Set a value programatically
cardNumber.setValue("4111111111111111")
// Clear the value
cardNumber.clearValue()
For non-PCI use-cases, retrieving data from the vault and revealing it in the mobile can be done either using the SkyflowID's or tokens as described below
For retrieving using tokens, use the detokenize(records)
method. The records parameter takes a Dictionary object that contains records
to be fetched as shown below.
[
"records": [
[
"token": String
]
]
]
An example of a detokenize call:
let getCallback = GetCallback() // Custom callback - implementation of Skyflow.Callback
let records = ["records": [["token": "45012507-f72b-4f5c-9bf9-86b133bae719"]]] as [String: Any]
skyflowClient.detokenize(records: records, callback: getCallback)
The sample response:
{
"records": [
{
"token": "131e70dc-6f76-4319-bdd3-96281e051051",
"value": "1990-01-01"
}
]
}
For retrieving using SkyflowID's, use the getById(records)
method. The records parameter takes a Dictionary object that contains records
to be fetched as shown below.
[
"records": [
[
"ids": ArrayList<String>(), // Array of SkyflowID's of the records to be fetched
"table": String, // name of table holding the above skyflow_id's
"redaction": Skyflow.RedactionType //redaction to be applied to retrieved data
]
]
]
There are 4 accepted values in Skyflow.RedactionTypes:
PLAIN_TEXT
MASKED
REDACTED
DEFAULT
An example of getById call:
let getCallback = GetCallback() // Custom callback - implementation of Skyflow.Callback
let skyflowIDs = ["f8d8a622-b557-4c6b-a12c-c5ebe0b0bfd9", "da26de53-95d5-4bdb-99db-8d8c66a35ff9"]
let record = ["ids": skyflowIDs, "table": "cards", "redaction": Skyflow.RedactionType.PLAIN_TEXT] as [String : Any]
let invalidID = ["invalid skyflow ID"]
let badRecord = ["ids": invalidID, "table": "cards", "redaction": Skyflow.RedactionType.PLAIN_TEXT] as [String : Any]
let records = ["records": [record, badRecord]]
skyflowClient.getById(records: records, callback: getCallback)
The sample response:
{
"records": [ {
"fields": {
"card_number": "4111111111111111",
"cvv": "127",
"expiry_date": "11/35",
"fullname": "myname",
"skyflow_id": "f8d8a622-b557-4c6b-a12c-c5ebe0b0bfd9"
},
"table": "cards"
}, {
"fields": {
"card_number": "4111111111111111",
"cvv": "317",
"expiry_date": "10/23",
"fullname": "sam",
"skyflow_id": "da26de53-95d5-4bdb-99db-8d8c66a35ff9"
},
"table": "cards"
}],
"errors": [ {
"error": {
"code": "404",
"description": "No Records Found"
},
"skyflow_ids": ["invalid skyflow id"]
}]
}
Skyflow Elements can be used to securely reveal data in an application without exposing your front end to the sensitive data. This is great for use-cases like card issuance where you may want to reveal the card number to a user without increasing your PCI compliance scope.
To start, create a container using the skyflowClient.container(Skyflow.ContainerType.REVEAL)
method as shown below.
let container = skyflowClient.container(type: Skyflow.ContainerType.REVEAL)
To create a reveal Element, we must first construct a Skyflow.RevealElementInput object defined as shown below:
let revealElementInput = Skyflow.RevealElementInput(
token: String, // optional, token of the data being revealed
inputStyles: Skyflow.Styles(), // optional, styles to be applied to the element
labelStyles: Skyflow.Styles(), // optional, styles to be applied to the label of the reveal element
errorTextStyles: Skyflow.Styles(), // optional styles that will be applied to the errorText of the reveal element
label: "cardNumber", // optional, label for the element,
altText: "XXXX XXXX XXXX XXXX" // optional, string that is shown before reveal, will show token if it is not provided
)
Note
:
token
is optional only if it is being used in invokeConnection()The inputStyles
parameter accepts a styles object as described in the previous section for collecting data but the only state available for a reveal element is the base state.
The labelStyles
and errorTextStyles
fields accept the above mentioned Skyflow.Styles
object as described in the previous section, the only state available for a reveal element is the base state.
The inputStyles
, labelStyles
and errorTextStyles
parameters accepts a styles object as described in the previous section for collecting data but only a single variant is available i.e. base.
An example of a inputStyles object:
let inputStyles = Skyflow.Styles(base: Skyflow.Style(borderColor: UIColor.green))
An example of a labelStyles object:
let labelStyles = Skyflow.Styles(base: Skyflow.Style(font: UIFont (name: "GILLSANSCE-ROMAN", size: 12))))
An example of a errorTextStyles object:
let labelStyles = Skyflow.Styles(base: Skyflow.Style(textColor: UIColor.red))
Once you've defined a Skyflow.RevealElementInput
object, you can use the create()
method of the container to create the Element as shown below:
let element = container.create(input: revealElementInput)
Elements used for revealing data are mounted to the screen the same way as Elements used for collecting data. Refer to Step 3 of the section above.
When the sensitive data is ready to be retrieved and revealed, call the reveal()
method on the container as shown below:
let revealCallback = RevealCallback() // Custom callback - implementation of Skyflow.Callback
container.reveal(callback: revealCallback)
Helps to display custom error messages on the Skyflow Elements through the methods setError
and resetError
on the elements.
setError(error: String)
method is used to set the error text for the element, when this method is trigerred, all the current errors present on the element will be overridden with the custom error message passed. This error will be displayed on the element until resetError()
is trigerred on the same element.
resetError()
method is used to clear the custom error message that is set using setError
.
The setToken(value: String)
method can be used to set the token of the Reveal Element. If no altText is set, the set token will be displayed on the UI as well. If altText is set, then there will be no change in the UI but the token of the element will be internally updated.
The setAltText(value: String)
method can be used to set the altText of the Reveal Element. This will cause the altText to be displayed in the UI regardless of whether the token or value is currently being displayed.
clearAltText()
method can be used to clear the altText, this will cause the element to display the token or actual value of the element. If the element has no token, the element will be empty.
// Initialize skyflow configuration
let config = Skyflow.Configuration(vaultID: <VAULT_ID>, vaultURL: <VAULT_URL>, tokenProvider: demoTokenProvider)
// Initialize skyflow client
let skyflowClient = Skyflow.initialize(config)
// Create a Reveal Container
let container = skyflowClient.container(type: Skyflow.ContainerType.REVEAL)
// Create Skyflow.Styles with individual Skyflow.Style variants
let baseStyle = Skyflow.Style(borderColor: UIColor.blue)
let baseTextStyle = Skyflow.Style(textColor: UIColor.BLACK)
let inputStyles = Skyflow.Styles(base: baseStyle)
let labelStyles = Skyflow.Styles(base: baseTextStyle)
let errorTextStyles = Skyflow.Styles(base: baseTextStyle)
// Create Reveal Elements
let cardNumberInput = Skyflow.RevealElementInput(
token: "b63ec4e0-bbad-4e43-96e6-6bd50f483f75",
inputStyles: inputStyles,
labelStyles: labelStyles,
errorTextStyles: errorTextStyles,
label: "cardnumber",
altText: "XXXX XXXX XXXX XXXX"
)
let cardNumberElement = container?.create(input: cardNumberInput)
let cvvInput = Skyflow.RevealElementInput(
token: "89024714-6a26-4256-b9d4-55ad69aa4047",
inputStyles: inputStyles,
labelStyles: labelStyles,
errorTextStyles: errorTextStyles,
label: "cvv",
altText: "XXX"
)
let cvvElement = container?.create(input: cvvInput)
// Can interact with these objects as a normal UIView Object and add to View
// set error to the element
cvvElement!.setError("custom error")
// reset error to the element
cvvElement!.resetError()
// Implement a custom Skyflow.Callback to be called on Reveal success/failure
public class RevealCallback: Skyflow.Callback {
public func onSuccess(_ responseBody: Any) {
print(responseBody)
}
public func onFailure(_ error: Any) {
print(error)
}
}
// Initialize custom Skyflow.Callback
let revealCallback = RevealCallback()
// Call reveal method on RevealContainer
container?.reveal(callback: revealCallback)
The response below shows that some tokens assigned to the reveal elements get revealed successfully, while others fail and remain unrevealed.
{
"success": [ {
"id": "b63ec4e0-bbad-4e43-96e6-6bd50f483f75"
}],
"errors": [ {
"id": "89024714-6a26-4256-b9d4-55ad69aa4047",
"error": {
"code": 404,
"description": "Tokens not found for 89024714-6a26-4256-b9d4-55ad69aa4047"
}
}]
}
If you discover a potential security issue in this project, please reach out to us at [email protected]. Please do not create public GitHub issues or Pull Requests, as malicious actors could potentially view them.
link |
Stars: 2 |
Last commit: Yesterday |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics