2018-07-07 22:01:06 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2018 Hugo Levy-Falk
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2018-06-21 18:03:46 +00:00
|
|
|
from django.db import models
|
|
|
|
from django.shortcuts import render
|
2018-07-03 12:49:13 +00:00
|
|
|
from django.urls import reverse
|
|
|
|
from django.utils.translation import ugettext as _
|
2018-07-03 14:31:06 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _l
|
2018-06-21 18:03:46 +00:00
|
|
|
|
2018-07-02 19:13:13 +00:00
|
|
|
from cotisations.models import Paiement
|
|
|
|
from cotisations.payment_methods.mixins import PaymentMethodMixin
|
2018-06-21 18:03:46 +00:00
|
|
|
|
2018-07-09 18:35:25 +00:00
|
|
|
from re2o.aes_field import AESEncryptedField
|
2018-07-03 12:49:13 +00:00
|
|
|
from .comnpay import Transaction
|
2018-06-21 18:03:46 +00:00
|
|
|
|
|
|
|
|
2018-07-02 19:13:13 +00:00
|
|
|
class ComnpayPayment(PaymentMethodMixin, models.Model):
|
2018-06-21 18:03:46 +00:00
|
|
|
"""
|
2018-07-02 19:13:13 +00:00
|
|
|
The model allowing you to pay with COMNPAY.
|
2018-06-21 18:03:46 +00:00
|
|
|
"""
|
2018-07-15 12:58:04 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = "ComNpay"
|
|
|
|
|
2018-07-02 19:13:13 +00:00
|
|
|
payment = models.OneToOneField(
|
|
|
|
Paiement,
|
2018-07-07 22:01:06 +00:00
|
|
|
on_delete=models.CASCADE,
|
2018-07-02 19:13:13 +00:00
|
|
|
related_name='payment_method',
|
|
|
|
editable=False
|
|
|
|
)
|
2018-06-21 18:03:46 +00:00
|
|
|
payment_credential = models.CharField(
|
|
|
|
max_length=255,
|
|
|
|
default='',
|
2018-07-03 14:31:06 +00:00
|
|
|
blank=True,
|
|
|
|
verbose_name=_l("ComNpay VAD Number"),
|
2018-06-21 18:03:46 +00:00
|
|
|
)
|
|
|
|
payment_pass = AESEncryptedField(
|
|
|
|
max_length=255,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
2018-07-03 14:31:06 +00:00
|
|
|
verbose_name=_l("ComNpay Secret Key"),
|
2018-06-21 18:03:46 +00:00
|
|
|
)
|
2018-07-13 18:19:57 +00:00
|
|
|
minimum_payment = models.DecimalField(
|
|
|
|
verbose_name=_l("Minimum payment"),
|
|
|
|
help_text=_l("The minimal amount of money you have to use when paying"
|
|
|
|
" with ComNpay"),
|
|
|
|
max_digits=5,
|
|
|
|
decimal_places=2,
|
|
|
|
default=1,
|
|
|
|
)
|
2018-06-21 18:03:46 +00:00
|
|
|
|
|
|
|
def end_payment(self, invoice, request):
|
2018-07-03 12:49:13 +00:00
|
|
|
"""
|
|
|
|
Build a request to start the negociation with Comnpay by using
|
|
|
|
a facture id, the price and the secret transaction data stored in
|
|
|
|
the preferences.
|
|
|
|
"""
|
2018-07-02 13:01:34 +00:00
|
|
|
invoice.valid = False
|
|
|
|
invoice.save()
|
2018-07-03 12:49:13 +00:00
|
|
|
host = request.get_host()
|
|
|
|
p = Transaction(
|
|
|
|
str(self.payment_credential),
|
|
|
|
str(self.payment_pass),
|
|
|
|
'https://' + host + reverse(
|
|
|
|
'cotisations:comnpay:accept_payment',
|
|
|
|
kwargs={'factureid': invoice.id}
|
|
|
|
),
|
|
|
|
'https://' + host + reverse('cotisations:comnpay:refuse_payment'),
|
|
|
|
'https://' + host + reverse('cotisations:comnpay:ipn'),
|
|
|
|
"",
|
|
|
|
"D"
|
|
|
|
)
|
|
|
|
r = {
|
|
|
|
'action': 'https://secure.homologation.comnpay.com',
|
|
|
|
'method': 'POST',
|
|
|
|
'content': p.buildSecretHTML(
|
|
|
|
_("Pay invoice no : ")+str(invoice.id),
|
|
|
|
invoice.prix_total(),
|
|
|
|
idTransaction=str(invoice.id)
|
|
|
|
),
|
|
|
|
'amount': invoice.prix_total(),
|
|
|
|
}
|
|
|
|
return render(request, 'cotisations/payment.html', r)
|
2018-07-13 18:19:57 +00:00
|
|
|
|
2018-07-13 20:03:22 +00:00
|
|
|
def check_price(self, price, *args, **kwargs):
|
|
|
|
"""Checks that the price meets the requirement to be paid with ComNpay.
|
2018-07-13 18:19:57 +00:00
|
|
|
"""
|
2018-07-13 20:03:22 +00:00
|
|
|
return ((price >= self.minimum_payment),
|
2018-07-13 18:19:57 +00:00
|
|
|
_('In order to pay your invoice with ComNpay'
|
|
|
|
', the price must be grater than {} €')
|
2018-07-13 20:03:22 +00:00
|
|
|
.format(self.minimum_payment))
|