nk20/apps/member/management/commands/import_nk15.py

192 lines
6.9 KiB
Python
Raw Normal View History

2020-02-07 21:23:37 +00:00
#!/usr/env/bin python3
from django.core.management.base import BaseCommand
from django.utils import timezone
import psycopg2 as pg
import psycopg2.extras as pge
2020-02-23 12:47:12 +00:00
from django.db import transaction
2020-02-23 17:45:21 +00:00
2020-02-23 12:47:12 +00:00
import collections
2020-02-07 21:23:37 +00:00
2020-02-23 17:45:21 +00:00
from django.core.exceptions import ValidationError
from django.db import IntegrityError
2020-02-23 12:47:12 +00:00
from django.contrib.auth.models import User
from note.models import Note, NoteSpecial, NoteUser, NoteClub
2020-02-23 20:10:03 +00:00
from note.models import Alias
from note.models import Transaction, TransactionTemplate, TemplateCategory, TransactionType
2020-02-23 12:47:12 +00:00
from member.models import Profile, Club
2020-02-07 21:23:37 +00:00
2020-02-23 20:10:03 +00:00
"""
Script d'import de la nk15:
TODO: import aliases
TODO: import transactions
TODO: import adhesion
TODO: import activite
TODO: import
2020-02-23 15:43:13 +00:00
2020-02-23 20:10:03 +00:00
"""
2020-02-23 15:43:13 +00:00
@transaction.atomic
def import_special(cur):
cur.execute("SELECT * FROM comptes WHERE idbde <0 ORDER BY idbde;")
map_idbde = dict()
for row in cur:
obj,created = NoteSpecial.objects.get_or_create(special_type = row["pseudo"],
balance = row["solde"],
is_active =True)
if created:
obj.save()
map_idbde[row["idbde"]] = obj.pk
cur.execute("SELECT * FROM comptes WHERE idbde=0;")
res = cur.fetchone()
clubBde, c = Club.objects.get_or_create(pk = 1,
name = "Bde",
email = "bureau.bde@lists.crans.org",
membership_duration = "396 00:00:00",
membership_start = "213 00:00:00",
membership_end = "273 00:00:00",
membership_fee = 5,
)
clubKfet, c = Club.objects.get_or_create(pk = 2,
name = "Kfet",
email = "tresorerie.bde@lists.crans.org",
membership_duration = "396 00:00:00",
membership_start = "213 00:00:00",
membership_end = "273 00:00:00",
membership_fee = 35,
)
clubBde.save()
clubKfet.save()
clubBde.note.solde=res["solde"]
map_idbde[0] = clubKfet.note.pk
return map_idbde
@transaction.atomic
def import_comptes(cur,map_idbde):
cur.execute("SELECT * FROM comptes WHERE idbde > 0 ORDER BY idbde;")
pkclub = 3
for row in cur:
if row["type"] == "personne":
#sanitize password
if row["passwd"] != "*|*":
passwd_nk15 = "$".join(["custom_nk15","1",row["passwd"]])
else:
passwd_nk15 = ''
try:
2020-02-23 17:45:21 +00:00
obj_dict = {
"username": row["pseudo"],
"password": passwd_nk15,
"first_name": row["nom"],
"last_name": row["prenom"],
"email": row["mail"],
2020-02-23 20:10:03 +00:00
"is_active" : False, # temporary
2020-02-23 17:45:21 +00:00
}
user = User.objects.create(**obj_dict)
#sanitize duplicate aliases (nk12)
2020-02-23 15:43:13 +00:00
except ValidationError as e:
if e.code == 'same_alias':
2020-02-23 17:45:21 +00:00
obj_dict["username"] = row["pseudo"]+str(row["idbde"])
user = User.objects.create(**obj_dict)
2020-02-23 15:43:13 +00:00
else:
raise(e)
else:
pass
2020-02-23 17:45:21 +00:00
obj_dict ={
"phone_number": row["tel"],
"address": row["adresse"],
"paid": row["normalien"],
"user": user,
}
profile = Profile.objects.create(**obj_dict)
2020-02-23 15:43:13 +00:00
note = user.note
note.balance = row["solde"]
obj_list =[user, profile, note]
2020-02-23 17:45:21 +00:00
else: # club
obj_dict = {
"pk":pkclub,
"name": row["pseudo"],
"email": row["mail"],
"membership_duration": "396 00:00:00",
"membership_start": "213 00:00:00",
"membership_end": "273 00:00:00",
"membership_fee": 0,
}
club,c = Club.objects.get_or_create(**obj_dict)
2020-02-23 15:43:13 +00:00
pkclub +=1
note = club.note
note.balance = row["solde"]
obj_list = [club,note]
for obj in obj_list:
obj.save()
map_idbde[row["idbde"]] = note.pk
return map_idbde
2020-02-23 17:45:21 +00:00
2020-02-23 15:43:13 +00:00
@transaction.atomic
def import_boutons(cur,map_idbde):
cur.execute("SELECT * FROM boutons;")
for row in cur:
2020-02-23 20:10:03 +00:00
cat, created = TemplateCategory.objects.get_or_create(name=row["categorie"])
obj_dict = {
"pk": row["id"],
"name": row["label"],
"amount": row["montant"],
"destination_id": map_idbde[row["destinataire"]],
"category": cat,
"display" : row["affiche"],
"description": row["description"],
}
2020-02-23 17:45:21 +00:00
try:
with transaction.atomic(): # required for error management
button = TransactionTemplate.objects.create(**obj_dict)
except IntegrityError as e:
if "unique" in e.args[0]:
qs = Club.objects.filter(note__id=map_idbde[row["destinataire"]]).values('name')
note_name = qs[0]["name"]
obj_dict["name"] = ' '.join([obj_dict["name"],note_name])
button = TransactionTemplate.objects.create(**obj_dict)
else:
raise(e)
2020-02-23 15:43:13 +00:00
if created:
cat.save()
button.save()
2020-02-23 17:45:21 +00:00
@transaction.atomic
def import_transaction(cur, map_idbde):
cur.execute("SELECT * FROM transactions;")
for row in cur:
obj_dict = {
"pk":row["id"],
}
2020-02-23 15:43:13 +00:00
2020-02-07 21:23:37 +00:00
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-23 15:43:13 +00:00
def add_arguments(self,parser):
parser.add_argument('-s', '--special', action = 'store_true')
parser.add_argument('-c', '--comptes', action = 'store_true')
parser.add_argument('-b', '--boutons', action = 'store_true')
2020-02-23 17:45:21 +00:00
parser.add_argument('-t', '--transactions', action = 'store_true')
2020-02-07 21:23:37 +00:00
2020-02-23 15:43:13 +00:00
def handle(self, *args, **kwargs):
conn = pg.connect(database="nk15",user="nk15_user")
cur = conn.cursor(cursor_factory = pge.DictCursor)
2020-02-07 21:23:37 +00:00
2020-02-23 15:43:13 +00:00
if kwargs["special"]:
map_idbde = import_special(cur)
print("Minimal setup created")
if kwargs["comptes"]:
map_idbde = import_comptes(cur,map_idbde)
print("comptes table imported")
if kwargs["boutons"]:
import_boutons(cur,map_idbde)
print("boutons table imported")
2020-02-23 17:45:21 +00:00
if kwargs["transactions"]:
2020-02-23 15:43:13 +00:00
import_transaction(cur)