mirror of https://gitlab.federez.net/re2o/re2o
44 changed files with 1144 additions and 46 deletions
@ -0,0 +1,113 @@ |
|||||
|
"""Payment |
||||
|
|
||||
|
Here are defined some views dedicated to online payement. |
||||
|
""" |
||||
|
from django.urls import reverse |
||||
|
from django.shortcuts import redirect, get_object_or_404 |
||||
|
from django.contrib.auth.decorators import login_required |
||||
|
from django.contrib import messages |
||||
|
from django.views.decorators.csrf import csrf_exempt |
||||
|
from django.utils.datastructures import MultiValueDictKeyError |
||||
|
from django.http import HttpResponse, HttpResponseBadRequest |
||||
|
|
||||
|
from collections import OrderedDict |
||||
|
|
||||
|
from preferences.models import AssoOption |
||||
|
from .models import Facture |
||||
|
from .payment_utils.comnpay import Payment as ComnpayPayment |
||||
|
|
||||
|
@csrf_exempt |
||||
|
@login_required |
||||
|
def accept_payment(request, factureid): |
||||
|
facture = get_object_or_404(Facture, id=factureid) |
||||
|
messages.success( |
||||
|
request, |
||||
|
"Le paiement de {} € a été accepté.".format(facture.prix()) |
||||
|
) |
||||
|
return redirect(reverse('users:profil', kwargs={'userid':request.user.id})) |
||||
|
|
||||
|
|
||||
|
@csrf_exempt |
||||
|
@login_required |
||||
|
def refuse_payment(request): |
||||
|
messages.error( |
||||
|
request, |
||||
|
"Le paiement a été refusé." |
||||
|
) |
||||
|
return redirect(reverse('users:profil', kwargs={'userid':request.user.id})) |
||||
|
|
||||
|
@csrf_exempt |
||||
|
def ipn(request): |
||||
|
option, _created = AssoOption.objects.get_or_create() |
||||
|
p = ComnpayPayment() |
||||
|
order = ('idTpe', 'idTransaction', 'montant', 'result', 'sec', ) |
||||
|
try: |
||||
|
data = OrderedDict([(f, request.POST[f]) for f in order]) |
||||
|
except MultiValueDictKeyError: |
||||
|
return HttpResponseBadRequest("HTTP/1.1 400 Bad Request") |
||||
|
|
||||
|
if not p.validSec(data, option.payment_pass): |
||||
|
return HttpResponseBadRequest("HTTP/1.1 400 Bad Request") |
||||
|
|
||||
|
result = True if (request.POST['result'] == 'OK') else False |
||||
|
idTpe = request.POST['idTpe'] |
||||
|
idTransaction = request.POST['idTransaction'] |
||||
|
|
||||
|
# On vérifie que le paiement nous est destiné |
||||
|
if not idTpe == option.payment_id: |
||||
|
return HttpResponseBadRequest("HTTP/1.1 400 Bad Request") |
||||
|
|
||||
|
try: |
||||
|
factureid = int(idTransaction) |
||||
|
except ValueError: |
||||
|
return HttpResponseBadRequest("HTTP/1.1 400 Bad Request") |
||||
|
|
||||
|
facture = get_object_or_404(Facture, id=factureid) |
||||
|
|
||||
|
# On vérifie que le paiement est valide |
||||
|
if not result: |
||||
|
# Le paiement a échoué : on effectue les actions nécessaires (On indique qu'elle a échoué) |
||||
|
facture.delete() |
||||
|
|
||||
|
# On notifie au serveur ComNPay qu'on a reçu les données pour traitement |
||||
|
return HttpResponse("HTTP/1.1 200 OK") |
||||
|
|
||||
|
facture.valid = True |
||||
|
facture.save() |
||||
|
|
||||
|
# A nouveau, on notifie au serveur qu'on a bien traité les données |
||||
|
return HttpResponse("HTTP/1.0 200 OK") |
||||
|
|
||||
|
|
||||
|
def comnpay(facture, request): |
||||
|
host = request.get_host() |
||||
|
option, _created = AssoOption.objects.get_or_create() |
||||
|
p = ComnpayPayment( |
||||
|
str(option.payment_id), |
||||
|
str(option.payment_pass), |
||||
|
'https://' + host + reverse( |
||||
|
'cotisations:accept_payment', |
||||
|
kwargs={'factureid':facture.id} |
||||
|
), |
||||
|
'https://' + host + reverse('cotisations:refuse_payment'), |
||||
|
'https://' + host + reverse('cotisations:ipn'), |
||||
|
"", |
||||
|
"D" |
||||
|
) |
||||
|
r = { |
||||
|
'action' : 'https://secure.homologation.comnpay.com', |
||||
|
'method' : 'POST', |
||||
|
'content' : p.buildSecretHTML( |
||||
|
"Rechargement du solde", |
||||
|
facture.prix(), |
||||
|
idTransaction=str(facture.id) |
||||
|
), |
||||
|
'amount' : facture.prix, |
||||
|
} |
||||
|
return r |
||||
|
|
||||
|
|
||||
|
PAYMENT_SYSTEM = { |
||||
|
'COMNPAY' : comnpay, |
||||
|
'NONE' : None |
||||
|
} |
||||
@ -0,0 +1,68 @@ |
|||||
|
import time |
||||
|
from random import randrange |
||||
|
import base64 |
||||
|
import hashlib |
||||
|
from collections import OrderedDict |
||||
|
from itertools import chain |
||||
|
|
||||
|
class Payment(): |
||||
|
|
||||
|
vad_number = "" |
||||
|
secret_key = "" |
||||
|
urlRetourOK = "" |
||||
|
urlRetourNOK = "" |
||||
|
urlIPN = "" |
||||
|
source = "" |
||||
|
typeTr = "D" |
||||
|
|
||||
|
def __init__(self, vad_number = "", secret_key = "", urlRetourOK = "", urlRetourNOK = "", urlIPN = "", source="", typeTr="D"): |
||||
|
self.vad_number = vad_number |
||||
|
self.secret_key = secret_key |
||||
|
self.urlRetourOK = urlRetourOK |
||||
|
self.urlRetourNOK = urlRetourNOK |
||||
|
self.urlIPN = urlIPN |
||||
|
self.source = source |
||||
|
self.typeTr = typeTr |
||||
|
|
||||
|
def buildSecretHTML(self, produit="Produit", montant="0.00", idTransaction=""): |
||||
|
if idTransaction == "": |
||||
|
self.idTransaction = str(time.time())+self.vad_number+str(randrange(999)) |
||||
|
else: |
||||
|
self.idTransaction = idTransaction |
||||
|
|
||||
|
array_tpe = OrderedDict( |
||||
|
montant= str(montant), |
||||
|
idTPE= self.vad_number, |
||||
|
idTransaction= self.idTransaction, |
||||
|
devise= "EUR", |
||||
|
lang= 'fr', |
||||
|
nom_produit= produit, |
||||
|
source= self.source, |
||||
|
urlRetourOK= self.urlRetourOK, |
||||
|
urlRetourNOK= self.urlRetourNOK, |
||||
|
typeTr= str(self.typeTr) |
||||
|
) |
||||
|
|
||||
|
if self.urlIPN!="": |
||||
|
array_tpe['urlIPN'] = self.urlIPN |
||||
|
|
||||
|
array_tpe['key'] = self.secret_key; |
||||
|
strWithKey = base64.b64encode(bytes('|'.join(array_tpe.values()), 'utf-8')) |
||||
|
del array_tpe["key"] |
||||
|
array_tpe['sec'] = hashlib.sha512(strWithKey).hexdigest() |
||||
|
|
||||
|
ret = "" |
||||
|
for key in array_tpe: |
||||
|
ret += '<input type="hidden" name="'+key+'" value="'+array_tpe[key]+'"/>' |
||||
|
|
||||
|
return ret |
||||
|
|
||||
|
def validSec(self, values, secret_key): |
||||
|
if "sec" in values: |
||||
|
sec = values['sec'] |
||||
|
del values["sec"] |
||||
|
strWithKey = hashlib.sha512(base64.b64encode(bytes('|'.join(values.values()) +"|"+secret_key, 'utf-8'))).hexdigest() |
||||
|
return strWithKey.upper() == sec.upper() |
||||
|
else: |
||||
|
return False |
||||
|
|
||||
@ -0,0 +1,157 @@ |
|||||
|
|
||||
|
{% extends "cotisations/sidebar.html" %} |
||||
|
{% comment %} |
||||
|
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 © 2017 Gabriel Détraz |
||||
|
Copyright © 2017 Goulven Kermarec |
||||
|
Copyright © 2017 Augustin Lemesle |
||||
|
|
||||
|
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. |
||||
|
{% endcomment %} |
||||
|
|
||||
|
{% load bootstrap3 %} |
||||
|
{% load staticfiles%} |
||||
|
|
||||
|
{% block title %}Création et modification de factures{% endblock %} |
||||
|
|
||||
|
{% block content %} |
||||
|
{% bootstrap_form_errors venteform.management_form %} |
||||
|
|
||||
|
<form class="form" method="post"> |
||||
|
{% csrf_token %} |
||||
|
<h3>Nouvelle facture</h3> |
||||
|
{{ venteform.management_form }} |
||||
|
<!-- TODO: FIXME to include data-type="check" for right option in id_cheque select --> |
||||
|
<h3>Articles de la facture</h3> |
||||
|
<div id="form_set" class="form-group"> |
||||
|
{% for form in venteform.forms %} |
||||
|
<div class='product_to_sell form-inline'> |
||||
|
Article : |
||||
|
{% bootstrap_form form label_class='sr-only' %} |
||||
|
|
||||
|
<button class="btn btn-danger btn-sm" |
||||
|
id="id_form-0-article-remove" type="button"> |
||||
|
<span class="glyphicon glyphicon-remove"></span> |
||||
|
</button> |
||||
|
</div> |
||||
|
{% endfor %} |
||||
|
</div> |
||||
|
<input class="btn btn-primary btn-sm" role="button" value="Ajouter un article" id="add_one"> |
||||
|
<p> |
||||
|
Prix total : <span id="total_price">0,00</span> € |
||||
|
</p> |
||||
|
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %} |
||||
|
</form> |
||||
|
|
||||
|
<script type="text/javascript"> |
||||
|
|
||||
|
var prices = {}; |
||||
|
{% for article in articlelist %} |
||||
|
prices[{{ article.id|escapejs }}] = {{ article.prix }}; |
||||
|
{% endfor %} |
||||
|
|
||||
|
var template = `Article : |
||||
|
{% bootstrap_form venteform.empty_form label_class='sr-only' %} |
||||
|
|
||||
|
<button class="btn btn-danger btn-sm" |
||||
|
id="id_form-__prefix__-article-remove" type="button"> |
||||
|
<span class="glyphicon glyphicon-remove"></span> |
||||
|
</button>` |
||||
|
|
||||
|
function add_article(){ |
||||
|
// Index start at 0 => new_index = number of items |
||||
|
var new_index = |
||||
|
document.getElementsByClassName('product_to_sell').length; |
||||
|
document.getElementById('id_form-TOTAL_FORMS').value ++; |
||||
|
var new_article = document.createElement('div'); |
||||
|
new_article.className = 'product_to_sell form-inline'; |
||||
|
new_article.innerHTML = template.replace(/__prefix__/g, new_index); |
||||
|
document.getElementById('form_set').appendChild(new_article); |
||||
|
add_listenner_for_id(new_index); |
||||
|
} |
||||
|
|
||||
|
function update_price(){ |
||||
|
var price = 0; |
||||
|
var product_count = |
||||
|
document.getElementsByClassName('product_to_sell').length; |
||||
|
var article, article_price, quantity; |
||||
|
for (i = 0; i < product_count; ++i){ |
||||
|
article = document.getElementById( |
||||
|
'id_form-' + i.toString() + '-article').value; |
||||
|
if (article == '') { |
||||
|
continue; |
||||
|
} |
||||
|
article_price = prices[article]; |
||||
|
quantity = document.getElementById( |
||||
|
'id_form-' + i.toString() + '-quantity').value; |
||||
|
price += article_price * quantity; |
||||
|
} |
||||
|
document.getElementById('total_price').innerHTML = |
||||
|
price.toFixed(2).toString().replace('.', ','); |
||||
|
} |
||||
|
|
||||
|
function add_listenner_for_id(i){ |
||||
|
document.getElementById('id_form-' + i.toString() + '-article') |
||||
|
.addEventListener("change", update_price, true); |
||||
|
document.getElementById('id_form-' + i.toString() + '-article') |
||||
|
.addEventListener("onkeypress", update_price, true); |
||||
|
document.getElementById('id_form-' + i.toString() + '-quantity') |
||||
|
.addEventListener("change", update_price, true); |
||||
|
document.getElementById('id_form-' + i.toString() + '-article-remove') |
||||
|
.addEventListener("click", function(event) { |
||||
|
var article = event.target.parentNode; |
||||
|
article.parentNode.removeChild(article); |
||||
|
document.getElementById('id_form-TOTAL_FORMS').value --; |
||||
|
update_price(); |
||||
|
} |
||||
|
) |
||||
|
} |
||||
|
|
||||
|
function set_cheque_info_visibility() { |
||||
|
var paiement = document.getElementById("id_Facture-paiement"); |
||||
|
var visible = paiement.value == paiement.getAttribute('data-cheque'); |
||||
|
p = document.getElementById("id_Facture-paiement"); |
||||
|
var display = 'none'; |
||||
|
if (visible) { |
||||
|
display = 'block'; |
||||
|
} |
||||
|
document.getElementById("id_Facture-cheque") |
||||
|
.parentNode.style.display = display; |
||||
|
document.getElementById("id_Facture-banque") |
||||
|
.parentNode.style.display = display; |
||||
|
} |
||||
|
|
||||
|
// Add events manager when DOM is fully loaded |
||||
|
document.addEventListener("DOMContentLoaded", function() { |
||||
|
document.getElementById("add_one") |
||||
|
.addEventListener("click", add_article, true); |
||||
|
var product_count = |
||||
|
document.getElementsByClassName('product_to_sell').length; |
||||
|
for (i = 0; i < product_count; ++i){ |
||||
|
add_listenner_for_id(i); |
||||
|
} |
||||
|
document.getElementById("id_Facture-paiement") |
||||
|
.addEventListener("change", set_cheque_info_visibility, true); |
||||
|
set_cheque_info_visibility(); |
||||
|
update_price(); |
||||
|
}); |
||||
|
|
||||
|
</script> |
||||
|
|
||||
|
{% endblock %} |
||||
|
|
||||
@ -0,0 +1,37 @@ |
|||||
|
{% extends "cotisations/sidebar.html" %} |
||||
|
{% comment %} |
||||
|
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 © 2017 Gabriel Détraz |
||||
|
Copyright © 2017 Goulven Kermarec |
||||
|
Copyright © 2017 Augustin Lemesle |
||||
|
|
||||
|
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. |
||||
|
{% endcomment %} |
||||
|
|
||||
|
{% load bootstrap3 %} |
||||
|
{% load staticfiles%} |
||||
|
|
||||
|
{% block title %}Rechargement du solde{% endblock %} |
||||
|
|
||||
|
{% block content %} |
||||
|
<h3>Recharger de {{ amount }} €</h3> |
||||
|
<form class="form" method="{{ method }}" action="{{action}}"> |
||||
|
{{ content | safe }} |
||||
|
{% bootstrap_button "Payer" button_type="submit" icon="piggy-bank" %} |
||||
|
</form> |
||||
|
{% endblock %} |
||||
@ -0,0 +1,39 @@ |
|||||
|
{% extends "cotisations/sidebar.html" %} |
||||
|
{% comment %} |
||||
|
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 © 2017 Gabriel Détraz |
||||
|
Copyright © 2017 Goulven Kermarec |
||||
|
Copyright © 2017 Augustin Lemesle |
||||
|
|
||||
|
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. |
||||
|
{% endcomment %} |
||||
|
|
||||
|
{% load bootstrap3 %} |
||||
|
{% load staticfiles%} |
||||
|
|
||||
|
{% block title %}Rechargement du solde{% endblock %} |
||||
|
|
||||
|
{% block content %} |
||||
|
<h2>Rechargement du solde</h2> |
||||
|
<h3>Solde : <span class="label label-default">{{ request.user.solde }} €</span></h3> |
||||
|
<form class="form" method="post"> |
||||
|
{% csrf_token %} |
||||
|
{% bootstrap_form rechargeform %} |
||||
|
{% bootstrap_button "Valider" button_type="submit" icon="piggy-bank" %} |
||||
|
</form> |
||||
|
{% endblock %} |
||||
@ -0,0 +1,59 @@ |
|||||
|
import string |
||||
|
import binascii |
||||
|
from random import choice |
||||
|
from Crypto.Cipher import AES |
||||
|
|
||||
|
from django.db import models |
||||
|
from django.conf import settings |
||||
|
|
||||
|
EOD = '`%EofD%`' # This should be something that will not occur in strings |
||||
|
|
||||
|
|
||||
|
def genstring(length=16, chars=string.printable): |
||||
|
return ''.join([choice(chars) for i in range(length)]) |
||||
|
|
||||
|
|
||||
|
def encrypt(key, s): |
||||
|
obj = AES.new(key) |
||||
|
datalength = len(s) + len(EOD) |
||||
|
if datalength < 16: |
||||
|
saltlength = 16 - datalength |
||||
|
else: |
||||
|
saltlength = 16 - datalength % 16 |
||||
|
ss = ''.join([s, EOD, genstring(saltlength)]) |
||||
|
return obj.encrypt(ss) |
||||
|
|
||||
|
|
||||
|
def decrypt(key, s): |
||||
|
obj = AES.new(key) |
||||
|
ss = obj.decrypt(s) |
||||
|
print(ss) |
||||
|
return ss.split(bytes(EOD, 'utf-8'))[0] |
||||
|
|
||||
|
|
||||
|
class AESEncryptedField(models.CharField): |
||||
|
def save_form_data(self, instance, data): |
||||
|
if value is None: |
||||
|
return value |
||||
|
setattr(instance, self.name, |
||||
|
binascii.b2a_base64(encrypt(settings.AES_KEY, data))) |
||||
|
|
||||
|
def to_python(self, value): |
||||
|
if value is None: |
||||
|
return None |
||||
|
return decrypt(settings.AES_KEY, |
||||
|
binascii.a2b_base64(value)).decode('utf-8') |
||||
|
|
||||
|
def from_db_value(self, value, expression, connection, *args): |
||||
|
if value is None: |
||||
|
return value |
||||
|
return decrypt(settings.AES_KEY, |
||||
|
binascii.a2b_base64(value)).decode('utf-8') |
||||
|
|
||||
|
def get_prep_value(self, value): |
||||
|
if value is None: |
||||
|
return value |
||||
|
return binascii.b2a_base64(encrypt( |
||||
|
settings.AES_KEY, |
||||
|
value |
||||
|
)) |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-11 10:29 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0027_merge_20180106_2019'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='optionaluser', |
||||
|
name='max_recharge', |
||||
|
field=models.DecimalField(decimal_places=2, default=100, max_digits=5), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-11 10:34 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0028_auto_20180111_1129'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='assooption', |
||||
|
name='payment', |
||||
|
field=models.CharField(choices=[('NONE', 'NONE'), ('COMNPAY', 'COMNPAY')], default='NONE', max_length=255), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-11 22:46 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0029_auto_20180111_1134'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.RemoveField( |
||||
|
model_name='optionaluser', |
||||
|
name='max_recharge', |
||||
|
), |
||||
|
migrations.AddField( |
||||
|
model_name='optionaluser', |
||||
|
name='max_solde', |
||||
|
field=models.DecimalField(decimal_places=2, default=50, max_digits=5), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-12 11:34 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0030_auto_20180111_2346'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='optionaluser', |
||||
|
name='self_adhesion', |
||||
|
field=models.BooleanField(default=False, help_text='Un nouvel utilisateur peut se créer son compte sur re2o'), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-13 16:43 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0031_optionaluser_self_adhesion'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='optionaluser', |
||||
|
name='min_online_payment', |
||||
|
field=models.DecimalField(decimal_places=2, default=10, max_digits=5), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 19:12 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0032_optionaluser_min_online_payment'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU_sum_up', |
||||
|
field=models.TextField(blank=True, default='', help_text='Résumé des CGU'), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 19:25 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0033_generaloption_gtu_sum_up'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU', |
||||
|
field=models.FileField(default='', upload_to='GTU'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU_sum_up', |
||||
|
field=models.TextField(blank=True, default=''), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 20:32 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0034_auto_20180114_2025'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU', |
||||
|
field=models.FileField(default='', upload_to='/var/www/static/'), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 20:41 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0035_auto_20180114_2132'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU', |
||||
|
field=models.FileField(default='', upload_to=''), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 20:56 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0036_auto_20180114_2141'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU', |
||||
|
field=models.FileField(default='', null=True, upload_to=''), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 21:09 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0037_auto_20180114_2156'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='generaloption', |
||||
|
name='GTU', |
||||
|
field=models.FileField(blank=True, default='', null=True, upload_to=''), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,21 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-14 23:03 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import preferences.aes_field |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0038_auto_20180114_2209'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='assooption', |
||||
|
name='payment_id', |
||||
|
field=models.CharField(max_length=255, null=True), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,26 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-01-29 16:45 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import preferences.aes_field |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('preferences', '0039_auto_20180115_0003'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='assooption', |
||||
|
name='payment_pass', |
||||
|
field=preferences.aes_field.AESEncryptedField(blank=True, max_length=255, null=True), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='assooption', |
||||
|
name='payment_id', |
||||
|
field=models.CharField(default='', max_length=255), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,30 @@ |
|||||
|
# 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 © 2017 Gabriel Détraz |
||||
|
# Copyright © 2017 Goulven Kermarec |
||||
|
# Copyright © 2017 Augustin Lemesle |
||||
|
# |
||||
|
# 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. |
||||
|
from django import template |
||||
|
from preferences.models import OptionalUser, GeneralOption |
||||
|
|
||||
|
register = template.Library() |
||||
|
|
||||
|
@register.simple_tag |
||||
|
def self_adhesion(): |
||||
|
options, _created = OptionalUser.objects.get_or_create() |
||||
|
return options.self_adhesion |
||||
@ -1,3 +1,4 @@ |
|||||
django-bootstrap3 |
django-bootstrap3 |
||||
django-macaddress |
django-macaddress |
||||
python-dateutil |
python-dateutil |
||||
|
pycrypto |
||||
|
|||||
Loading…
Reference in new issue