Easily setup a secure chat with the Parley Messaging iOS library. The Parley SDK allows you to fully customize the chat appearance and integrate it seamlessly in your own app for a great user experience.
Pay attention: You need an appSecret
to use this library. The appSecret
can be obtained by contacting Parley.
Empty | Conversation |
---|---|
![]() |
![]() |
Firebase
For remote notifications Parley relies on Google Firebase. Configure Firebase (using the installation guide) if you haven't configured Firebase yet.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding Parley as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.package(url: "[email protected]:parley-messaging/ios-library.git", .upToNextMajor(from: "3.8.x"))
]
Checkout CHANGELOG.md for the latest changes and upgrade notes.
Follow the next steps to get a minimal setup of the library.
ParleyView
to a ViewControllerThe ParleyView
can be initialized manually or directly from the Storyboard.
Manual
Open the ViewController and add the following import:
import Parley
Create an instance of the Parley view (for example) in the viewDidLoad
.
override func viewDidLoad() {
super.viewDidLoad()
let parleyView = ParleyView()
parleyView.frame = self.view.frame
self.view.addSubview(parleyView)
}
Storyboard
Add a view to the View Controller, select the Show the Identity inspector
tab and change the Custom Class
section to:
Class: ParleyView
Module: Parley
Configure Parley with your appSecret
with Parley.configure(_ secret: String)
(for example in your ViewController from step 1).
Parley.configure("appSecret")
Replace appSecret
by your Parley appSecret
. The appSecret
can be obtained by contacting Parley.
Note: calling Parley.configure()
twice is unsupported, make sure to call Parley.configure()
only once for the lifecycle of Parley.
Parley needs the FCM token to successfully handle remote notifications.
FCM Token
After retrieving an FCM token via your Firebase instance, pass it to the Parley instance in order to support remote notifications. This is can be done by using Parley.setPushToken(_:)
.
Parley.setPushToken("pushToken")
Other push types
Parley.setPushToken("pushToken", pushType: .customWebhook)
Parley.setPushToken("pushToken", pushType: .customWebhookBehindOAuth)
Parley.setPushToken("pushToken", pushType: .fcm) // Default
Handle remote notifications
Open your AppDelegate
and add Parley.handle(_ userInfo: [AnyHashable: Any])
to the didReceiveRemoteNotification
method to handle remote notifications.
extension AppDelegate : UNUserNotificationCenterDelegate {
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
_ = Parley.handle(userInfo)
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
if UIApplication.shared.applicationState == .active {
completionHandler([]) // Do not show notifications when app is in foreground
} else {
completionHandler([.alert, .sound])
}
}
}
Add a camera and photo library usage description to the Info.plist
file.
<key>NSCameraUsageDescription</key>
<string>We need access to the camera to take photos.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>We need access to the photo library to select photos.</string>
By default, Parley applies Public Key Pinning on every request executed to the chat api. The certificate(s) should be added to your project.
You can use the certificates in this repository when using the default base url:
/Example/ParleyExample/Supported Files/_.parley.nu_29-Jul-2023.cer
(Expires at: 29 Jul 2023)/Example/ParleyExample/Supported Files/_.parley.nu_26-Jun-2023.cer
(Expires at: 27 Jun 2024)When a certificate is going to expire you can safely transition by adding the new .cer
to the project. It is important to leave the old .cer
in the app until after the new one is valid. In the next release the old certificate can be removed.
More information about Public Key Pinning can be found on the website of OWASP.
Parley allows the usage of advanced configurations, such as specifying the network, specifying the user information or enabling offline messaging. In all use cases it is recommended to apply the advanced configurations before configuring the chat with Parley.configure(_ secret: String)
.
The network configuration can be set by setting a ParleyNetwork
with the Parley.setNetwork(_ network: ParleyNetwork)
method.
let network = ParleyNetwork(
url: "https://api.parley.nu/",
path: "clientApi/v1.6/",
apiVersion: .v1_6 // Must correspond to the same version in the path
)
Parley.setNetwork(network)
Don't forget to add the right certificate to the project.
Custom headers
Custom headers can be set by using the optional parameter headers
in ParleyNetwork
. The parameter accepts a [String: String]
Dictionary.
Note that the headers used by Parley itself cannot be overridden.
let headers: [String: String] = [
"X-Custom-Header": "Custom header value"
]
let network = ParleyNetwork(
url: "https://api.parley.nu/",
path: "clientApi/v1.6/",
apiVersion: .v1_6,
headers: headers
)
Parley.setNetwork(network)
The chat can be identified and encrypted by applying an authorization token to the Parley.setUserInformation(_ authorization: String)
method. The token can easily be generated on a secure location by following the Authorization header documentation.
let authorization = "ZGFhbnw5ZTA5ZjQ2NWMyMGNjYThiYjMxNzZiYjBhOTZmZDNhNWY0YzVlZjYzMGVhNGZmMWUwMjFjZmE0NTEyYjlmMDQwYTJkMTJmNTQwYTE1YmUwYWU2YTZjNTc4NjNjN2IxMmRjODNhNmU1ODNhODhkMmQwNzY2MGYxZTEzZDVhNDk1Mnw1ZDcwZjM5ZTFlZWE5MTM2YmM3MmIwMzk4ZDcyZjEwNDJkNzUwOTBmZmJjNDM3OTg5ZWU1MzE5MzdlZDlkYmFmNTU1YTcyNTUyZWEyNjllYmI5Yzg5ZDgyZGQ3MDYwYTRjZGYxMzE3NWJkNTUwOGRhZDRmMDA1MTEzNjlkYjkxNQ"
Parley.setUserInformation(authorization)
Additional information
Additionally, you can set additional information of the user by using the additionalInformation
parameter in Parley.setUserInformation()
method. The parameter accepts a [String: String]
Dictionary.
let authorization = "ZGFhbnw5ZTA5ZjQ2NWMyMGNjYThiYjMxNzZiYjBhOTZmZDNhNWY0YzVlZjYzMGVhNGZmMWUwMjFjZmE0NTEyYjlmMDQwYTJkMTJmNTQwYTE1YmUwYWU2YTZjNTc4NjNjN2IxMmRjODNhNmU1ODNhODhkMmQwNzY2MGYxZTEzZDVhNDk1Mnw1ZDcwZjM5ZTFlZWE5MTM2YmM3MmIwMzk4ZDcyZjEwNDJkNzUwOTBmZmJjNDM3OTg5ZWU1MzE5MzdlZDlkYmFmNTU1YTcyNTUyZWEyNjllYmI5Yzg5ZDgyZGQ3MDYwYTRjZGYxMzE3NWJkNTUwOGRhZDRmMDA1MTEzNjlkYjkxNQ"
let additionalInformation = [
kParleyAdditionalValueName: "John Doe",
kParleyAdditionalValueEmail: "[email protected]",
kParleyAdditionalValueAddress: "Randstad 21 30, 1314, Nederland"
]
Parley.setUserInformation(authorization, additionalInformation: additionalInformation)
Clear user information
Parley.clearUserInformation()
Offline messaging can be enabled with the Parley.enableOfflineMessaging(_ dataSource: ParleyDataSource)
method. ParleyDataSource
is a protocol that can be used to create your own (secure) data source. In addition to this, Parley provides an encrypted data source called ParleyEncryptedDataSource
which uses AES128 encryption.
if let key = "1234567890123456".data(using: .utf8), let dataSource = try? ParleyEncryptedDataSource(key: key) {
Parley.enableOfflineMessaging(dataSource)
}
Disable offline messaging
Parley.disableOfflineMessaging()
In some cases it may be handy to send a message for the user. You can easily do this by calling;
Parley.send("Lorem ipsum dolar sit amet")
Silent
It is also possible to send silent messages. Those messages are not visible in the chat.
Parley.send("User opened chat", silent: true)
Parley.setReferrer("https://parley.nu/")
By default Parley uses a random UUID as device identifier which will be stored in the user defaults. This can be overridden by passing a custom uniqueDeviceIdentifier
to the configure method:
Parley.configure("appSecret", uniqueDeviceIdentifier: "uniqueDeviceIdentifier")
When passing the uniqueDeviceIdentifier
to the configure method, Parley will not store it. Client applications are responsible for storing it and providing Parley with the same ID in this case.
Parley doesn't need to be reset usually, but in some cases this might be wanted. For example when a user logs out and then logs in with a different account.
Resetting Parley will clear the current user information and chat data that is in memory.
Requires calling the configure()
method again to use Parley.
Parley.reset()
Parley provides a ParleyViewDelegate
that can be set on the ParleyView
for receiving callbacks.
self.parleyView.delegate = self
extension ChatViewController: ParleyViewDelegate {
func didSentMessage() {
debugPrint("ChatViewController.didSentMessage")
}
}
Images
Image upload is enabled by default.
self.parleyView.imagesEnabled = false
Appearance
Parley provides a ParleyViewAppearance
that can be set on the ParleyView
to customize the chat appearance. ParleyViewAppearance
can be initialized with a regular, italic and bold font which are customizable. Take a look at ChatViewController.swift for an example of how to use the ParleyViewAppearance
.
let appearance = ParleyViewAppearance(fontRegularName: "Montserrat-Regular", fontItalicName: "Montserrat-Italic", fontBoldName: "Montserrat-Bold")
self.parleyView.appearance = appearance
Modern | |
---|---|
![]() |
![]() |
Parley is available under the MIT license. See the LICENSE file for more info.
link |
Stars: 2 |
Last commit: 5 weeks ago |
IMPORTANT: Parley now has a minimum deployment target of iOS 12.0.
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics