summaryrefslogtreecommitdiff
path: root/addons/payment_test/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'addons/payment_test/controllers')
-rw-r--r--addons/payment_test/controllers/__init__.py3
-rw-r--r--addons/payment_test/controllers/main.py26
2 files changed, 29 insertions, 0 deletions
diff --git a/addons/payment_test/controllers/__init__.py b/addons/payment_test/controllers/__init__.py
new file mode 100644
index 00000000..65a8c120
--- /dev/null
+++ b/addons/payment_test/controllers/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import main
diff --git a/addons/payment_test/controllers/main.py b/addons/payment_test/controllers/main.py
new file mode 100644
index 00000000..72ec4a04
--- /dev/null
+++ b/addons/payment_test/controllers/main.py
@@ -0,0 +1,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,
+ }