2020-02-24 13:19:40 +00:00
|
|
|
#!/usr/env/bin python3
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
2020-02-25 13:17:59 +00:00
|
|
|
from django.core.management import call_command
|
2020-02-24 13:19:40 +00:00
|
|
|
from django.utils import timezone
|
|
|
|
import psycopg2 as pg
|
|
|
|
import psycopg2.extras as pge
|
|
|
|
from django.db import transaction
|
|
|
|
|
2020-04-10 16:13:26 +00:00
|
|
|
import json
|
|
|
|
import datetime
|
2020-02-24 13:19:40 +00:00
|
|
|
import collections
|
|
|
|
|
|
|
|
from django.core.exceptions import ValidationError
|
2020-02-25 13:18:39 +00:00
|
|
|
from django.utils.timezone import make_aware
|
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
from django.db import IntegrityError
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from note.models import Note, NoteSpecial, NoteUser, NoteClub
|
|
|
|
from note.models import Alias
|
2020-02-25 13:19:34 +00:00
|
|
|
from note.models import Transaction, TransactionTemplate,\
|
2020-03-22 17:24:54 +00:00
|
|
|
TemplateCategory, RecurrentTransaction, MembershipTransaction
|
2020-02-25 13:19:34 +00:00
|
|
|
from member.models import Profile, Club, Membership
|
2020-02-24 13:19:40 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
Script d'import de la nk15:
|
|
|
|
TODO: import transactions
|
|
|
|
TODO: import adhesion
|
|
|
|
TODO: import activite
|
2020-02-25 13:19:34 +00:00
|
|
|
TODO: import ...
|
2020-02-24 13:19:40 +00:00
|
|
|
|
|
|
|
"""
|
2020-04-10 16:13:26 +00:00
|
|
|
M_DURATION = 396
|
|
|
|
M_START = datetime.date(2019,8,31)
|
|
|
|
M_END = datetime.date(2020,9,30)
|
2020-03-09 18:00:19 +00:00
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
|
2020-04-10 16:13:26 +00:00
|
|
|
MAP_IDBDE={
|
|
|
|
-4: 2, # Carte Bancaire
|
|
|
|
-3: 4, # Virement
|
|
|
|
-2: 1, # Especes
|
|
|
|
-1: 3, # Chèque
|
|
|
|
0: 5, # BDE
|
|
|
|
}
|
2020-02-24 13:19:40 +00:00
|
|
|
|
2020-04-10 16:13:26 +00:00
|
|
|
def update_line(n,N, content):
|
|
|
|
n = str(n)
|
|
|
|
N = str(N)
|
|
|
|
n.rjust(len(N))
|
|
|
|
content.ljust(41)
|
|
|
|
content = content[:40]
|
|
|
|
print(f"({n}/{N}) {content}", end="\r")
|
2020-02-24 13:19:40 +00:00
|
|
|
|
|
|
|
@transaction.atomic
|
2020-04-10 16:13:26 +00:00
|
|
|
def import_comptes(cur):
|
2020-02-24 13:19:40 +00:00
|
|
|
cur.execute("SELECT * FROM comptes WHERE idbde > 0 ORDER BY idbde;")
|
|
|
|
pkclub = 3
|
2020-04-10 16:13:26 +00:00
|
|
|
N = cur.rowcount
|
|
|
|
for idx, row in enumerate(cur):
|
|
|
|
update_line(idx,N,row["pseudo"])
|
2020-02-24 13:19:40 +00:00
|
|
|
if row["type"] == "personne":
|
|
|
|
#sanitize password
|
|
|
|
if row["passwd"] != "*|*":
|
|
|
|
passwd_nk15 = "$".join(["custom_nk15","1",row["passwd"]])
|
|
|
|
else:
|
|
|
|
passwd_nk15 = ''
|
|
|
|
try:
|
|
|
|
obj_dict = {
|
|
|
|
"username": row["pseudo"],
|
|
|
|
"password": passwd_nk15,
|
|
|
|
"first_name": row["nom"],
|
|
|
|
"last_name": row["prenom"],
|
|
|
|
"email": row["mail"],
|
2020-04-10 16:13:26 +00:00
|
|
|
"is_active" : True, # temporary
|
2020-02-24 13:19:40 +00:00
|
|
|
}
|
2020-04-10 16:13:26 +00:00
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
user = User.objects.create(**obj_dict)
|
2020-04-10 16:13:26 +00:00
|
|
|
profile = user.profile
|
|
|
|
profile.phone_number = row['tel']
|
|
|
|
profile.address = row['adresse']
|
|
|
|
profile.paid = row['normalien']
|
|
|
|
profile.registration_valid = True
|
|
|
|
profile.email_confirmed = True
|
|
|
|
user.save()
|
|
|
|
profile.save()
|
|
|
|
# sanitize duplicate aliases (nk12)
|
2020-02-24 13:19:40 +00:00
|
|
|
except ValidationError as e:
|
|
|
|
if e.code == 'same_alias':
|
2020-04-10 16:13:26 +00:00
|
|
|
user.username = row["pseudo"]+str(row["idbde"])
|
|
|
|
user.save()
|
2020-02-24 13:19:40 +00:00
|
|
|
else:
|
|
|
|
raise(e)
|
2020-03-09 18:00:19 +00:00
|
|
|
# profile and note created via signal.
|
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
note = user.note
|
2020-02-25 13:18:39 +00:00
|
|
|
date = row.get("last_negatif",None)
|
|
|
|
if date != None:
|
|
|
|
note.last_negative = make_aware(date)
|
2020-02-24 13:19:40 +00:00
|
|
|
note.balance = row["solde"]
|
|
|
|
obj_list =[user, profile, note]
|
2020-04-10 16:13:26 +00:00
|
|
|
note.save()
|
2020-02-24 13:19:40 +00:00
|
|
|
else: # club
|
|
|
|
obj_dict = {
|
|
|
|
"pk":pkclub,
|
|
|
|
"name": row["pseudo"],
|
|
|
|
"email": row["mail"],
|
2020-03-09 18:00:19 +00:00
|
|
|
"membership_duration": M_DURATION,
|
|
|
|
"membership_start": M_START,
|
|
|
|
"membership_end": M_END,
|
2020-04-10 16:13:26 +00:00
|
|
|
"membership_fee_paid": 0,
|
|
|
|
"membership_fee_unpaid":0,
|
2020-02-24 13:19:40 +00:00
|
|
|
}
|
|
|
|
club,c = Club.objects.get_or_create(**obj_dict)
|
|
|
|
pkclub +=1
|
|
|
|
note = club.note
|
|
|
|
note.balance = row["solde"]
|
2020-04-10 16:13:26 +00:00
|
|
|
club.save()
|
|
|
|
note.save()
|
|
|
|
|
|
|
|
MAP_IDBDE[row["idbde"]] = note.pk
|
2020-02-24 13:19:40 +00:00
|
|
|
|
|
|
|
@transaction.atomic
|
2020-04-10 16:13:26 +00:00
|
|
|
def import_boutons(cur):
|
2020-02-24 13:19:40 +00:00
|
|
|
cur.execute("SELECT * FROM boutons;")
|
2020-04-10 16:13:26 +00:00
|
|
|
N = cur.rowcount
|
|
|
|
for idx, row in enumerate(cur):
|
|
|
|
update_line(idx,N,row["label"])
|
2020-02-24 13:19:40 +00:00
|
|
|
cat, created = TemplateCategory.objects.get_or_create(name=row["categorie"])
|
2020-03-14 10:41:08 +00:00
|
|
|
if created:
|
|
|
|
cat.save()
|
2020-02-24 13:19:40 +00:00
|
|
|
obj_dict = {
|
|
|
|
"pk": row["id"],
|
|
|
|
"name": row["label"],
|
|
|
|
"amount": row["montant"],
|
2020-04-10 16:13:26 +00:00
|
|
|
"destination_id": MAP_IDBDE[row["destinataire"]],
|
2020-02-24 13:19:40 +00:00
|
|
|
"category": cat,
|
|
|
|
"display" : row["affiche"],
|
|
|
|
"description": row["description"],
|
|
|
|
}
|
|
|
|
try:
|
|
|
|
with transaction.atomic(): # required for error management
|
|
|
|
button = TransactionTemplate.objects.create(**obj_dict)
|
|
|
|
except IntegrityError as e:
|
2020-03-14 10:41:08 +00:00
|
|
|
# button with the same name is not possible in NK20.
|
2020-02-24 13:19:40 +00:00
|
|
|
if "unique" in e.args[0]:
|
2020-04-10 16:13:26 +00:00
|
|
|
qs = Club.objects.filter(note__id=MAP_IDBDE[row["destinataire"]]).values('name')
|
2020-02-24 13:19:40 +00:00
|
|
|
note_name = qs[0]["name"]
|
2020-03-14 10:41:08 +00:00
|
|
|
#rename button name
|
|
|
|
obj_dict["name"] ="{} {}".format(obj_dict["name"],note_name)
|
2020-02-24 13:19:40 +00:00
|
|
|
button = TransactionTemplate.objects.create(**obj_dict)
|
|
|
|
else:
|
|
|
|
raise(e)
|
|
|
|
button.save()
|
|
|
|
|
|
|
|
@transaction.atomic
|
2020-04-10 16:13:26 +00:00
|
|
|
def import_transaction(cur):
|
2020-02-25 13:19:34 +00:00
|
|
|
cur.execute("SELECT * FROM transactions LEFT JOIN adhesions ON transactions.id = adhesions.idtransaction ORDER BY -id;")
|
2020-04-10 16:13:26 +00:00
|
|
|
N = cur.rowcount
|
|
|
|
for idx, row in enumerate(cur):
|
|
|
|
update_line(idx,N,row["label"])
|
2020-02-24 13:19:40 +00:00
|
|
|
obj_dict = {
|
2020-02-25 13:19:34 +00:00
|
|
|
# "pk": row["id"],
|
2020-04-10 16:13:26 +00:00
|
|
|
"destination_id" : MAP_IDBDE[row["destinataire"]],
|
|
|
|
"source_id": MAP_IDBDE[row["emetteur"]],
|
2020-02-25 13:19:34 +00:00
|
|
|
"created_at":make_aware(row["date"]),
|
|
|
|
"amount":row["montant"],
|
|
|
|
"quantity":row["quantite"],
|
|
|
|
"reason":row["description"],
|
|
|
|
"valid":row["valide"],
|
2020-02-24 13:19:40 +00:00
|
|
|
}
|
2020-02-25 13:19:34 +00:00
|
|
|
if row["type"] == "bouton":
|
|
|
|
cat_name = row["categorie"]
|
|
|
|
if cat_name == None:
|
|
|
|
cat_name = 'None'
|
|
|
|
cat, created = TemplateCategory.objects.get_or_create(name=cat_name)
|
|
|
|
if created:
|
|
|
|
cat.save()
|
|
|
|
obj_dict["category"] = cat
|
2020-03-22 17:24:54 +00:00
|
|
|
transac = RecurrentTransaction.objects.create(**obj_dict)
|
2020-02-25 13:19:34 +00:00
|
|
|
transac.save()
|
|
|
|
elif row["type"] == "adhésion":
|
2020-03-09 18:00:19 +00:00
|
|
|
print("adhesion not supported yet")
|
2020-02-25 13:19:34 +00:00
|
|
|
else:
|
2020-03-09 18:00:19 +00:00
|
|
|
print("other type not supported yet")
|
2020-04-10 16:13:26 +00:00
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
@transaction.atomic
|
2020-04-10 16:13:26 +00:00
|
|
|
def import_aliases(cur):
|
2020-02-24 13:19:40 +00:00
|
|
|
cur.execute("SELECT * FROM aliases ORDER by id")
|
2020-04-10 16:13:26 +00:00
|
|
|
N = cur.rowcount
|
|
|
|
for idx, row in enumerate(cur):
|
|
|
|
update_line(idx,N,row["alias"])
|
2020-02-24 13:19:40 +00:00
|
|
|
alias_name = row["alias"]
|
|
|
|
alias_name_good = (alias_name[:252]+'...') if len(alias_name) > 255 else alias_name
|
|
|
|
obj_dict = {
|
2020-04-10 16:13:26 +00:00
|
|
|
"note_id":MAP_IDBDE[row["idbde"]],
|
2020-02-24 13:19:40 +00:00
|
|
|
"name":alias_name_good,
|
2020-03-14 10:41:08 +00:00
|
|
|
"normalized_name":Alias.normalize(alias_name_good)
|
2020-02-24 13:19:40 +00:00
|
|
|
}
|
|
|
|
try:
|
|
|
|
with transaction.atomic():
|
2020-03-14 10:41:08 +00:00
|
|
|
alias, created = Alias.objects.get_or_create(**obj_dict)
|
2020-04-10 16:13:26 +00:00
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
except IntegrityError as e:
|
|
|
|
if "unique" in e.args[0]:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
raise(e)
|
|
|
|
alias.save()
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
"""
|
|
|
|
Command for importing the database of NK15.
|
|
|
|
Need to be run by a user with a registered role in postgres for the database nk15.
|
|
|
|
"""
|
2020-02-25 13:17:59 +00:00
|
|
|
def print_success(self,to_print):
|
|
|
|
return self.stdout.write(self.style.SUCCESS(to_print))
|
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
def add_arguments(self,parser):
|
2020-02-25 13:17:59 +00:00
|
|
|
parser.add_argument('-c', '--comptes', action = 'store_true', help="import accounts")
|
|
|
|
parser.add_argument('-b', '--boutons', action = 'store_true', help="import boutons")
|
|
|
|
parser.add_argument('-t', '--transactions', action = 'store_true',help="import transaction")
|
|
|
|
parser.add_argument('-a', '--aliases', action = 'store_true',help="import aliases")
|
2020-04-10 16:13:26 +00:00
|
|
|
parser.add_argument('-s', '--save', action='store', help="save mapping of idbde")
|
|
|
|
parser.add_argument('-m', '--map', action='store', help="import mapping of idbde")
|
2020-03-22 17:25:01 +00:00
|
|
|
parser.add_argument('-d', '--nk15db', action='store', default='nk15', help='NK15 database name')
|
|
|
|
parser.add_argument('-u', '--nk15user', action='store', default='nk15_user', help='NK15 database owner')
|
2020-04-10 16:13:26 +00:00
|
|
|
|
2020-02-24 13:19:40 +00:00
|
|
|
def handle(self, *args, **kwargs):
|
2020-04-10 16:13:26 +00:00
|
|
|
global MAP_IDBDE
|
2020-03-22 17:25:01 +00:00
|
|
|
nk15db, nk15user = kwargs['nk15db'], kwargs['nk15user']
|
2020-02-25 13:17:59 +00:00
|
|
|
#reset database.
|
2020-04-10 16:13:26 +00:00
|
|
|
call_command("migrate")
|
|
|
|
call_command("loaddata","initial")
|
|
|
|
self.print_success("reset nk20 database")
|
2020-02-25 13:17:59 +00:00
|
|
|
# connecting to nk15 database
|
2020-03-22 17:25:01 +00:00
|
|
|
conn = pg.connect(database=nk15db,user=nk15user)
|
2020-02-24 13:19:40 +00:00
|
|
|
cur = conn.cursor(cursor_factory = pge.DictCursor)
|
|
|
|
|
|
|
|
if kwargs["comptes"]:
|
2020-04-10 16:13:26 +00:00
|
|
|
import_comptes(cur)
|
2020-02-25 13:17:59 +00:00
|
|
|
self.print_success("comptes table imported")
|
2020-04-10 16:13:26 +00:00
|
|
|
elif kwargs["map"]:
|
|
|
|
filename = kwargs["map"]
|
|
|
|
with open(filename,'w') as fp:
|
|
|
|
MAP_IDBDE = json.load(fp)
|
|
|
|
if kwargs["save"]:
|
|
|
|
filename = kwargs["save"]
|
|
|
|
with open(filename,'w') as fp:
|
|
|
|
json.dump(MAP_IDBDE,fp,sort_keys=True, indent=2)
|
|
|
|
|
|
|
|
# /!\ need a prober MAP_IDBDE
|
2020-02-24 13:19:40 +00:00
|
|
|
if kwargs["boutons"]:
|
2020-04-10 16:13:26 +00:00
|
|
|
import_boutons(cur)
|
2020-02-25 13:17:59 +00:00
|
|
|
self.print_success("boutons table imported")
|
2020-02-24 13:19:40 +00:00
|
|
|
if kwargs["transactions"]:
|
2020-04-10 16:13:26 +00:00
|
|
|
import_transaction(cur)
|
2020-02-25 13:17:59 +00:00
|
|
|
self.print_success("transaction imported")
|
2020-02-24 13:19:40 +00:00
|
|
|
if kwargs["aliases"]:
|
2020-04-10 16:13:26 +00:00
|
|
|
import_aliases(cur)
|
2020-02-25 13:17:59 +00:00
|
|
|
self.print_success("aliases imported")
|