You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

45 lines
1.8 KiB

import json
from django.core.management.base import BaseCommand
from eventos.models import Evento
class Command(BaseCommand):
help = "Importa eventos desde un archivo JSON"
def add_arguments(self, parser):
parser.add_argument('archivo_json', type=str, help="Ruta del archivo JSON")
def handle(self, *args, **kwargs):
archivo_json = kwargs['archivo_json']
try:
with open(archivo_json, 'r', encoding='utf-8') as file:
datos = json.load(file)
self.stdout.write(self.style.WARNING(f"\nSe encontraron {len(datos)} eventos en el archivo '{archivo_json}'."))
confirmar = input("¿Deseas continuar con la importación? (s/n): ").strip().lower()
if confirmar != 's':
self.stdout.write(self.style.ERROR("Importación cancelada."))
return
eventos_creados = 0
for evento_data in datos:
creado = Evento.objects.create(
id=evento_data['id'],
nombre=evento_data['nombre'],
descripcion=evento_data['descripcion'],
fecha=evento_data['fecha'],
plazas_disponibles=evento_data['plazas_disponibles'],
pubicado=evento_data['pubicado'],
url_imagen=evento_data['url_imagen']
)
if creado:
eventos_creados += 1
self.stdout.write(self.style.SUCCESS(f'Se importaron {eventos_creados} eventos correctamente.'))
except FileNotFoundError:
self.stderr.write(self.style.ERROR(f"El archivo {archivo_json} no se encontró."))
except json.JSONDecodeError:
self.stderr.write(self.style.ERROR("Error al leer el archivo JSON. Asegúrate de que el formato sea correcto."))