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
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
from werkzeug import urls
from odoo import _, api, models
from odoo.exceptions import ValidationError
from odoo.addons.payment import utils as payment_utils
from odoo.addons.payment_aps import utils as aps_utils
from odoo.addons.payment_aps.const import PAYMENT_STATUS_MAPPING
from odoo.addons.payment_aps.controllers.main import APSController
_logger = logging.getLogger(__name__)
class PaymentTransaction(models.Model):
_inherit = 'payment.transaction'
@api.model
def _compute_reference(self, provider_code, prefix=None, separator='-', **kwargs):
""" Override of `payment` to ensure that APS' requirements for references are satisfied.
APS' requirements for transaction are as follows:
- References can only be made of alphanumeric characters and/or '-' and '_'.
The prefix is generated with 'tx' as default. This prevents the prefix from being
generated based on document names that may contain non-allowed characters
(eg: INV/2020/...).
:param str provider_code: The code of the provider handling the transaction.
:param str prefix: The custom prefix used to compute the full reference.
:param str separator: The custom separator used to separate the prefix from the suffix.
:return: The unique reference for the transaction.
:rtype: str
"""
if provider_code == 'aps':
prefix = payment_utils.singularize_reference_prefix()
return super()._compute_reference(provider_code, prefix=prefix, separator=separator, **kwargs)
def _get_specific_rendering_values(self, processing_values):
""" Override of `payment` to return APS-specific processing values.
Note: self.ensure_one() from `_get_processing_values`
:param dict processing_values: The generic processing values of the transaction.
:return: The dict of provider-specific processing values.
:rtype: dict
"""
res = super()._get_specific_rendering_values(processing_values)
if self.provider_code != 'aps':
return res
converted_amount = payment_utils.to_minor_currency_units(self.amount, self.currency_id)
base_url = self.provider_id.get_base_url()
payment_option = aps_utils.get_payment_option(self.payment_method_id.code)
rendering_values = {
'command': 'PURCHASE',
'access_code': self.provider_id.aps_access_code,
'merchant_identifier': self.provider_id.aps_merchant_identifier,
'merchant_reference': self.reference,
'amount': str(converted_amount),
'currency': self.currency_id.name,
'language': self.partner_lang[:2],
'customer_email': self.partner_id.email_normalized,
'return_url': urls.url_join(base_url, APSController._return_url),
}
if payment_option: # Not included if the payment method is 'card'.
rendering_values['payment_option'] = payment_option
rendering_values.update({
'signature': self.provider_id._aps_calculate_signature(
rendering_values, incoming=False
),
'api_url': self.provider_id._aps_get_api_url(),
})
return rendering_values
def _get_tx_from_notification_data(self, provider_code, notification_data):
""" Override of `payment` to find the transaction based on APS data.
:param str provider_code: The code of the provider that handled the transaction.
:param dict notification_data: The notification data sent by the provider.
:return: The transaction if found.
:rtype: recordset of `payment.transaction`
:raise ValidationError: If inconsistent data are received.
:raise ValidationError: If the data match no transaction.
"""
tx = super()._get_tx_from_notification_data(provider_code, notification_data)
if provider_code != 'aps' or len(tx) == 1:
return tx
reference = notification_data.get('merchant_reference')
if not reference:
raise ValidationError(
"APS: " + _("Received data with missing reference %(ref)s.", ref=reference)
)
tx = self.search([('reference', '=', reference), ('provider_code', '=', 'aps')])
if not tx:
raise ValidationError(
"APS: " + _("No transaction found matching reference %s.", reference)
)
return tx
def _process_notification_data(self, notification_data):
""" Override of `payment' to process the transaction based on APS data.
Note: self.ensure_one()
:param dict notification_data: The notification data sent by the provider.
:return: None
:raise ValidationError: If inconsistent data are received.
"""
super()._process_notification_data(notification_data)
if self.provider_code != 'aps':
return
# Update the provider reference.
self.provider_reference = notification_data.get('fort_id')
# Update the payment method.
payment_option = notification_data.get('payment_option', '')
payment_method = self.env['payment.method']._get_from_code(payment_option.lower())
self.payment_method_id = payment_method or self.payment_method_id
# Update the payment state.
status = notification_data.get('status')
if not status:
raise ValidationError("APS: " + _("Received data with missing payment state."))
if status in PAYMENT_STATUS_MAPPING['pending']:
self._set_pending()
elif status in PAYMENT_STATUS_MAPPING['done']:
self._set_done()
else: # Classify unsupported payment state as `error` tx state.
status_description = notification_data.get('response_message')
_logger.info(
"Received data with invalid payment status (%(status)s) and reason '%(reason)s' "
"for transaction with reference %(ref)s",
{'status': status, 'reason': status_description, 'ref': self.reference},
)
self._set_error("APS: " + _(
"Received invalid transaction status %(status)s and reason '%(reason)s'.",
status=status, reason=status_description
))
|