2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
|
|
import pprint
|
|
|
|
import werkzeug
|
2018-04-05 10:25:40 +02:00
|
|
|
from werkzeug.urls import url_unquote_plus
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import http
|
|
|
|
from flectra.http import request
|
|
|
|
from flectra.addons.payment.models.payment_acquirer import ValidationError
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class OgoneController(http.Controller):
|
|
|
|
_accept_url = '/payment/ogone/test/accept'
|
|
|
|
_decline_url = '/payment/ogone/test/decline'
|
|
|
|
_exception_url = '/payment/ogone/test/exception'
|
|
|
|
_cancel_url = '/payment/ogone/test/cancel'
|
|
|
|
|
|
|
|
@http.route([
|
|
|
|
'/payment/ogone/accept', '/payment/ogone/test/accept',
|
|
|
|
'/payment/ogone/decline', '/payment/ogone/test/decline',
|
|
|
|
'/payment/ogone/exception', '/payment/ogone/test/exception',
|
|
|
|
'/payment/ogone/cancel', '/payment/ogone/test/cancel',
|
|
|
|
], type='http', auth='none')
|
|
|
|
def ogone_form_feedback(self, **post):
|
|
|
|
""" Ogone contacts using GET, at least for accept """
|
|
|
|
_logger.info('Ogone: entering form_feedback with post data %s', pprint.pformat(post)) # debug
|
|
|
|
request.env['payment.transaction'].sudo().form_feedback(post, 'ogone')
|
2018-04-05 10:25:40 +02:00
|
|
|
return werkzeug.utils.redirect(url_unquote_plus(post.pop('return_url', '/')))
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
@http.route(['/payment/ogone/s2s/create_json'], type='json', auth='public', csrf=False)
|
|
|
|
def ogone_s2s_create_json(self, **kwargs):
|
2018-04-05 10:25:40 +02:00
|
|
|
if not kwargs.get('partner_id'):
|
|
|
|
kwargs = dict(kwargs, partner_id=request.env.user.partner_id.id)
|
2018-01-16 06:58:15 +01:00
|
|
|
new_id = request.env['payment.acquirer'].browse(int(kwargs.get('acquirer_id'))).s2s_process(kwargs)
|
|
|
|
return new_id.id
|
|
|
|
|
|
|
|
@http.route(['/payment/ogone/s2s/create_json_3ds'], type='json', auth='public', csrf=False)
|
|
|
|
def ogone_s2s_create_json_3ds(self, verify_validity=False, **kwargs):
|
2018-04-05 10:25:40 +02:00
|
|
|
if not kwargs.get('partner_id'):
|
|
|
|
kwargs = dict(kwargs, partner_id=request.env.user.partner_id.id)
|
2018-01-16 06:58:15 +01:00
|
|
|
token = request.env['payment.acquirer'].browse(int(kwargs.get('acquirer_id'))).s2s_process(kwargs)
|
|
|
|
|
|
|
|
if not token:
|
|
|
|
res = {
|
|
|
|
'result': False,
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
|
|
|
|
res = {
|
|
|
|
'result': True,
|
|
|
|
'id': token.id,
|
|
|
|
'short_name': token.short_name,
|
|
|
|
'3d_secure': False,
|
|
|
|
'verified': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
if verify_validity != False:
|
|
|
|
baseurl = request.env['ir.config_parameter'].sudo().get_param('web.base.url')
|
|
|
|
params = {
|
|
|
|
'accept_url': baseurl + '/payment/ogone/validate/accept',
|
|
|
|
'decline_url': baseurl + '/payment/ogone/validate/decline',
|
|
|
|
'exception_url': baseurl + '/payment/ogone/validate/exception',
|
|
|
|
'return_url': kwargs.get('return_url', baseurl)
|
|
|
|
}
|
|
|
|
tx = token.validate(**params)
|
|
|
|
res['verified'] = token.verified
|
|
|
|
|
|
|
|
if tx and tx.html_3ds:
|
|
|
|
res['3d_secure'] = tx.html_3ds
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
@http.route(['/payment/ogone/s2s/create'], type='http', auth='public', methods=["POST"], csrf=False)
|
|
|
|
def ogone_s2s_create(self, **post):
|
|
|
|
error = ''
|
|
|
|
acq = request.env['payment.acquirer'].browse(int(post.get('acquirer_id')))
|
|
|
|
try:
|
|
|
|
token = acq.s2s_process(post)
|
|
|
|
except Exception as e:
|
|
|
|
# synthax error: 'CHECK ERROR: |Not a valid date\n\n50001111: None'
|
|
|
|
token = False
|
|
|
|
error = str(e).splitlines()[0].split('|')[-1] or ''
|
|
|
|
|
|
|
|
if token and post.get('verify_validity'):
|
|
|
|
baseurl = request.env['ir.config_parameter'].sudo().get_param('web.base.url')
|
|
|
|
params = {
|
|
|
|
'accept_url': baseurl + '/payment/ogone/validate/accept',
|
|
|
|
'decline_url': baseurl + '/payment/ogone/validate/decline',
|
|
|
|
'exception_url': baseurl + '/payment/ogone/validate/exception',
|
|
|
|
'return_url': post.get('return_url', baseurl)
|
|
|
|
}
|
|
|
|
tx = token.validate(**params)
|
|
|
|
if tx and tx.html_3ds:
|
|
|
|
return tx.html_3ds
|
|
|
|
return werkzeug.utils.redirect(post.get('return_url', '/') + (error and '#error=%s' % werkzeug.url_quote(error) or ''))
|
|
|
|
|
|
|
|
@http.route([
|
|
|
|
'/payment/ogone/validate/accept',
|
|
|
|
'/payment/ogone/validate/decline',
|
|
|
|
'/payment/ogone/validate/exception',
|
|
|
|
], type='http', auth='none')
|
|
|
|
def ogone_validation_form_feedback(self, **post):
|
|
|
|
""" Feedback from 3d secure for a bank card validation """
|
|
|
|
request.env['payment.transaction'].sudo().form_feedback(post, 'ogone')
|
|
|
|
return werkzeug.utils.redirect(werkzeug.url_unquote(post.pop('return_url', '/')))
|
|
|
|
|
|
|
|
@http.route(['/payment/ogone/s2s/feedback'], auth='none', csrf=False)
|
|
|
|
def feedback(self, **kwargs):
|
|
|
|
try:
|
|
|
|
tx = request.env['payment.transaction'].sudo()._ogone_form_get_tx_from_data(kwargs)
|
2018-07-09 15:39:00 +02:00
|
|
|
tx._ogone_s2s_validate_tree(kwargs)
|
2018-01-16 06:58:15 +01:00
|
|
|
except ValidationError:
|
|
|
|
return 'ko'
|
|
|
|
return 'ok'
|