2020-05-22 20:17:17 +00:00
|
|
|
from argparse import FileType
|
|
|
|
from sys import stdin
|
|
|
|
|
|
|
|
from django.core.management import BaseCommand
|
2020-05-23 14:42:59 +00:00
|
|
|
from media.models import Auteur, CD
|
2020-05-22 20:17:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
parser.add_argument('input', nargs='?',
|
|
|
|
type=FileType('r'),
|
|
|
|
default=stdin,
|
|
|
|
help="CD to be imported.")
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
file = options["input"]
|
|
|
|
cds = []
|
|
|
|
for line in file:
|
|
|
|
cds.append(line[:-1].split('|', 2))
|
|
|
|
|
|
|
|
print("Registering", len(cds), "CDs")
|
|
|
|
|
|
|
|
imported = 0
|
|
|
|
|
|
|
|
for cd in cds:
|
|
|
|
if len(cd) != 3:
|
|
|
|
continue
|
|
|
|
|
2020-05-23 14:42:59 +00:00
|
|
|
title = cd[0]
|
|
|
|
side = cd[1]
|
2020-05-22 20:17:17 +00:00
|
|
|
authors_str = cd[2].split('|')
|
|
|
|
authors = [Auteur.objects.get_or_create(name=author)[0]
|
|
|
|
for author in authors_str]
|
2020-05-23 14:42:59 +00:00
|
|
|
cd, created = CD.objects.get_or_create(
|
2020-05-22 20:17:17 +00:00
|
|
|
title=title,
|
|
|
|
side_identifier=side,
|
|
|
|
)
|
|
|
|
cd.authors.set(authors)
|
|
|
|
cd.save()
|
|
|
|
|
|
|
|
if not created:
|
|
|
|
self.stderr.write(self.style.WARNING(
|
|
|
|
"One CD was already imported. Skipping..."))
|
|
|
|
else:
|
|
|
|
self.stdout.write(self.style.SUCCESS(
|
|
|
|
"CD imported"))
|
|
|
|
imported += 1
|
|
|
|
|
|
|
|
self.stdout.write(self.style.SUCCESS(
|
|
|
|
"{count} CDs imported".format(count=imported)))
|