Files
suite/website_sale_signifyd/models/sale_order.py
2024-09-25 00:32:07 +02:00

184 lines
7.7 KiB
Python

# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
from odoo import api, fields, models
from odoo.exceptions import UserError
from odoo.http import request
class SaleOrder(models.Model):
_inherit = 'sale.order'
# Source IP for case creation - determination attempted at order creation and if necessary at confirmation
def _get_source_ip(self):
if request:
return request.httprequest.environ['REMOTE_ADDR']
return ''
signifyd_case_id = fields.Many2one('signifyd.case', readonly=1, copy=False)
singifyd_score = fields.Float(related='signifyd_case_id.score')
signifyd_checkpoint_action = fields.Selection(string='Signifyd Action', related='signifyd_case_id.checkpoint_action')
source_ip = fields.Char(default=_get_source_ip, copy=False, help='IP address of the customer, used for signifyd case creation.')
def action_view_signifyd_case(self):
self.ensure_one()
if not self.signifyd_case_id:
raise UserError('This order has no Signifyd Case')
form_id = self.env.ref('website_sale_signifyd.signifyd_case_form_view').id
context = {'create': False, 'delete': False}
return {
'type': 'ir.actions.act_window',
'name': 'Signifyd Case',
'view_mode': 'form',
'views': [(form_id, 'form')],
'res_model': 'signifyd.case',
'res_id': self.signifyd_case_id.id,
'context': context,
}
def action_confirm(self):
res = super().action_confirm()
if not self.source_ip:
self.source_ip = self._get_source_ip()
for sale in self.filtered(lambda so: so._should_post_signifyd()):
_case = sale.post_signifyd_case()
return res
def _should_post_signifyd(self):
# If we have no transaction/acquirer we will still send!
# this case is useful for admin or free orders but could be customized here.
case_required = bool(self.website_id.signifyd_connector_id.signifyd_case_type)
a_case_types = self.transaction_ids.mapped('acquirer_id.signifyd_case_type')
if a_case_types:
case_required = any(a_case_types)
return self.state in ('sale', 'done') and not self.signifyd_case_id and case_required
def post_signifyd_case(self):
self.ensure_one()
if not self.website_id.signifyd_connector_id:
return
if request and request.session:
checkout_token = request.session.session_token
order_session_id = checkout_token
else:
checkout_token = ''
# Session values for Signifyd post
sig_vals = self._prepare_signifyd_case_values(order_session_id, checkout_token, self.source_ip)
case = self.env['signifyd.case'].post_case(self.website_id.signifyd_connector_id, sig_vals)
success_response = case.get('investigationId')
if success_response:
new_case = self.env['signifyd.case'].create({
'order_id': self.id,
'case_id': success_response,
'name': success_response,
'partner_id': self.partner_id.id,
})
self.write({'signifyd_case_id': new_case.id})
return new_case
# TODO do we need to raise an exception?
return None
@api.model
def _prepare_signifyd_case_values(self, order_session_id, checkout_token, browser_ip_address):
decision_request = self.website_id.signifyd_connector_id.signifyd_case_type or 'DECISION'
# find the highest 'acquirer override'
# note that we shouldn't be here if the override would prevent sending
a_case_types = self.transaction_ids.mapped('acquirer_id.signifyd_case_type')
if a_case_types and 'GUARANTEE' in a_case_types:
decision_request = 'GUARANTEE'
elif a_case_types and 'SCORE' in a_case_types:
decision_request = 'SCORE'
elif a_case_types and 'DECISION' in a_case_types:
decision_request = 'DECISION'
tx_status_type = {
'draft': 'FAILURE',
'pending': 'PENDING',
'authorized': 'SUCCESS',
'done': 'SUCCESS',
'cancel': 'FAILURE',
'error': 'ERROR',
}
recipients = self.partner_invoice_id + self.partner_shipping_id
new_case_vals = {
'decisionRequest': {
'paymentFraud': decision_request,
},
'purchase': {
"orderSessionId": order_session_id,
"orderId": self.id,
"checkoutToken": checkout_token,
"browserIpAddress": browser_ip_address,
"currency": self.partner_id.currency_id.name,
"orderChannel": "WEB",
"totalPrice": self.amount_total,
'products': [
{
"itemId": line.product_id.id,
"itemName": line.product_id.name,
"itemIsDigital": False,
"itemCategory": line.product_id.categ_id.name,
"itemUrl": line.product_id.website_url or '',
"itemQuantity": line.product_uom_qty,
"itemPrice": line.price_unit,
"itemWeight": line.product_id.weight or 0.1,
}
for line in self.order_line if line.product_id
],
'shipments': [{
"shipper": carrier.name,
"shippingMethod": "ground",
"shippingPrice": self.amount_delivery,
}
for carrier in self.carrier_id
],
},
'recipients': [
{
"fullName": partner.name,
"confirmationEmail": partner.email,
"confirmationPhone": partner.phone,
"organization": partner.company_id.name,
"deliveryAddress": {
"streetAddress": partner.street,
"unit": partner.street2,
"city": partner.city,
"provinceCode": partner.state_id.code,
"postalCode": partner.zip,
"countryCode": partner.country_id.code,
}
}
for partner in recipients
],
'transactions': [
{
"parentTransactionId": None,
"transactionId": tx.id,
"gateway": tx.acquirer_id.name,
"paymentMethod": "CREDIT_CARD",
"gatewayStatusCode": tx_status_type.get(tx.state, 'PENDING'),
"type": "AUTHORIZATION",
"currency": self.partner_id.currency_id.name,
"amount": tx.amount,
# "avsResponseCode": "Y",
# "cvvResponseCode": "N",
"checkoutPaymentDetails": {
"holderName": tx.partner_id.name,
"billingAddress": {
"streetAddress": tx.partner_id.street,
"unit": tx.partner_id.street2,
"city": tx.partner_id.city,
"provinceCode": tx.partner_id.state_id.code,
"postalCode": tx.partner_id.zip,
"countryCode": tx.partner_id.country_id.code,
}
}
}
for tx in self.transaction_ids
],
}
return new_case_vals