blob: 72ec4a04389c874cf6bdb9e3a4759b2831ca23ee (
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
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import http, _
from odoo.http import request
from odoo.exceptions import UserError
class PaymentTestController(http.Controller):
@http.route(['/payment/test/s2s/create_json_3ds'], type='json', auth='public', csrf=False)
def payment_test_s2s_create_json_3ds(self, verify_validity=False, **kwargs):
if not kwargs.get('partner_id'):
kwargs = dict(kwargs, partner_id=request.env.user.partner_id.id)
acquirer = request.env['payment.acquirer'].browse(int(kwargs.get('acquirer_id')))
if acquirer.state != 'test':
raise UserError(_("Please do not use this acquirer for a production environment!"))
token = acquirer.s2s_process(kwargs)
return {
'result': True,
'id': token.id,
'short_name': 'short_name',
'3d_secure': False,
'verified': True,
}
|