bot-connector-whatsapp.24.9.0.source-code.WebhookActionConverter.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2017/2021 e-voyageurs technologies
*
* 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.
*/
package ai.tock.bot.connector.whatsapp
import ai.tock.bot.connector.whatsapp.UserHashedIdCache.createHashedId
import ai.tock.bot.connector.whatsapp.model.webhook.WhatsAppButtonMessage
import ai.tock.bot.connector.whatsapp.model.webhook.WhatsAppMessage
import ai.tock.bot.connector.whatsapp.model.webhook.WhatsAppTextMessage
import ai.tock.bot.connector.whatsapp.model.webhook.WhatsAppVoiceMessage
import ai.tock.bot.engine.action.SendSentence
import ai.tock.bot.engine.event.Event
import ai.tock.bot.engine.user.PlayerId
import ai.tock.bot.engine.user.PlayerType
import ai.tock.shared.injector
import ai.tock.stt.STT
import com.github.salomonbrys.kodein.instance
/**
*
*/
internal object WebhookActionConverter {
private val stt: STT by injector.instance()
fun toEvent(message: WhatsAppMessage, applicationId: String, client: WhatsAppClient): Event? {
val senderId = createHashedId(message.from)
return when (message) {
is WhatsAppTextMessage -> SendSentence(
PlayerId(senderId),
applicationId,
PlayerId(applicationId, PlayerType.bot),
message.text.body
)
is WhatsAppVoiceMessage -> {
client.getMedia(message.voice.id)
?.let { audio ->
stt.parse(audio)?.let { text ->
SendSentence(
PlayerId(senderId),
applicationId,
PlayerId(applicationId, PlayerType.bot),
text
)
}
}
}
is WhatsAppButtonMessage -> SendSentence(
PlayerId(senderId),
applicationId,
PlayerId(applicationId, PlayerType.bot),
message.button.text
)
else -> null
}
}
}