-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSmsReceiver.kt
More file actions
62 lines (54 loc) · 2.26 KB
/
SmsReceiver.kt
File metadata and controls
62 lines (54 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* Copyright (C) 2017 Moez Bhatti <moez.bhatti@gmail.com>
*
* 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 org.prauga.messages.receiver
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
import android.provider.Telephony.Sms
import dagger.android.AndroidInjection
import org.prauga.messages.interactor.ReceiveSms
import org.prauga.messages.repository.MessageRepository
import io.reactivex.Single
import io.reactivex.schedulers.Schedulers
import timber.log.Timber
import javax.inject.Inject
class SmsReceiver : BroadcastReceiver() {
@Inject lateinit var messageRepo: MessageRepository
@Inject lateinit var receiveSms: ReceiveSms
override fun onReceive(context: Context, intent: Intent) {
AndroidInjection.inject(this, context)
val pendingResult = goAsync()
Sms.Intents.getMessagesFromIntent(intent)?.let { messages ->
// reduce list of messages to single message and save in db
val messageId = Single.just(messages)
.observeOn(Schedulers.io())
.map {
Timber.v("onReceive() new sms")
messageRepo.insertReceivedSms(
intent.extras?.getInt("subscription", -1) ?: -1,
messages[0].displayOriginatingAddress,
messages.mapNotNull { it.displayMessageBody }.reduce { body, new -> body + new },
messages[0].timestampMillis
).id
}
.blockingGet()
receiveSms.execute(messageId) { pendingResult.finish() }
} ?: pendingResult.finish()
}
}