summaryrefslogtreecommitdiff
path: root/merchant-terminal/src/main/java/net/taler/merchantpos/payment/PaymentManager.kt
blob: b39355a319dc1a37331a36c9ce3a6baefecca266 (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * This file is part of GNU Taler
 * (C) 2020 Taler Systems S.A.
 *
 * GNU Taler 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, or (at your option) any later version.
 *
 * GNU Taler 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
 * GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */

package net.taler.merchantpos.payment

import android.content.Context
import android.os.CountDownTimer
import android.util.Log
import androidx.annotation.UiThread
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Job
import kotlinx.coroutines.isActive
import kotlinx.coroutines.launch
import net.taler.common.Duration
import net.taler.common.assertUiThread
import net.taler.merchantlib.CheckPaymentResponse
import net.taler.merchantlib.MerchantApi
import net.taler.merchantlib.PostOrderRequest
import net.taler.merchantpos.MainActivity.Companion.TAG
import net.taler.merchantpos.R
import net.taler.merchantpos.config.ConfigManager
import net.taler.merchantpos.order.Order
import java.util.concurrent.TimeUnit.HOURS
import java.util.concurrent.TimeUnit.MINUTES
import java.util.concurrent.TimeUnit.SECONDS

private val TIMEOUT = MINUTES.toMillis(2)
private val CHECK_INTERVAL = SECONDS.toMillis(1)

class PaymentManager(
    private val context: Context,
    private val configManager: ConfigManager,
    private val scope: CoroutineScope,
    private val api: MerchantApi
) {

    private val mPayment = MutableLiveData<Payment>()
    val payment: LiveData<Payment> = mPayment
    private var checkJob: Job? = null

    private val checkTimer: CountDownTimer = object : CountDownTimer(TIMEOUT, CHECK_INTERVAL) {
        override fun onTick(millisUntilFinished: Long) {
            val orderId = payment.value?.orderId
            if (orderId == null) cancel()
            // only start new job if old one doesn't exist or is complete
            else if (checkJob == null || checkJob?.isCompleted == true) {
                checkJob = checkPayment(orderId)
            }
        }

        override fun onFinish() {
            cancelPayment(context.getString(R.string.error_timeout))
        }
    }

    @UiThread
    fun createPayment(order: Order) = scope.launch {
        val merchantConfig = configManager.merchantConfig!!
        mPayment.value = Payment(order, order.summary, configManager.currency!!)
        val request = PostOrderRequest(
            contractTerms = order.toContractTerms(),
            refundDelay = Duration(HOURS.toMillis(1))
        )
        api.postOrder(merchantConfig, request).handle(::onNetworkError) { orderResponse ->
            assertUiThread()
            mPayment.value = mPayment.value!!.copy(orderId = orderResponse.orderId)
            checkTimer.start()
        }
    }

    private fun checkPayment(orderId: String) = scope.launch {
        val merchantConfig = configManager.merchantConfig!!
        api.checkOrder(merchantConfig, orderId).handle(::onNetworkError) { response ->
            assertUiThread()
            if (!isActive) return@handle // don't continue if job was cancelled
            val currentValue = requireNotNull(mPayment.value)
            if (response.paid) {
                mPayment.value = currentValue.copy(paid = true)
                checkTimer.cancel()
            } else if (currentValue.talerPayUri == null) {
                response as CheckPaymentResponse.Unpaid
                mPayment.value = currentValue.copy(talerPayUri = response.talerPayUri)
            }
        }
    }

    private fun onNetworkError(error: String) {
        assertUiThread()
        Log.d(TAG, "Network error: $error")
        cancelPayment(error)
    }

    @UiThread
    fun cancelPayment(error: String) {
        // delete unpaid order
        val merchantConfig = configManager.merchantConfig!!
        mPayment.value?.let { payment ->
            if (!payment.paid && payment.error != null) payment.orderId?.let { orderId ->
                Log.d(TAG, "Deleting cancelled and unpaid order $orderId")
                scope.launch {
                    api.deleteOrder(merchantConfig, orderId)
                }
            }
        }
        mPayment.value = mPayment.value!!.copy(error = error)
        checkTimer.cancel()
        checkJob?.isCancelled
        checkJob = null
    }
}