Single chat module
#
PrerequisitesIn order to send messages using the chat sdk , at first you need to establish the connection to the server. sdk provides methods for initializing the connection configuration as well as methods for making connection.
Note: Even if you don't have internet connection, you are still allowed to send messages which will be kept in offline database.Once the user connected to the internet, the messages will be sent automatically when user opens the app.
#
Preparing single chat jidAlmost of the sdk methods expect jid as a input parameter, so sdk provides below utility method to prepare the jid. The method prepares the single chat jid from the given string by using chat config provided via [com.contusflysdk.api.ChatConnectionManager.initialize] method.
Note: The below characters is not allowed in uniqueId: U+0022 (") U+0026 (&) U+0027 (') U+002F (/) U+003A (:) U+003C (<) U+003E (>) U+0040 (@).
Argument | Type | Description |
---|---|---|
UNIQUE_USER_ID | String | unique userId for preparing JID |
- Java
- Kotlin
#
Text messageText is a basic form of communication between users. sdk provides methods to send the text message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the text message for a user, you can utilise the below method.
To send your text message, you need to pass the TextMessage
object as an argument to the parameter in the sendTextMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | TextMessage | Object to hold the parameters of the text message |
CALLBACK | SendMessageCallback | callback to observe the action status |
#
Location messageLocation sharing is a famous communication between users. sdk provides methods to send the location message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the location message for a user, you can utilise the below method.
To send your location message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the location message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Location attachment feature unavailable for your plan then it will throw 403 exception.
#
Contact messageContact sharing is very useful communication between users. sdk provides methods to send the contact message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the contact message for a user, you can utilise the below method.
To send your contact message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the contact message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Contact attachment feature unavailable for your plan then it will throw 403 exception.
#
Document messageDocument sharing is very useful communication between users. sdk provides methods to send the document message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the document message for a user, you can utilise the below method.
To send your document message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the document message |
CALLBACK | SendMessageCallback | callback to observe the action status |
Note : In ChatManager
.setMediaFolderName
should be defined to set your own local path to store app media files.
caution
If Document attachment feature unavailable for your plan then it will throw 403 exception.
#
Document message with urlIf you have uploaded the document to your own media server and the you want to share document with other user. sdk provides methods to send the document message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the document message for a user, you can utilise the below method.
To send your document message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the document message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Document attachment feature unavailable for your plan then it will throw 403 exception.
#
Video messageVideo sharing is very useful communication between users. sdk provides methods to send the video message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the video message for a user, you can utilise the below method.
To send your video message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the video message |
CALLBACK | SendMessageCallback | callback to observe the action status |
Note : In ChatManager
.setMediaFolderName
should be defined to set your own local path to store app media files.
caution
If Video attachment feature unavailable for your plan then it will throw 403 exception.
#
Video message with urlIf you have uploaded the video to your own media server and the you want to share video with other user. sdk provides methods to send the video message to the end users. once the user has sent message via sdk, it will give callback with status. if you want send the video message for a user, you can utilise the below method.
To send your video message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the video message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Video attachment feature unavailable for your plan then it will throw 403 exception.
#
Image messageTo send image as a message call the below method. Calling the below method will upload the image file to the server provided during sdk initialization then send the message
To send your image message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the image message |
CALLBACK | SendMessageCallback | callback to observe the action status |
Note : In ChatManager
.setMediaFolderName
should be defined to set your own local path to store app media files.
caution
If Image attachment feature unavailable for your plan then it will throw 403 exception.
#
Image message with urlTo send image as a message call the below method. You can upload the image file to your storage of choice and send the url and other necessary info while sending the message.
To send your image message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the image message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Image attachment feature unavailable for your plan then it will throw 403 exception.
#
Audio messageTo send audio as a message call the below method. Calling the below method will upload the audio file to the server provided during sdk initialization then send the message
To send your audio message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the audio message |
CALLBACK | SendMessageCallback | callback to observe the action status |
Note : In ChatManager
.setMediaFolderName
should be defined to set your own local path to store app media files.
caution
If Audio attachment feature unavailable for your plan then it will throw 403 exception.
#
Audio message with urlTo send audio as a message call the below method. You can upload the audio file to your storage of choice and send the url and other necessary info while sending the message.
To send your audio message, you need to pass the FileMessage
object as an argument to the parameter in the sendFileMessage()
method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | FileMessage | Object to hold the parameters of the audio message |
CALLBACK | SendMessageCallback | callback to observe the action status |
caution
If Audio attachment feature unavailable for your plan then it will throw 403 exception.
#
Get media messagesIf you want to get the media messages for a user/group, you can utilise the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
JID | String | jid of the chat user |
info
Above methods fetch media messages which are successfully sent and received.
caution
If media message feature unavailable for your plan then it will throw 403 exception.
To get the uploaded/downloaded status of a media message Refer the snippet below.
For received media message:
- Java
- Kotlin
For sent media message:
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MEDIA_MESSAGE_ID | String | id of a message |
#
Delete MessagesDelete messsage is a feature which is found in modern messaging apps which allows the user to delete the message once it is sent.Once you sent the message, you can able to delete the messages by using built in sdk methods.
#
Delete for meIf you want to delete the messages for yourself only then you can use the below method.
Note: The messages will not be deleted to the receipient.
Argument | Type | Description |
---|---|---|
TO_JID | String | jid of the chat user |
MESSAGE_ID_LIST | List<String> | List of messageId to be deleted |
DELETE_CHAT_TYPE | DeleteChatType | DeleteChatType.chat for single chat, DeleteChatType.groupchat for group chat |
IS_MEDIA_DELETE | boolean | true , if media file also to be deleted in the local storage |
CALLBACK | ChatActionListener | callback to observe the action status |
- Java
- Kotlin
#
Delete for everyoneIf you want to delete the messages for yourself and receiver then you can use the below method. The messages will also be deleted to the receipient.
Argument | Type | Description |
---|---|---|
TO_JID | String | jid of the chat user |
MESSAGE_ID_LIST | List<String> | List of messageId to be deleted |
DELETE_CHAT_TYPE | DeleteChatType | DeleteChatType.chat for single chat, DeleteChatType.groupchat for group chat |
IS_MEDIA_DELETE | boolean | true , if media file also to be deleted in the local storage |
CALLBACK | ChatActionListener | callback to observe the action status |
- Java
- Kotlin
caution
If delete message feature unavailable for your plan then it will throw 403 exception.
#
Favourite MessagesFavourite messags is feature which allows users to mark some messages as favourites. so that they can see those important messages in future without searching for them in chat. Once you marked messages as favourite, you can get those from sdk to show it in your app's screen.
Argument | Type | Description |
---|---|---|
MESSAGE_ID | String | messageId of the message |
CHAT_USER_JID | String | jid of the chat user |
IS_FAVOURITE | boolean | true , if you are adding to favourites.false to remove from favourites |
CALLBACK | ChatActionListener | callback to observe the action status |
#
Make favouriteYou can mark the messages as favourite by using the below method.
- Java
- Kotlin
#
Remove favouriteYou can remove the messages from favourite by using the below method.
- Java
- Kotlin
#
Get all favourite messagesThe below method will return all the favourite messages from the local db.
- Java
- Kotlin
#
Unfavorite all the favourite messagesYou can unfavourite all the favourite messages by using the below method.
- Java
- Kotlin
caution
If favourite message feature unavailable for your plan then it will throw 403 exception.
#
Message receiptsinfo
To obserserve message's sent, delivered, read status refer the message callback listeners.
Message receipts is a feature which allows users to know the status of the sent messages as well as the delivered and read time for the messages. The chat app users are well informed about the status of the sent messages.
You need to update the ongoing chat user jid always whenever you are entering/exiting the chat window of user by using below method. it is used by sdk internally for receipts.
In activity/fragment onResume
, set the user jid as ongoing chat user.
Argument | Type | Description |
---|---|---|
JID | String | jid of the chat user |
- Java
- Kotlin
Then, in activity/fragment onPause
, clear the ongoing chat user.
- Java
- Kotlin
#
Mark messages as deliveredYou don't need to send the delivery receipts explicitly, it will be automatically sent by the sdk.
#
Mark messages as readOnce the user reads the messages of user B or entered into the chat window of user B, you can mark the messages as read by using the below method. In this case user B's jid will be passed to the below method. Then read receipts will be managed by sdk. sdk will utilise the ongoing chat user jid which is set by this method ChatManager.setOnGoingChatUser(jid: String)
Argument | Type | Description |
---|---|---|
JID | String | jid of the chat user |
- Java
- Kotlin
info
Sdk is having a built-in functions to prepare the JID, Group JID.
#
Get single chat message statusTo get the time of sent, delivered and seen status of a message sent by you in a single one to one chat call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_ID | String | message id of the message |
#
Get messages of a user/group by pagination####Initialization
First, create a FetchMessageListParams
instance. Here, you need to set the message filter to determine the message order and the starting point of the message list in the chat view.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
JID | String | Jid of the user/group |
MESSAGE_ID | String | Message id of the starting point optional |
MESSAGE_TIME | String | Message time of the starting point optional |
INCLUSIVE | boolean | If true starting point message will included in message list default false |
ASCENDING_ORDER | boolean | If true message list will be returned ascendingOrder by message time default false |
LIMIT | int | No of messages will be fetched for each request default 50 |
META_DATA | MetaDataMessageList | metadata of the Messages optional |
TOPIC_ID | String | Topic ID to be sent |
Second, create a FetchMessageListQuery
instance.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_LIST_PARAM | FetchMessageListParams | Insatance of 'FetchMessageListParams' |
#
Load Initial MessagesTo fetch initial conversations between you and a single chat user or group, call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
CALLBACK | FlyCallback | 'FlyCallback' implemented as lambda expression |
#
Load Previous MessagesTo fetch previous conversations between you and a single chat user or group, call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
CALLBACK | FlyCallback | 'FlyCallback' implemented as lambda expression |
#
Load Next MessagesTo fetch next conversations between you and a single chat user or group, call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
CALLBACK | FlyCallback | 'FlyCallback' implemented as lambda expression |
#
Check Previous Set of Messages Available or notTo check previous set of conversations available or not, call the below method.
- Java
- Kotlin
#
Check Next Set of Messages AvailableTo check next set of conversations available or not, call the below method.
- Java
- Kotlin
#
Check Message Fetching InProgressTo check conversations fetching in progress or not, call the below method.
- Java
- Kotlin
#
Get messages of a user/groupTo fetch all the conversation between you and a single chat user or group, call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
JID | String | Jid of the user/group |
warning
Above method getting messages from Local DB, If you have chat history feature use loadMessages()
#
Get message from dbWhenever you get callbacks from MessageEventsListener, you will get messageId sometimes at those times you can fetch the message from db using the below method and then update your list as well as notify the list view.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MESSAGE_ID | String | messageId of the message |
#
Get messages using idTo get list of messages from a given message id's call the below method.
- Java
- Kotlin
#
Remove unread message separatorTo remove the unread message separator in a chat conversation list call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
JID | String | Jid of the user/group |
#
Get recalled messages of a user/groupTo get the recalled messages of a user/group call the below method.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
JID | String | Jid of the user/group |
#
Upload/Download media messageWhenever you receive a media message from a user, or when retrying to upload a already sent media message you can use built-in sdk functions to upload/download the media content / The below method is applicable only if you are using sdk media server, otherwise you have to handle uploading/downloading the media by your own implementation as well as update the status of the media message.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MEDIA_MESSAGE_ID | String | Id of the media message |
Note : In ChatManager
.setMediaFolderName
should be defined to set your own local path to store app media files.
#
Update media status#
Update media download statusIf you are using your own media service, whenever the media downloading status is changed, you have to update the media message status like below.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MEDIA_MESSAGE_ID | String | id of the media message |
PROGRESS_STATUS | int | percentage of the file downloaded till now (0-100) |
DATA_TRANSFERRED | long | size of the file downloaded till now |
DOWNLOAD_STATUS | MediaDownloadStatus | status of the upload |
status
value could be one of the values below:
- Java
- Kotlin
#
Update media upload statusIf you are using your own media service, whenever the media uploading status is changed, you have to update the media message status like below.
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
MEDIA_MESSAGE_ID | String | id of the media message |
PROGRESS_STATUS | int | percentage of the file uploaded till now (0-100) |
DATA_TRANSFERRED | long | size of the file uploaded till now |
UPLOAD_STATUS | MediaUploadStatus | status of the upload |
status
value could be one of the values below:
- Java
- Kotlin
#
Cancel upload/downloadWhenever you would like to cancel upload/download of a media message , you can use built-in sdk functions to cancel the media content upload/download.The below method is applicable only if you are using sdk media server, otherwise you have to handle cancelling the media by your own implementation as well as update the status of the media message.
Argument | Type | Description |
---|---|---|
MESSAGE_ID | String | message id of the media message |
- Java
- Kotlin
When the user cancelled the media download, then user need to restart the download using
FlyMessenger.downloadMedia(messageId: String)
method. In case of media upload, the upload initiated once the user sent the message In case of retry callFlyMessenger.uploadMedia(messageId: String)
.
info
Sdk is having a built-in functions to prepare the JID, Group JID.
#
Upload/Download push notification tap actionWhenever you would like to add tap action for Upload/Download push notification, you can use built-in sdk functions to add action listener to upload/download push notification. The below method is applicable only if you are using sdk media server, otherwise you have to handle tap action by your own implementation.
In your application class oncreate
method add the below method:
- Java
- Kotlin
#
Encrypt/Decrypt media filesTo encrypt all media files while uploading to server, call below method to enable media encryption in SDK
- Java
- Kotlin
Note: If this flag enabled then all type of media files will be encrypted while uploading and stored in server, On receiver side media files will be decrypted while downloading and readable file will be stored in local storage.
#
Delete all messages in local dbTo delete all the chat conversation messages and their relevent data like message statuses call the below method.
- Java
- Kotlin
caution
If delete message feature unavailable for your plan then it will throw 403 exception.