-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from gavine99/texttospeech
Text to speech
- Loading branch information
Showing
19 changed files
with
660 additions
and
5 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
data/src/main/java/com/moez/QKSMS/receiver/SpeakThreadsReceiver.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (C) 2017 Moez Bhatti <[email protected]> | ||
* | ||
* This file is part of QKSMS. | ||
* | ||
* QKSMS is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* QKSMS is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with QKSMS. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package dev.octoshrimpy.quik.receiver | ||
|
||
import android.content.BroadcastReceiver | ||
import android.content.Context | ||
import android.content.Intent | ||
import dev.octoshrimpy.quik.interactor.SpeakThreads | ||
import dagger.android.AndroidInjection | ||
import dev.octoshrimpy.quik.repository.ConversationRepository | ||
import javax.inject.Inject | ||
|
||
class SpeakThreadsReceiver : BroadcastReceiver() { | ||
|
||
@Inject lateinit var speakThread: SpeakThreads | ||
@Inject lateinit var conversationRepo: ConversationRepository | ||
|
||
|
||
override fun onReceive(context: Context, intent: Intent) { | ||
AndroidInjection.inject(this, context) | ||
|
||
val pendingResult = goAsync() | ||
val threadId = intent.getLongExtra("threadId", 0) | ||
|
||
val threads = when { | ||
(threadId == -1L) -> conversationRepo.getUnseenIds() | ||
(threadId == -2L) -> conversationRepo.getUnreadIds() | ||
else -> listOf(threadId) | ||
} | ||
|
||
speakThread.execute(threads) { pendingResult.finish() } | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
domain/src/main/java/com/moez/QKSMS/interactor/SpeakThreads.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright (C) 2017 Moez Bhatti <[email protected]> | ||
* | ||
* This file is part of QKSMS. | ||
* | ||
* QKSMS is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* QKSMS is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with QKSMS. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package dev.octoshrimpy.quik.interactor | ||
|
||
import android.content.res.Resources | ||
import com.moez.QKSMS.manager.SpeakManager | ||
import dev.octoshrimpy.quik.domain.R | ||
import dev.octoshrimpy.quik.extensions.mapNotNull | ||
import dev.octoshrimpy.quik.repository.ConversationRepository | ||
import dev.octoshrimpy.quik.repository.MessageRepository | ||
import io.reactivex.Flowable | ||
import io.reactivex.Single | ||
import javax.inject.Inject | ||
|
||
class SpeakThreads @Inject constructor( | ||
private val conversationRepo: ConversationRepository, | ||
private val messageRepo: MessageRepository, | ||
) : Interactor<List<Long>>() { | ||
|
||
companion object { | ||
private var noMessagesStr = "No messages" // default value | ||
|
||
fun setNoMessagesString(newNoMessagesString: String) { | ||
noMessagesStr = newNoMessagesString | ||
} | ||
} | ||
|
||
override fun buildObservable(threadIds: List<Long>): Flowable<*> { | ||
val speakManager = SpeakManager() | ||
|
||
if (threadIds.isEmpty()) | ||
return Single.just(0) | ||
.doOnSubscribe { speakManager.startSpeakSession(noMessagesStr) } | ||
.map { speakManager.speak(noMessagesStr) } | ||
.doOnTerminate { speakManager.endSpeakSession() } | ||
.toFlowable() | ||
|
||
return Flowable.fromIterable(threadIds) | ||
.doOnSubscribe { speakManager.startSpeakSession("threads:" + threadIds.sorted().joinToString()) } | ||
.mapNotNull { threadId -> conversationRepo.getConversationAndLastSenderContactName(threadId) } | ||
.map { conversationAndSender -> | ||
if (speakManager.speakConversationLastSms(conversationAndSender)) | ||
messageRepo.markSeen(conversationAndSender.first!!.id) | ||
} | ||
.doOnTerminate { speakManager.endSpeakSession() } | ||
} | ||
|
||
} |
Oops, something went wrong.