oca-ocb-core/odoo-bringout-oca-ocb-payment/payment/models/payment_provider.py
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

1051 lines
42 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
import uuid
from json.decoder import JSONDecodeError
from pprint import pformat
import requests
from odoo import _, api, fields, models
from odoo.exceptions import UserError, ValidationError
from odoo.tools.mail import is_html_empty
from odoo.addons.payment import utils as payment_utils
from odoo.addons.payment.const import REPORT_REASONS_MAPPING, SENSITIVE_KEYS
from odoo.addons.payment.logging import get_payment_logger
# Pass the possibly empty set of sensitive keys to the logger in case a provider module extends it.
_logger = get_payment_logger(__name__, sensitive_keys=SENSITIVE_KEYS)
class PaymentProvider(models.Model):
_name = 'payment.provider'
_description = 'Payment Provider'
_order = 'module_state, state desc, sequence, name'
_check_company_auto = True
_check_company_domain = models.check_company_domain_parent_of
def _valid_field_parameter(self, field, name):
return name == 'required_if_provider' or super()._valid_field_parameter(field, name)
# Configuration fields
name = fields.Char(string="Name", required=True, translate=True)
sequence = fields.Integer(string="Sequence", help="Define the display order")
code = fields.Selection(
string="Code",
help="The technical code of this payment provider.",
selection=[('none', "No Provider Set")],
default='none',
required=True,
)
state = fields.Selection(
string="State",
help="In test mode, a fake payment is processed through a test payment interface.\n"
"This mode is advised when setting up the provider.",
selection=[('disabled', "Disabled"), ('enabled', "Enabled"), ('test', "Test Mode")],
default='disabled', required=True, copy=False)
is_published = fields.Boolean(
string="Published",
help="Whether the provider is visible on the website or not. Tokens remain functional but "
"are only visible on manage forms.",
copy=False,
)
company_id = fields.Many2one( # Indexed to speed-up ORM searches (from ir_rule or others)
string="Company", comodel_name='res.company', default=lambda self: self.env.company.id,
required=True, index=True)
main_currency_id = fields.Many2one(
related='company_id.currency_id',
help="The main currency of the company, used to display monetary fields.",
)
payment_method_ids = fields.Many2many(
string="Supported Payment Methods", comodel_name='payment.method'
)
allow_tokenization = fields.Boolean(
string="Allow Saving Payment Methods",
help="This controls whether customers can save their payment methods as payment tokens.\n"
"A payment token is an anonymous link to the payment method details saved in the\n"
"provider's database, allowing the customer to reuse it for a next purchase.")
capture_manually = fields.Boolean(
string="Capture Amount Manually",
help="Capture the amount from Odoo, when the delivery is completed.\n"
"Use this if you want to charge your customers cards only when\n"
"you are sure you can ship the goods to them.")
allow_express_checkout = fields.Boolean(
string="Allow Express Checkout",
help="This controls whether customers can use express payment methods. Express checkout "
"enables customers to pay with Google Pay and Apple Pay from which address "
"information is collected at payment.",
)
redirect_form_view_id = fields.Many2one(
string="Redirect Form Template", comodel_name='ir.ui.view',
help="The template rendering a form submitted to redirect the user when making a payment",
domain=[('type', '=', 'qweb')],
ondelete='restrict',
)
inline_form_view_id = fields.Many2one(
string="Inline Form Template", comodel_name='ir.ui.view',
help="The template rendering the inline payment form when making a direct payment",
domain=[('type', '=', 'qweb')],
ondelete='restrict',
)
token_inline_form_view_id = fields.Many2one(
string="Token Inline Form Template",
comodel_name='ir.ui.view',
help="The template rendering the inline payment form when making a payment by token.",
domain=[('type', '=', 'qweb')],
ondelete='restrict',
)
express_checkout_form_view_id = fields.Many2one(
string="Express Checkout Form Template",
comodel_name='ir.ui.view',
help="The template rendering the express payment methods' form.",
domain=[('type', '=', 'qweb')],
ondelete='restrict',
)
# Availability fields
available_country_ids = fields.Many2many(
string="Countries",
comodel_name='res.country',
help="The countries in which this payment provider is available. Leave blank to make it "
"available in all countries.",
relation='payment_country_rel',
column1='payment_id',
column2='country_id',
)
available_currency_ids = fields.Many2many(
string="Currencies",
help="The currencies available with this payment provider. Leave empty not to restrict "
"any.",
comodel_name='res.currency',
relation='payment_currency_rel',
column1="payment_provider_id",
column2="currency_id",
compute='_compute_available_currency_ids',
store=True,
readonly=False,
context={'active_test': False},
)
maximum_amount = fields.Monetary(
string="Maximum Amount",
help="The maximum payment amount that this payment provider is available for. Leave blank "
"to make it available for any payment amount.",
currency_field='main_currency_id',
)
# Message fields
pre_msg = fields.Html(
string="Help Message", help="The message displayed to explain and help the payment process",
translate=True)
pending_msg = fields.Html(
string="Pending Message",
help="The message displayed if the order pending after the payment process",
default=lambda self: _(
"Your payment has been processed but is waiting for approval."
), translate=True)
auth_msg = fields.Html(
string="Authorize Message", help="The message displayed if payment is authorized",
default=lambda self: _("Your payment has been authorized."), translate=True)
done_msg = fields.Html(
string="Done Message",
help="The message displayed if the order is successfully done after the payment process",
default=lambda self: _("Your payment has been processed."),
translate=True)
cancel_msg = fields.Html(
string="Cancelled Message",
help="The message displayed if the order is cancelled during the payment process",
default=lambda self: _("Your payment has been cancelled."), translate=True)
# Feature support fields
support_tokenization = fields.Boolean(
string="Tokenization", compute='_compute_feature_support_fields'
)
support_manual_capture = fields.Selection(
string="Manual Capture Supported",
selection=[('full_only', "Full Only"), ('partial', "Partial")],
compute='_compute_feature_support_fields',
)
support_express_checkout = fields.Boolean(
string="Express Checkout", compute='_compute_feature_support_fields'
)
support_refund = fields.Selection(
string="Refund",
help="Refund is a feature allowing to refund customers directly from the payment in Odoo.",
selection=[
('none', "Unsupported"),
('full_only', "Full Only"),
('partial', "Full & Partial"),
],
compute='_compute_feature_support_fields',
)
# Kanban view fields
image_128 = fields.Image(string="Image", max_width=128, max_height=128)
color = fields.Integer(
string="Color", help="The color of the card in kanban view", compute='_compute_color',
store=True)
# Module-related fields
module_id = fields.Many2one(string="Corresponding Module", comodel_name='ir.module.module')
module_state = fields.Selection(string="Installation State", related='module_id.state')
module_to_buy = fields.Boolean(string="Odoo Enterprise Module", related='module_id.to_buy')
# === COMPUTE METHODS === #
@api.depends('code')
def _compute_available_currency_ids(self):
""" Compute the available currencies based on their support by the providers.
If the provider does not filter out any currency, the field is left empty for UX reasons.
:return: None
"""
all_currencies = self.env['res.currency'].with_context(active_test=False).search([])
for provider in self:
supported_currencies = provider._get_supported_currencies()
if supported_currencies < all_currencies: # Some currencies have been filtered out.
provider.available_currency_ids = supported_currencies
else:
provider.available_currency_ids = None
def _get_supported_currencies(self):
"""Return the supported currencies for the payment provider.
By default, all currencies are considered supported, including the inactive ones. For a
provider to filter out specific currencies, it must override this method and return the
subset of supported currencies.
Note: `self.ensure_one()`
:return: The supported currencies.
:rtype: res.currency
"""
self.ensure_one()
return self.env['res.currency'].with_context(active_test=False).search([])
@api.depends('state', 'module_state')
def _compute_color(self):
""" Update the color of the kanban card based on the state of the provider.
:return: None
"""
for provider in self:
if provider.module_id and not provider.module_state == 'installed':
provider.color = 4 # blue
elif provider.state == 'disabled':
provider.color = 3 # yellow
elif provider.state == 'test':
provider.color = 2 # orange
elif provider.state == 'enabled':
provider.color = 7 # green
@api.depends('code')
def _compute_feature_support_fields(self):
""" Compute the feature support fields based on the provider.
Feature support fields are used to specify which additional features are supported by a
given provider. These fields are as follows:
- `support_express_checkout`: Whether the "express checkout" feature is supported. `False`
by default.
- `support_manual_capture`: Whether the "manual capture" feature is supported. `False` by
default.
- `support_refund`: Which type of the "refunds" feature is supported: `None`,
`'full_only'`, or `'partial'`. `None` by default.
- `support_tokenization`: Whether the "tokenization feature" is supported. `False` by
default.
For a provider to specify that it supports additional features, it must override this method
and set the related feature support fields to the desired value on the appropriate
`payment.provider` records.
:return: None
"""
self.update({
'support_express_checkout': None,
'support_manual_capture': None,
'support_tokenization': None,
'support_refund': 'none',
})
# === ONCHANGE METHODS === #
@api.onchange('state')
def _onchange_state_switch_is_published(self):
""" Automatically publish or unpublish the provider depending on its state.
:return: None
"""
self.is_published = self.state == 'enabled'
@api.onchange('state')
def _onchange_state_warn_before_disabling_tokens(self):
""" Display a warning about the consequences of disabling a provider.
Let the user know that tokens related to a provider get archived if it is disabled or if its
state is changed from 'test' to 'enabled', and vice versa.
:return: A client action with the warning message, if any.
:rtype: dict
"""
if self._origin.state in ('test', 'enabled') and self._origin.state != self.state:
related_tokens = self.env['payment.token'].search(
[('provider_id', '=', self._origin.id)]
)
if related_tokens:
return {
'warning': {
'title': _("Warning"),
'message': _(
"This action will also archive %s tokens that are registered with this "
"provider. ", len(related_tokens)
)
}
}
@api.onchange('company_id')
def _onchange_company_block_if_existing_transactions(self):
""" Raise a user error when the company is changed and linked transactions exist.
:return: None
:raise UserError: If transactions are linked to the provider.
"""
if self._origin.company_id != self.company_id and self.env['payment.transaction'].search_count(
[('provider_id', '=', self._origin.id)], limit=1
):
raise UserError(_(
"You cannot change the company of a payment provider with existing transactions."
))
# === CONSTRAINT METHODS === #
@api.constrains('capture_manually')
def _check_manual_capture_supported_by_payment_methods(self):
if self.capture_manually:
incompatible_pms = self.payment_method_ids.filtered(
lambda method: method.active and method.support_manual_capture == 'none'
)
if incompatible_pms:
raise ValidationError(_(
"The following payment methods must be disabled in order to enable manual"
" capture: %s", ", ".join(incompatible_pms.mapped('name'))
))
# === CRUD METHODS === #
@api.model_create_multi
def create(self, vals_list):
providers = super().create(vals_list)
providers._check_required_if_provider()
if any(provider.state != 'disabled' for provider in providers):
self._toggle_post_processing_cron()
return providers
def write(self, vals):
# Handle provider state changes.
deactivated_providers = self.env['payment.provider']
activated_providers = self.env['payment.provider']
if 'state' in vals:
state_changed_providers = self.filtered(
lambda p: p.state not in ('disabled', vals['state'])
) # Don't handle providers being enabled or whose state is not updated.
state_changed_providers._archive_linked_tokens()
if vals['state'] == 'disabled':
deactivated_providers = state_changed_providers
else: # 'enabled' or 'test'
activated_providers = self.filtered(lambda p: p.state == 'disabled')
result = super().write(vals)
self._check_required_if_provider()
deactivated_providers._deactivate_unsupported_payment_methods()
activated_providers._activate_default_pms()
if activated_providers or deactivated_providers:
self._toggle_post_processing_cron()
return result
def _check_required_if_provider(self):
""" Check that provider-specific required fields have been filled.
The fields that have the `required_if_provider='<provider_code>'` attribute are made
required for all `payment.provider` records with the `code` field equal to `<provider_code>`
and with the `state` field equal to `'enabled'` or `'test'`.
Provider-specific views should make the form fields required under the same conditions.
:return: None
:raise ValidationError: If a provider-specific required field is empty.
"""
field_names = []
enabled_providers = self.filtered(lambda p: p.state in ['enabled', 'test'])
for field_name, field in self._fields.items():
required_for_provider_code = getattr(field, 'required_if_provider', None)
if required_for_provider_code and any(
required_for_provider_code == provider._get_code() and not provider[field_name]
for provider in enabled_providers
):
ir_field = self.env['ir.model.fields']._get(self._name, field_name)
field_names.append(ir_field.field_description)
if field_names:
raise ValidationError(
_("The following fields must be filled: %s", ", ".join(field_names))
)
@api.model
def _toggle_post_processing_cron(self):
""" Enable the post-processing cron if some providers are enabled; disable it otherwise.
This allows for saving resources on the cron's wake-up overhead when it has nothing to do.
:return: None
"""
post_processing_cron = self.env.ref(
'payment.cron_post_process_payment_tx', raise_if_not_found=False
)
if post_processing_cron:
any_active_provider = bool(
self.sudo().search_count([('state', '!=', 'disabled')], limit=1)
)
post_processing_cron.active = any_active_provider
def _archive_linked_tokens(self):
""" Archive all the payment tokens linked to the providers.
:return: None
"""
self.env['payment.token'].search([('provider_id', 'in', self.ids)]).write({'active': False})
def _deactivate_unsupported_payment_methods(self):
""" Deactivate payment methods linked to only disabled providers.
:return: None
"""
unsupported_pms = self.payment_method_ids.filtered(
lambda pm: all(p.state == 'disabled' for p in pm.provider_ids)
)
(unsupported_pms + unsupported_pms.brand_ids).active = False
def _activate_default_pms(self):
"""Activate the default payment methods of the provider.
:return: None
"""
# Filter out pms that are not compatible with manual capture if any provider requires it.
manual_capture_providers = self.env['payment.provider'].search([
('state', 'in', ['enabled', 'test']), ('capture_manually', '=', True)
])
compatible_pms = self.with_context(active_test=False).payment_method_ids.filtered(
lambda pm: (
not pm.provider_ids & manual_capture_providers
or pm.support_manual_capture != 'none'
)
)
# Activate the compatible PMs and brands that are listed as default methods.
default_pm_codes = {code for p in self for code in p._get_default_payment_method_codes()}
pms_to_activate = (compatible_pms + compatible_pms.brand_ids).filtered(
lambda pm: pm.code in default_pm_codes
)
pms_to_activate.active = True
def _get_default_payment_method_codes(self):
"""Return the default payment methods for this provider.
Note: `self.ensure_one()`
:return: The default payment method codes.
:rtype: set
"""
self.ensure_one()
return set()
@api.ondelete(at_uninstall=False)
def _unlink_except_master_data(self):
""" Prevent the deletion of the payment provider if it has an xmlid. """
external_ids = self.get_external_id()
for provider in self:
external_id = external_ids[provider.id]
if external_id and not external_id.startswith('__export__'):
raise UserError(_(
"You cannot delete the payment provider %s; disable it or uninstall it"
" instead.", provider.name
))
# === ACTION METHODS === #
def button_immediate_install(self):
""" Install the module and reload the page.
Note: `self.ensure_one()`
:return: The action to reload the page.
:rtype: dict
"""
if self.module_id and self.module_state != 'installed':
self.module_id.button_immediate_install()
return {
'type': 'ir.actions.client',
'tag': 'reload',
}
def action_start_onboarding(self, menu_id=None):
"""Start the provider-specific onboarding.
Providers implementing a specific onboarding must override this method and return the action
to run the onboarding.
:param int menu_id: The menu from which the onboarding is started, as an `ir.ui.menu` id.
:return: The onboarding action.
:rtype: dict
"""
return {}
def action_reset_credentials(self):
"""Reset the credentials of the provider, disable it, and unpublish it.
Note: self.ensure_one()
:return: The result of the write operation.
:rtype: bool
"""
self.ensure_one()
return self.write({
'state': 'disabled',
'is_published': False,
**self._get_reset_values(),
})
def _get_reset_values(self):
"""Return the values to reset the credentials of the provider.
Providers can override this to supply their own credential fields to reset.
Note: self.ensure_one() from :meth: `action_reset_credentials`
:return: The values to reset the credentials of the provider.
:rtype: dict
"""
return {}
def action_toggle_is_published(self):
""" Toggle the field `is_published`.
:return: None
:raise UserError: If the provider is disabled.
"""
if self.state == 'disabled' and not self.is_published:
raise UserError(_("You cannot publish a disabled provider."))
self.is_published = not self.is_published
def action_view_payment_methods(self):
self.ensure_one()
return {
'type': 'ir.actions.act_window',
'name': _("Payment Methods"),
'res_model': 'payment.method',
'view_mode': 'list,kanban,form',
'domain': [('id', 'in', self.with_context(active_test=False).payment_method_ids.ids)],
'context': {'active_test': False, 'create': False},
}
# === BUSINESS METHODS === #
@api.model
def _get_compatible_providers(
self, company_id, partner_id, amount, currency_id=None, force_tokenization=False,
is_express_checkout=False, is_validation=False, report=None, **kwargs
):
""" Search and return the providers matching the compatibility criteria.
The compatibility criteria are that providers must: not be disabled; be in the company that
is provided; support the country of the partner if it exists; be compatible with the
currency if provided. If provided, the optional keyword arguments further refine the
criteria.
:param int company_id: The company to which providers must belong, as a `res.company` id.
:param int partner_id: The partner making the payment, as a `res.partner` id.
:param float amount: The amount to pay. `0` for validation transactions.
:param int currency_id: The payment currency, if known beforehand, as a `res.currency` id.
:param bool force_tokenization: Whether only providers allowing tokenization can be matched.
:param bool is_express_checkout: Whether the payment is made through express checkout.
:param bool is_validation: Whether the operation is a validation.
:param dict report: The report in which each provider's availability status and reason must
be logged.
:param dict kwargs: Optional data. This parameter is not used here.
:return: The compatible providers.
:rtype: payment.provider
"""
# Search compatible providers with the base domain.
providers = self.env['payment.provider'].search([
*self.env['payment.provider']._check_company_domain(company_id),
('state', 'in', ['enabled', 'test']),
])
payment_utils.add_to_report(report, providers)
# Filter by `is_published` state.
if not self.env.user._is_internal():
providers = providers.filtered('is_published')
# Handle the partner country; allow all countries if the list is empty.
partner = self.env['res.partner'].browse(partner_id)
if partner.country_id: # The partner country must either not be set or be supported.
unfiltered_providers = providers
providers = providers.filtered(
lambda p: (
not p.available_country_ids
or partner.country_id.id in p.available_country_ids.ids
)
)
payment_utils.add_to_report(
report,
unfiltered_providers - providers,
available=False,
reason=REPORT_REASONS_MAPPING['incompatible_country'],
)
# Handle the maximum amount.
currency = self.env['res.currency'].browse(currency_id).exists()
if not is_validation and currency: # The currency is required to convert the amount.
company = self.env['res.company'].browse(company_id).exists()
date = fields.Date.context_today(self)
converted_amount = currency._convert(amount, company.currency_id, company, date)
unfiltered_providers = providers
providers = providers.filtered(
lambda p: (
not p.maximum_amount
or currency.compare_amounts(p.maximum_amount, converted_amount) != -1
)
)
payment_utils.add_to_report(
report,
unfiltered_providers - providers,
available=False,
reason=REPORT_REASONS_MAPPING['exceed_max_amount'],
)
# Handle the available currencies; allow all currencies if the list is empty.
if currency:
unfiltered_providers = providers
providers = providers.filtered(
lambda p: (
not p.available_currency_ids
or currency.id in p.available_currency_ids.ids
)
)
payment_utils.add_to_report(
report,
unfiltered_providers - providers,
available=False,
reason=REPORT_REASONS_MAPPING['incompatible_currency'],
)
# Handle tokenization support requirements.
if force_tokenization or self._is_tokenization_required(**kwargs):
unfiltered_providers = providers
providers = providers.filtered('allow_tokenization')
payment_utils.add_to_report(
report,
unfiltered_providers - providers,
available=False,
reason=REPORT_REASONS_MAPPING['tokenization_not_supported'],
)
# Handle express checkout.
if is_express_checkout:
unfiltered_providers = providers
providers = providers.filtered('allow_express_checkout')
payment_utils.add_to_report(
report,
unfiltered_providers - providers,
available=False,
reason=REPORT_REASONS_MAPPING['express_checkout_not_supported'],
)
return providers
def _is_tokenization_required(self, **kwargs):
""" Return whether tokenizing the transaction is required given its context.
For a module to make the tokenization required based on the payment context, it must
override this method and return whether it is required.
:param dict kwargs: The payment context. This parameter is not used here.
:return: Whether tokenizing the transaction is required.
:rtype: bool
"""
return False
def _should_build_inline_form(self, is_validation=False):
""" Return whether the inline payment form should be instantiated.
For a provider to handle both direct payments and payments with redirection, it must
override this method and return whether the inline payment form should be instantiated (i.e.
if the payment should be direct) based on the operation (online payment or validation).
:param bool is_validation: Whether the operation is a validation.
:return: Whether the inline form should be instantiated.
:rtype: bool
"""
return True
def _get_validation_amount(self):
""" Return the amount to use for validation operations.
For a provider to support tokenization, it must override this method and return the
validation amount. If it is `0`, it is not necessary to create the override.
Note: `self.ensure_one()`
:return: The validation amount.
:rtype: float
"""
self.ensure_one()
return 0.0
def _get_validation_currency(self):
""" Return the currency to use for validation operations.
The validation currency must be supported by both the provider and the payment method. If
the payment method is not passed, only the provider's supported currencies are considered.
If no suitable currency is found, the provider's company's currency is returned instead.
For a provider to support tokenization and specify a different validation currency, it must
override this method and return the appropriate validation currency.
Note: `self.ensure_one()`
:return: The validation currency.
:rtype: recordset of `res.currency`
"""
self.ensure_one()
# Find the validation currency at the intersection of the provider's and payment method's
# supported currencies. An empty recordset means that all currencies are supported.
provider_currencies = self.available_currency_ids
pm = self.env.context.get('validation_pm')
pm_currencies = self.env['res.currency'] if not pm else pm.supported_currency_ids
validation_currency = None
if provider_currencies and pm_currencies:
validation_currency = (provider_currencies & pm_currencies)[:1]
elif provider_currencies and not pm_currencies:
validation_currency = provider_currencies[:1]
elif not provider_currencies and pm_currencies:
validation_currency = pm_currencies[:1]
if not validation_currency: # All currencies are supported, or no suitable one was found.
validation_currency = self.company_id.currency_id
return validation_currency
def _get_redirect_form_view(self, is_validation=False):
""" Return the view of the template used to render the redirect form.
For a provider to return a different view depending on whether the operation is a
validation, it must override this method and return the appropriate view.
Note: `self.ensure_one()`
:param bool is_validation: Whether the operation is a validation.
:return: The view of the redirect form template.
:rtype: record of `ir.ui.view`
"""
self.ensure_one()
return self.redirect_form_view_id
# === REQUEST HELPERS === #
def _send_api_request(
self, method, endpoint, *, params=None, data=None, json=None, reference=None, **kwargs
):
"""Send a request to the API.
Whenever possible, calls to this method should be wrapped in a try-except block to prevent
the `ValidationError` that is raised when the request fails from bubbling up. Exceptions to
this rule include calls from a controller that must return the error message to the client.
Note: `self.ensure_one()`
:param str method: The HTTP method of the request.
:param str endpoint: The endpoint of the API to reach with the request.
:param dict params: The query string parameters of the request.
:param dict|str data: The body of the request.
:param dict json: The JSON-formatted body of the request.
:param str reference: The reference of the transaction, if any.
:param dict kwargs: Provider-specific data forwarded to the specialized helper methods.
:return: The formatted content of the response.
:rtype: dict|str
:raise ValidationError: If an HTTP error occurs.
"""
self.ensure_one()
# Build the request.
url = self._build_request_url(endpoint, **kwargs)
payload = params or data or json
headers = self._build_request_headers(method, endpoint, payload, **kwargs)
auth = self._build_request_auth(**kwargs)
# Log the request.
self._log_request(method, url, payload, reference=reference)
# Send the request.
try:
response = requests.request(
method, url, params=params, data=data, json=json, headers=headers, auth=auth,
timeout=10,
)
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout):
raise ValidationError(_("Could not establish the connection to the payment provider."))
# Log the response.
self._log_response(response, reference=reference)
# Parse the response.
try:
response.raise_for_status()
except requests.exceptions.HTTPError:
try:
error_msg = self._parse_response_error(response)
except JSONDecodeError: # The provider failed to parse plain text.
error_msg = response.text
raise ValidationError(_("The payment provider rejected the request.\n%s", error_msg))
return self._parse_response_content(response, **kwargs)
def _build_request_url(self, endpoint, **kwargs):
"""Build the URL of the request.
This method serves as a hook to allow providers to build the request URL.
:param str endpoint: The endpoint of the API to reach with the request.
:param dict kwargs: Provider-specific data.
:return: The request URL.
:rtype: str
"""
return ''
def _build_request_headers(self, method, endpoint, payload, **kwargs):
"""Build the headers of the request.
This method serves as a hook to allow providers to build the request headers.
:param str method: The HTTP method of the request.
:param str endpoint: The endpoint of the API to reach with the request.
:param dict payload: The payload of the request.
:param dict kwargs: Provider-specific data.
:return: The request headers.
:rtype: dict
"""
return {}
def _build_request_auth(self, **kwargs):
"""Set the basic HTTP Auth of the request
This method serves as a hook to allow providers to build the request's basic HTTP Auth.
:param dict kwargs: Provider-specific data.
:return: The basic HTTP Auth, if any.
:rtype: tuple
"""
return tuple()
def _log_request(self, method, url, payload, *, reference=None):
"""Log the request.
The transaction reference is included in the log when possible to contextualize the request.
When the request is not linked to a transaction, the provider's id is used instead.
:param str method: The HTTP method of the request.
:param str url: The URL of the request.
:param str payload: The payload of the request.
:param str reference: The reference of the transaction, if any.
:rtype: None
"""
if reference:
log_msg = "Sending %(method)s API request to %(url)s for transaction %(ref)s."
log_values = {'method': method, 'url': url, 'ref': reference}
else:
log_msg = "Sending %(method)s API request to %(url)s for provider %(p_id)s."
log_values = {'method': method, 'url': url, 'p_id': self.id}
# Add the payload to the log if any.
if payload:
log_msg += " Payload:\n%(payload)s"
log_values['payload'] = pformat(payload)
_logger.info(log_msg, log_values)
def _log_response(self, response, *, reference=None):
"""Log the response.
The transaction reference is included in the log when possible to contextualize the
response. When the response is not linked to a transaction, the provider's id is used
instead.
:param requests.Response response: The response to log.
:param str reference: The reference of the transaction, if any.
:rtype: None
"""
if reference:
log_msg = (
"Received HTTP %(code)s %(status)s API response from %(url)s for transaction"
" %(ref)s.\n%(data)s"
)
else:
log_msg = (
"Received HTTP %(code)s %(status)s API response from %(url)s for provider %(p_id)s."
"\n%(data)s"
)
log_values = {
'code': response.status_code,
'status': response.reason,
'url': response.url,
'ref': reference,
'p_id': self.id,
'data': response.text,
}
if response.ok:
_logger.info(log_msg, log_values)
else:
_logger.error(log_msg, log_values)
def _parse_response_content(self, response, **kwargs):
"""Retrieve the JSON-formatted content of the response.
This method serves as a hook to allow providers to parse the response content.
:param requests.Response response: The response to parse.
:param dict kwargs: Provider-specific data.
:return: The response content.
:rtype: dict
"""
return response.json()
def _parse_response_error(self, response):
"""Retrieve the error message from the response.
This method serves as a hook to allow providers to parse the response's error message.
:param requests.Response response: The response to parse.
:return: The error message.
:rtype: str
"""
return response.text
def _prepare_json_rpc_payload(self, data):
"""Prepare a JSON-RPC 2.0 formatted payload for proxy requests.
:param dict data: The data to include in the JSON-RPC request.
:return: The JSON-RPC 2.0 formatted proxy payload.
:rtype: dict
"""
return {
'jsonrpc': '2.0',
'id': uuid.uuid4().hex,
'method': 'call',
'params': data,
}
def _parse_proxy_response(self, response):
"""Retrieve JSON-RPC 2.0 formatted response content of a proxy request.
Note: Proxies always respond with HTTP 200 as they implement JSON-RPC 2.0.
:param requests.Response response: The JSON-RPC 2.0 formatted proxy response.
:return: The response content.
:rtype: dict
"""
response_content = response.json()
if response_content.get('error'): # An exception was raised on the proxy.
error_data = response_content['error']['data']
raise ValidationError(_(
"The payment provider rejected the request.\n%s", pformat(error_data['message'])
))
return response_content['result']
# === SETUP METHODS === #
@api.model
def _setup_provider(self, provider_code, **kwargs):
""" Perform module-specific and multi-company setup steps for the provider.
This method is called after the module of a provider is installed, with its code passed as
`provider_code`.
:param str provider_code: The code of the provider to setup.
:return: None
"""
existing_providers = self.search(self._get_provider_domain(provider_code, **kwargs))
main_provider = existing_providers[:1]
existing_provider_companies = existing_providers.company_id
companies_needing_provider = self.env['res.company'].search([
('id', 'not in', existing_provider_companies.ids), ('parent_id', '=', False)
])
for company in companies_needing_provider:
# Create a copy of the provider for each company.
main_provider.copy({'company_id': company.id})
@api.model
def _remove_provider(self, provider_code, **kwargs):
""" Remove the module-specific data of the given provider.
:param str provider_code: The code of the provider whose data to remove.
:return: None
"""
providers = self.search(self._get_provider_domain(provider_code, **kwargs))
providers.write(self._get_removal_values())
@api.model
def _get_provider_domain(self, provider_code, **kwargs):
"""Return the payment provider domain.
:param str provider_code: The code of the provider to search for.
:param dict kwargs: Additional keyword arguments.
:return: The domain to search for the provider.
:rtype: list[tuple]
"""
return [('code', '=', provider_code)]
def _get_removal_values(self):
""" Return the values to update a provider with when its module is uninstalled.
For a module to specify additional removal values, it must override this method and complete
the generic values with its specific values.
:return: The removal values to update the removed provider with.
:rtype: dict
"""
return {
'code': 'none',
'state': 'disabled',
'is_published': False,
'redirect_form_view_id': None,
'inline_form_view_id': None,
'token_inline_form_view_id': None,
'express_checkout_form_view_id': None,
}
def _get_code(self):
""" Return the code of the provider.
Note: `self.ensure_one()`
:return: The code of the provider.
:rtype: str
"""
self.ensure_one()
return self.code
def _get_status_message(self, status):
match status:
case 'pending':
status_message = self.pending_msg
case 'authorized':
status_message = self.auth_msg
case 'done':
status_message = self.done_msg
case 'cancel':
status_message = self.cancel_msg
case _:
status_message = ''
if not is_html_empty(status_message):
return status_message
return ''