mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
pedagogy: importation from old uv guide
This commit is contained in:
parent
358a625cc4
commit
e7b8ddb631
79
migrate.py
79
migrate.py
@ -77,6 +77,7 @@ from forum.models import (
|
|||||||
ForumMessageMeta,
|
ForumMessageMeta,
|
||||||
ForumUserInfo,
|
ForumUserInfo,
|
||||||
)
|
)
|
||||||
|
from pedagogy.models import UV, UVComment
|
||||||
|
|
||||||
db = MySQLdb.connect(**settings.OLD_MYSQL_INFOS)
|
db = MySQLdb.connect(**settings.OLD_MYSQL_INFOS)
|
||||||
start = datetime.datetime.now()
|
start = datetime.datetime.now()
|
||||||
@ -1568,6 +1569,81 @@ def migrate_club_again():
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def migrate_pedagogy():
|
||||||
|
cur = db.cursor(MySQLdb.cursors.SSDictCursor)
|
||||||
|
|
||||||
|
print("Migrating UVs")
|
||||||
|
root = User.objects.get(id=0)
|
||||||
|
semester_conversion = {
|
||||||
|
"closed": "CLOSED",
|
||||||
|
"A": "AUTUMN",
|
||||||
|
"P": "SPRING",
|
||||||
|
"AP": "AUTOMN_AND_SPRING",
|
||||||
|
}
|
||||||
|
|
||||||
|
def convert_number(num, default=0):
|
||||||
|
if not num:
|
||||||
|
return default
|
||||||
|
return num
|
||||||
|
|
||||||
|
def convert_text(text):
|
||||||
|
if not text:
|
||||||
|
return ""
|
||||||
|
return doku_to_markdown(to_unicode(text))
|
||||||
|
|
||||||
|
cur.execute(
|
||||||
|
"""
|
||||||
|
SELECT * FROM pedag_uv
|
||||||
|
LEFT JOIN pedag_uv_dept dept
|
||||||
|
ON dept.id_uv = pedag_uv.id_uv
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
for uv in cur:
|
||||||
|
UV(
|
||||||
|
id=uv["id_uv"],
|
||||||
|
code=uv["code"],
|
||||||
|
author=root,
|
||||||
|
credit_type=uv["type"],
|
||||||
|
semester=semester_conversion[uv["semestre"]],
|
||||||
|
language="FR", # No infos in previous guide about that
|
||||||
|
credits=convert_number(uv["guide_credits"]),
|
||||||
|
department=convert_text(uv["departement"]),
|
||||||
|
title=convert_text(uv["intitule"]),
|
||||||
|
manager=convert_text(uv["responsable"]),
|
||||||
|
objectives=convert_text(uv["guide_objectifs"]),
|
||||||
|
program=convert_text(uv["guide_programme"]),
|
||||||
|
skills="", # No info in previous guide about that
|
||||||
|
key_concepts="", # No info either
|
||||||
|
hours_CM=convert_number(uv["guide_c"]),
|
||||||
|
hours_TD=convert_number(uv["guide_td"]),
|
||||||
|
hours_TP=convert_number(uv["guide_tp"]),
|
||||||
|
hours_THE=convert_number(uv["guide_the"]),
|
||||||
|
hours_TE=0, # No info either
|
||||||
|
).save()
|
||||||
|
|
||||||
|
print("Migrating UV Comments")
|
||||||
|
|
||||||
|
cur.execute("SELECT * FROM pedag_uv_commentaire")
|
||||||
|
|
||||||
|
for comment in cur:
|
||||||
|
author = User.objects.filter(id=comment["id_utilisateur"]).first()
|
||||||
|
uv = UV.objects.filter(id=comment["id_uv"]).first()
|
||||||
|
if not author or not uv:
|
||||||
|
continue
|
||||||
|
UVComment(
|
||||||
|
id=comment["id_commentaire"],
|
||||||
|
author=author,
|
||||||
|
uv=uv,
|
||||||
|
comment=convert_text(comment["content"]),
|
||||||
|
grade_global=convert_number(comment["note_generale"], -1),
|
||||||
|
grade_utility=convert_number(comment["note_utilite"], -1),
|
||||||
|
grade_interest=convert_number(comment["note_interet"], -1),
|
||||||
|
grade_teaching=convert_number(comment["note_enseignement"], -1),
|
||||||
|
grade_work_load=convert_number(comment["note_travail"], -1),
|
||||||
|
publish_date=comment["date"],
|
||||||
|
).save()
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
print("Start at %s" % start)
|
print("Start at %s" % start)
|
||||||
# Core
|
# Core
|
||||||
@ -1590,7 +1666,8 @@ def main():
|
|||||||
# migrate_forum()
|
# migrate_forum()
|
||||||
# reset_index('forum')
|
# reset_index('forum')
|
||||||
# migrate_mailings()
|
# migrate_mailings()
|
||||||
migrate_club_again()
|
# migrate_club_again()
|
||||||
|
migrate_pedagogy()
|
||||||
end = datetime.datetime.now()
|
end = datetime.datetime.now()
|
||||||
print("End at %s" % end)
|
print("End at %s" % end)
|
||||||
print("Running time: %s" % (end - start))
|
print("Running time: %s" % (end - start))
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Generated by Django 1.11.20 on 2019-06-18 08:52
|
# Generated by Django 1.11.20 on 2019-06-18 15:02
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
@ -248,7 +248,7 @@ class Migration(migrations.Migration):
|
|||||||
),
|
),
|
||||||
(
|
(
|
||||||
"publish_date",
|
"publish_date",
|
||||||
models.DateField(auto_now=True, verbose_name="publish date"),
|
models.DateTimeField(auto_now=True, verbose_name="publish date"),
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"author",
|
"author",
|
||||||
|
@ -211,7 +211,7 @@ class UVComment(models.Model):
|
|||||||
null=False,
|
null=False,
|
||||||
default=-1,
|
default=-1,
|
||||||
)
|
)
|
||||||
publish_date = models.DateField(_("publish date"), auto_now=True)
|
publish_date = models.DateTimeField(_("publish date"), auto_now=True)
|
||||||
|
|
||||||
|
|
||||||
class UVResult(models.Model):
|
class UVResult(models.Model):
|
||||||
|
Loading…
Reference in New Issue
Block a user