123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- # 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.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()
- 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),
- }
- 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
- self.provider_reference = notification_data.get('fort_id')
- 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
- ))
|