summaryrefslogtreecommitdiff
path: root/nexus/src/main/kotlin/tech/libeufin/nexus/taler.kt
blob: f3dd6148fb49618ae6ac276161b857804f082a94 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
package tech.libeufin.nexus

import com.google.gson.Gson
import io.ktor.application.call
import io.ktor.content.TextContent
import io.ktor.http.ContentType
import io.ktor.http.HttpStatusCode
import io.ktor.request.receive
import io.ktor.response.respond
import io.ktor.response.respondText
import io.ktor.routing.Route
import io.ktor.routing.get
import io.ktor.routing.post
import org.jetbrains.exposed.dao.Entity
import org.jetbrains.exposed.dao.IdTable
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.transactions.transaction
import org.joda.time.DateTime
import tech.libeufin.util.*
import kotlin.math.abs
import kotlin.math.min

class Taler(app: Route) {

    /** Payment initiating data structures: one endpoint "$BASE_URL/transfer". */
    private data class TalerTransferRequest(
        val request_uid: String,
        val amount: String,
        val exchange_base_url: String,
        val wtid: String,
        val credit_account: String
    )
    private data class TalerTransferResponse(
        // point in time when the nexus put the payment instruction into the database.
        val timestamp: GnunetTimestamp,
        val row_id: Long
    )

    /** History accounting data structures */
    private data class TalerIncomingBankTransaction(
        val row_id: Long,
        val date: GnunetTimestamp, // timestamp
        val amount: String,
        val credit_account: String, // payto form,
        val debit_account: String,
        val reserve_pub: String
    )
    private data class TalerIncomingHistory(
        var incoming_transactions: MutableList<TalerIncomingBankTransaction> = mutableListOf()
    )
    private data class TalerOutgoingBankTransaction(
        val row_id: Long,
        val date: GnunetTimestamp, // timestamp
        val amount: String,
        val credit_account: String, // payto form,
        val debit_account: String,
        val wtid: String,
        val exchange_base_url: String
    )
    private data class TalerOutgoingHistory(
        var outgoing_transactions: MutableList<TalerOutgoingBankTransaction> = mutableListOf()
    )

    /** Test APIs' data structures. */
    private data class TalerAdminAddIncoming(
        val amount: String,
        val reserve_pub: String,
        /**
         * This account is the one giving money to the exchange.  It doesn't
         * have to be 'created' as it might (and normally is) simply be a payto://
         * address pointing to a bank account hosted in a different financial
         * institution.
         */
        val debit_account: String
    )

    private data class GnunetTimestamp(
        val t_ms: Long
    )
    private data class TalerAddIncomingResponse(
        val timestamp: GnunetTimestamp,
        val row_id: Long
    )

    /**
     * Helper data structures.
     */
    data class Payto(
        val name: String = "NOTGIVEN",
        val iban: String,
        val bic: String = "NOTGIVEN"
    )
    /**
     * Helper functions
     */
    fun parsePayto(paytoUri: String): Payto {
        /**
         * First try to parse a "iban"-type payto URI.  If that fails,
         * then assume a test is being run under the "x-taler-bank" type.
         * If that one fails too, throw exception.
         *
         * Note: since the Nexus doesn't have the notion of "x-taler-bank",
         * such URIs must yield a iban-compatible tuple of values.  Therefore,
         * the plain bank account number maps to a "iban", and the <bank hostname>
         * maps to a "bic".
         */


        /**
         * payto://iban/BIC?/IBAN?name=<name>
         * payto://x-taler-bank/<bank hostname>/<plain account number>
         */

        val ibanMatch = Regex("payto://iban/([A-Z0-9]+/)?([A-Z0-9]+)\\?name=(\\w+)").find(paytoUri)
        if (ibanMatch != null) {
            val (bic, iban, name) = ibanMatch.destructured
            return Payto(name, iban, bic.replace("/", ""))
        }
        val xTalerBankMatch = Regex("payto://x-taler-bank/localhost/([0-9]+)").find(paytoUri)
        if (xTalerBankMatch != null) {
            val xTalerBankAcctNo = xTalerBankMatch.destructured.component1()
            return Payto("Taler Exchange", xTalerBankAcctNo, "localhost")
        }

        throw NexusError(HttpStatusCode.BadRequest, "invalid payto URI ($paytoUri)")
    }

    /** Sort query results in descending order for negative deltas, and ascending otherwise.  */
    private fun <T : Entity<Long>> SizedIterable<T>.orderTaler(delta: Int): List<T> {
        return if (delta < 0) {
            this.sortedByDescending { it.id }
        } else {
            this.sortedBy { it.id }
        }
    }

    /**
     * NOTE: those payto-builders default all to the x-taler-bank transport.
     * A mechanism to easily switch transport is needed, as production needs
     * 'iban'.
     */
    private fun buildPaytoUri(name: String, iban: String, bic: String): String {
        return "payto://x-taler-bank/localhost/$iban"
    }
    private fun buildPaytoUri(iban: String, bic: String): String {
        return "payto://x-taler-bank/localhost/$iban"
    }

    /** Builds the comparison operator for history entries based on the sign of 'delta'  */
    private fun getComparisonOperator(delta: Int, start: Long, table: IdTable<Long>): Op<Boolean> {
        return if (delta < 0) {
            Expression.build {
                table.id less start
            }
        } else {
            Expression.build {
                table.id greater start
            }
        }
    }
    /** Helper handling 'start' being optional and its dependence on 'delta'.  */
    private fun handleStartArgument(start: String?, delta: Int): Long {
        return expectLong(start) ?: if (delta >= 0) {
            /**
             * Using -1 as the smallest value, as some DBMS might use 0 and some
             * others might use 1 as the smallest row id.
             */
            -1
        } else {
            /**
             * NOTE: the database currently enforces there MAX_VALUE is always
             * strictly greater than any row's id in the database.  In fact, the
             * database throws exception whenever a new row is going to occupy
             * the MAX_VALUE with its id.
             */
            Long.MAX_VALUE
        }
    }

    /**
     * The Taler layer cannot rely on the ktor-internal JSON-converter/responder,
     * because this one adds a "charset" extra information in the Content-Type header
     * that makes the GNUnet JSON parser unhappy.
     *
     * The workaround is to explicitly convert the 'data class'-object into a JSON
     * string (what this function does), and use the simpler respondText method.
     */
    private fun customConverter(body: Any): String {
        return Gson().toJson(body)
    }

    /**
     * This function indicates whether a payment in the raw table was already reported
     * by some other EBICS message.  It works for both incoming and outgoing payments.
     * Basically, it tries to match all the relevant details with those from the records
     * that are already stored in the local "taler" database.
     *
     * @param entry a new raw payment to be checked.
     * @return true if the payment was already "seen" by the Taler layer, false otherwise.
     */
    private fun duplicatePayment(entry: RawBankTransactionEntity): Boolean {
        return false
    }

    /**
     * This function checks whether the bank didn't accept one exchange's payment initiation.
     *
     * @param entry the raw entry to check
     * @return true if the payment failed, false if it was successful.
     */
    private fun paymentFailed(entry: RawBankTransactionEntity): Boolean {
        return false
    }

    /** Attach Taler endpoints to the main Web server */

    init {
        app.get("/taler") {
            call.respondText("Taler Gateway Hello\n", ContentType.Text.Plain, HttpStatusCode.OK)
            return@get
        }
        app.post("/taler/transfer") {
            val exchangeId = authenticateRequest(call.request.headers["Authorization"])
            val transferRequest = call.receive<TalerTransferRequest>()
            val amountObj = parseAmount(transferRequest.amount)
            val creditorObj = parsePayto(transferRequest.credit_account)
            val opaque_row_id = transaction {
                val creditorData = parsePayto(transferRequest.credit_account)
                val exchangeBankAccount = getBankAccountsFromNexusUserId(exchangeId).first()
                val nexusUser = extractNexusUser(exchangeId)
                /** Checking the UID has the desired characteristics */
                TalerRequestedPaymentEntity.find {
                    TalerRequestedPayments.requestUId eq transferRequest.request_uid
                }.forEach {
                    if (
                        (it.amount != transferRequest.amount) or
                        (it.creditAccount != transferRequest.exchange_base_url) or
                        (it.wtid != transferRequest.wtid)
                    ) {
                        throw NexusError(
                            HttpStatusCode.Conflict,
                            "This uid (${transferRequest.request_uid}) belongs to a different payment already"
                        )
                    }
                }
                val pain001 = addPreparedPayment(
                    Pain001Data(
                        creditorIban = creditorData.iban,
                        creditorBic = creditorData.bic,
                        creditorName = creditorData.name,
                        subject = transferRequest.wtid,
                        sum = amountObj.amount,
                        currency = amountObj.currency,
                        debitorAccount = exchangeBankAccount.id.value
                    ),
                    nexusUser
                )
                val rawEbics = if (!isProduction()) {
                    RawBankTransactionEntity.new {
                        sourceFileName = "test"
                        unstructuredRemittanceInformation = transferRequest.wtid
                        transactionType = "DBIT"
                        currency = amountObj.currency
                        this.amount = amountObj.amount.toPlainString()
                        counterpartBic = creditorObj.bic
                        counterpartIban = creditorObj.iban
                        counterpartName = creditorObj.name
                        bankAccount = exchangeBankAccount
                        bookingDate = DateTime.now().millis
                        this.nexusUser = nexusUser
                        status = "BOOK"
                    }
                } else null

                val row = TalerRequestedPaymentEntity.new {
                    preparedPayment = pain001 // not really used/needed, just here to silence warnings
                    exchangeBaseUrl = transferRequest.exchange_base_url
                    requestUId = transferRequest.request_uid
                    amount = transferRequest.amount
                    wtid = transferRequest.wtid
                    creditAccount = transferRequest.credit_account
                    rawConfirmed = rawEbics
                }

                row.id.value
            }
            call.respond(
                HttpStatusCode.OK,
                TextContent(
                    customConverter(
                        TalerTransferResponse(
                            /**
                             * Normally should point to the next round where the background
                             * routine will send new PAIN.001 data to the bank; work in progress..
                             */
                            timestamp = GnunetTimestamp(DateTime.now().millis),
                            row_id = opaque_row_id
                        )
                    ),
                    ContentType.Application.Json
                )
            )
            return@post
        }
        /** Test-API that creates one new payment addressed to the exchange.  */
        app.post("/taler/admin/add-incoming") {
            val exchangeId = authenticateRequest(call.request.headers["Authorization"])
            val addIncomingData = call.receive<TalerAdminAddIncoming>()
            val debtor = parsePayto(addIncomingData.debit_account)
            val amount = parseAmount(addIncomingData.amount)
            val (bookingDate, opaque_row_id) = transaction {
                val exchangeBankAccount = getBankAccountsFromNexusUserId(exchangeId).first()
                val rawPayment = RawBankTransactionEntity.new {
                    sourceFileName = "test"
                    unstructuredRemittanceInformation = addIncomingData.reserve_pub
                    transactionType = "CRDT"
                    currency = amount.currency
                    this.amount = amount.amount.toPlainString()
                    counterpartBic = debtor.bic
                    counterpartName = debtor.name
                    counterpartIban = debtor.iban
                    bookingDate = DateTime.now().millis
                    status = "BOOK"
                    nexusUser = extractNexusUser(exchangeId)
                    bankAccount = exchangeBankAccount
                }
                /** This payment is "valid by default" and will be returned
                 * as soon as the exchange will ask for new payments.  */
                val row = TalerIncomingPaymentEntity.new {
                    payment = rawPayment
                    valid = true
                }
                Pair(rawPayment.bookingDate, row.id.value)
            }
            call.respond(
                TextContent(
                    customConverter(
                        TalerAddIncomingResponse(
                            timestamp = GnunetTimestamp(bookingDate/ 1000),
                            row_id = opaque_row_id
                        )
                    ),
                ContentType.Application.Json
                )
            )
            return@post
        }

        /** This endpoint triggers the refunding of invalid payments.  'Refunding'
         * in this context means that nexus _prepares_ the payment instruction and
         * places it into a further table.  Eventually, another routine will perform
         * all the prepared payments.  */
        app.post("/ebics/taler/{id}/accounts/{acctid}/refund-invalid-payments") {
            val userId = authenticateRequest(call.request.headers["Authorization"])
            val nexusUser = getNexusUser(userId)
            val callerBankAccount = expectNonNull(call.parameters["acctid"])
            transaction {
                val bankAccount = getBankAccount(
                    userId,
                    callerBankAccount
                )
                TalerIncomingPaymentEntity.find {
                    TalerIncomingPayments.refunded eq false and (TalerIncomingPayments.valid eq false)
                }.forEach {
                    addPreparedPayment(
                        Pain001Data(
                            creditorName = it.payment.counterpartName,
                            creditorIban = it.payment.counterpartIban,
                            creditorBic = it.payment.counterpartBic,
                            sum = calculateRefund(it.payment.amount),
                            subject = "Taler refund",
                            currency = it.payment.currency,
                            debitorAccount = callerBankAccount
                        ),
                        nexusUser
                    )
                    it.refunded = true
                }
            }
            return@post
        }

        /** This endpoint triggers the examination of raw incoming payments aimed
         * at separating the good payments (those that will lead to a new reserve
         * being created), from the invalid payments (those with a invalid subject
         * that will soon be refunded.)  Recently, the examination of raw OUTGOING
         * payment was added as well.
         */
        app.post("/ebics/taler/{id}/crunch-raw-transactions") {
            val id = ensureNonNull(call.parameters["id"])
            // first find highest ID value of already processed rows.
            transaction {
                val subscriberAccount = getBankAccountsFromNexusUserId(id).first()
                /**
                 * Search for fresh incoming payments in the raw table, and making pointers
                 * from the Taler incoming payments table to the found fresh (and valid!) payments.
                 */
                val latestIncomingPaymentId: Long = TalerIncomingPaymentEntity.getLast()
                RawBankTransactionEntity.find {
                    /** Those with exchange bank account involved */
                    RawBankTransactionsTable.bankAccount eq subscriberAccount.id.value and
                            /** Those that are incoming */
                            (RawBankTransactionsTable.transactionType eq "CRDT") and
                            /** Those that are booked */
                            (RawBankTransactionsTable.status eq "BOOK") and
                            /** Those that came later than the latest processed payment */
                            (RawBankTransactionsTable.id.greater(latestIncomingPaymentId))

                }.forEach {
                    if (duplicatePayment(it)) {
                        logger.warn("Incomint payment already seen")
                        throw NexusError(
                            HttpStatusCode.InternalServerError,
                            "Incoming payment already seen"
                        )
                    }
                    if (CryptoUtil.checkValidEddsaPublicKey(it.unstructuredRemittanceInformation)) {
                        TalerIncomingPaymentEntity.new {
                            payment = it
                            valid = true
                        }
                    } else {
                        TalerIncomingPaymentEntity.new {
                            payment = it
                            valid = false
                        }
                    }
                }
                /**
                 * Search for fresh OUTGOING transactions acknowledged by the bank.  As well
                 * searching only for BOOKed transactions, even though status changes should
                 * be really unexpected here.
                 */
                val latestOutgoingPaymentId = TalerRequestedPaymentEntity.getLast()
                RawBankTransactionEntity.find {
                    /** Those that came after the last processed payment */
                    RawBankTransactionsTable.id greater latestOutgoingPaymentId and
                            /** Those involving the exchange bank account */
                            (RawBankTransactionsTable.bankAccount eq subscriberAccount.id.value) and
                            /** Those that are outgoing */
                            (RawBankTransactionsTable.transactionType eq "DBIT")
                }.forEach {
                    if (paymentFailed(it)) {
                        logger.error("Bank didn't accept one payment from the exchange")
                        throw NexusError(
                            HttpStatusCode.InternalServerError,
                            "Bank didn't accept one payment from the exchange"
                        )
                    }
                    if (duplicatePayment(it)) {
                        logger.warn("Incomint payment already seen")
                        throw NexusError(
                            HttpStatusCode.InternalServerError,
                            "Outgoing payment already seen"
                        )
                    }
                    var talerRequested = TalerRequestedPaymentEntity.find {
                        TalerRequestedPayments.wtid eq it.unstructuredRemittanceInformation
                    }.firstOrNull() ?: throw NexusError(
                        HttpStatusCode.InternalServerError,
                        "Unrecognized fresh outgoing payment met (subject: ${it.unstructuredRemittanceInformation})."
                    )
                    talerRequested.rawConfirmed = it
                }
            }

            call.respondText (
                "New raw payments Taler-processed",
                ContentType.Text.Plain,
                HttpStatusCode.OK
            )
            return@post
        }
        /** Responds only with the payments that the EXCHANGE made.  Typically to
         * merchants but possibly to refund invalid incoming payments.  A payment is
         * counted only if was once confirmed by the bank.
         */
        app.get("/taler/history/outgoing") {
            /* sanitize URL arguments */
            val subscriberId = authenticateRequest(call.request.headers["Authorization"])
            val delta: Int = expectInt(call.expectUrlParameter("delta"))
            val start: Long = handleStartArgument(call.request.queryParameters["start"], delta)
            val startCmpOp = getComparisonOperator(delta, start, TalerRequestedPayments)
            /* retrieve database elements */
            val history = TalerOutgoingHistory()
            transaction {
                /** Retrieve all the outgoing payments from the _clean Taler outgoing table_ */
                val subscriberBankAccount = getBankAccountsFromNexusUserId(subscriberId).first()
                val reqPayments = TalerRequestedPaymentEntity.find {
                    TalerRequestedPayments.rawConfirmed.isNotNull() and startCmpOp
                }.orderTaler(delta)
                if (reqPayments.isNotEmpty()) {
                    reqPayments.subList(0, min(abs(delta), reqPayments.size)).forEach {
                        history.outgoing_transactions.add(
                            TalerOutgoingBankTransaction(
                                row_id = it.id.value,
                                amount = it.amount,
                                wtid = it.wtid,
                                date = GnunetTimestamp(it.rawConfirmed?.bookingDate?.div(1000) ?: throw NexusError(
                                    HttpStatusCode.InternalServerError, "Null value met after check, VERY strange.")),
                                credit_account = it.creditAccount,
                                debit_account = buildPaytoUri(subscriberBankAccount.iban, subscriberBankAccount.bankCode),
                                exchange_base_url = "FIXME-to-request-along-subscriber-registration"
                            )
                        )
                    }
                }
            }
            call.respond(
                HttpStatusCode.OK,
                TextContent(customConverter(history), ContentType.Application.Json)
            )
            return@get
        }
        /** Responds only with the valid incoming payments */
        app.get("/taler/history/incoming") {
            val exchangeId = authenticateRequest(call.request.headers["Authorization"])
            val delta: Int = expectInt(call.expectUrlParameter("delta"))
            val start: Long = handleStartArgument(call.request.queryParameters["start"], delta)
            val history = TalerIncomingHistory()
            val startCmpOp = getComparisonOperator(delta, start, TalerIncomingPayments)
            transaction {
                /**
                 * Below, the test harness creates the exchange's bank account
                 * object based on the payto:// given as the funds receiver.
                 *
                 * This is needed because nexus takes this information from the
                 * bank - normally - but tests are currently avoiding any interaction
                 * with banks or sandboxes.
                 */
                if (!isProduction()) {
                    val EXCHANGE_BANKACCOUNT_ID = "exchange-bankaccount-id"
                    if (BankAccountEntity.findById(EXCHANGE_BANKACCOUNT_ID) == null) {
                        val newBankAccount = BankAccountEntity.new(id = EXCHANGE_BANKACCOUNT_ID) {
                            accountHolder = "Test Exchange"
                            iban = "42"
                            bankCode = "localhost"
                        }
                        val nexusUser = extractNexusUser(exchangeId)
                        BankAccountMapEntity.new {
                            bankAccount = newBankAccount
                            ebicsSubscriber = getEbicsTransport(exchangeId)
                            this.nexusUser = nexusUser
                        }
                    }
                }
                val exchangeBankAccount = getBankAccountsFromNexusUserId(exchangeId).first()
                val orderedPayments = TalerIncomingPaymentEntity.find {
                    TalerIncomingPayments.valid eq true and startCmpOp
                }.orderTaler(delta)
                if (orderedPayments.isNotEmpty()) {
                    orderedPayments.subList(0, min(abs(delta), orderedPayments.size)).forEach {
                        history.incoming_transactions.add(
                            TalerIncomingBankTransaction(
                                date = GnunetTimestamp(it.payment.bookingDate / 1000),
                                row_id = it.id.value,
                                amount = "${it.payment.currency}:${it.payment.amount}",
                                reserve_pub = it.payment.unstructuredRemittanceInformation,
                                credit_account = buildPaytoUri(
                                    it.payment.bankAccount.accountHolder,
                                    it.payment.bankAccount.iban,
                                    it.payment.bankAccount.bankCode
                                ),
                                debit_account = buildPaytoUri(
                                    it.payment.counterpartName,
                                    it.payment.counterpartIban,
                                    it.payment.counterpartBic
                                )
                            )
                        )
                    }
                }
            }
            call.respond(TextContent(customConverter(history), ContentType.Application.Json))
            return@get
        }
    }
}