cli import files with replace option
This commit is contained in:
parent
bb79d454af
commit
8103ea541f
|
@ -567,7 +567,7 @@ class ImportBatch(models.Model):
|
||||||
|
|
||||||
class ImportJob(models.Model):
|
class ImportJob(models.Model):
|
||||||
uuid = models.UUIDField(unique=True, db_index=True, default=uuid.uuid4)
|
uuid = models.UUIDField(unique=True, db_index=True, default=uuid.uuid4)
|
||||||
update_if_duplicate = models.BooleanField(default=False)
|
replace_if_duplicate = models.BooleanField(default=False)
|
||||||
batch = models.ForeignKey(
|
batch = models.ForeignKey(
|
||||||
ImportBatch, related_name="jobs", on_delete=models.CASCADE
|
ImportBatch, related_name="jobs", on_delete=models.CASCADE
|
||||||
)
|
)
|
||||||
|
|
|
@ -80,10 +80,11 @@ def import_track_from_remote(library_track):
|
||||||
)[0]
|
)[0]
|
||||||
|
|
||||||
|
|
||||||
def _do_import(import_job, replace=False, use_acoustid=False):
|
def _do_import(import_job, use_acoustid=False):
|
||||||
logger.info("[Import Job %s] starting job", import_job.pk)
|
logger.info("[Import Job %s] starting job", import_job.pk)
|
||||||
from_file = bool(import_job.audio_file)
|
from_file = bool(import_job.audio_file)
|
||||||
mbid = import_job.mbid
|
mbid = import_job.mbid
|
||||||
|
replace = import_job.replace_if_duplicate
|
||||||
acoustid_track_id = None
|
acoustid_track_id = None
|
||||||
duration = None
|
duration = None
|
||||||
track = None
|
track = None
|
||||||
|
@ -163,7 +164,7 @@ def _do_import(import_job, replace=False, use_acoustid=False):
|
||||||
# no downloading, we hotlink
|
# no downloading, we hotlink
|
||||||
pass
|
pass
|
||||||
elif not import_job.audio_file and not import_job.source.startswith("file://"):
|
elif not import_job.audio_file and not import_job.source.startswith("file://"):
|
||||||
# not an implace import, and we have a source, so let's download it
|
# not an inplace import, and we have a source, so let's download it
|
||||||
logger.info("[Import Job %s] downloading audio file from remote", import_job.pk)
|
logger.info("[Import Job %s] downloading audio file from remote", import_job.pk)
|
||||||
track_file.download_file()
|
track_file.download_file()
|
||||||
elif not import_job.audio_file and import_job.source.startswith("file://"):
|
elif not import_job.audio_file and import_job.source.startswith("file://"):
|
||||||
|
@ -243,14 +244,14 @@ def get_cover_from_fs(dir_path):
|
||||||
@celery.require_instance(
|
@celery.require_instance(
|
||||||
models.ImportJob.objects.filter(status__in=["pending", "errored"]), "import_job"
|
models.ImportJob.objects.filter(status__in=["pending", "errored"]), "import_job"
|
||||||
)
|
)
|
||||||
def import_job_run(self, import_job, replace=False, use_acoustid=False):
|
def import_job_run(self, import_job, use_acoustid=False):
|
||||||
def mark_errored(exc):
|
def mark_errored(exc):
|
||||||
logger.error("[Import Job %s] Error during import: %s", import_job.pk, str(exc))
|
logger.error("[Import Job %s] Error during import: %s", import_job.pk, str(exc))
|
||||||
import_job.status = "errored"
|
import_job.status = "errored"
|
||||||
import_job.save(update_fields=["status"])
|
import_job.save(update_fields=["status"])
|
||||||
|
|
||||||
try:
|
try:
|
||||||
tf = _do_import(import_job, replace, use_acoustid=use_acoustid)
|
tf = _do_import(import_job, use_acoustid=use_acoustid)
|
||||||
return tf.pk if tf else None
|
return tf.pk if tf else None
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
if not settings.DEBUG:
|
if not settings.DEBUG:
|
||||||
|
|
|
@ -56,13 +56,14 @@ class Command(BaseCommand):
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--update",
|
"--replace",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="update",
|
dest="replace",
|
||||||
default=False,
|
default=False,
|
||||||
help=(
|
help=(
|
||||||
"Use this flag to replace duplicates (tracks with same "
|
"Use this flag to replace duplicates (tracks with same "
|
||||||
"musicbrainz mbid) on import with their newest version."
|
"musicbrainz mbid, or same artist, album and title) on import "
|
||||||
|
"with their newest version."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
@ -122,16 +123,23 @@ class Command(BaseCommand):
|
||||||
"No superuser available, please provide a --username"
|
"No superuser available, please provide a --username"
|
||||||
)
|
)
|
||||||
|
|
||||||
filtered = self.filter_matching(matching)
|
if options["replace"]:
|
||||||
|
filtered = {"initial": matching, "skipped": [], "new": matching}
|
||||||
|
message = "- {} files to be replaced"
|
||||||
|
import_paths = matching
|
||||||
|
else:
|
||||||
|
filtered = self.filter_matching(matching)
|
||||||
|
message = "- {} files already found in database"
|
||||||
|
import_paths = filtered["new"]
|
||||||
|
|
||||||
self.stdout.write("Import summary:")
|
self.stdout.write("Import summary:")
|
||||||
self.stdout.write(
|
self.stdout.write(
|
||||||
"- {} files found matching this pattern: {}".format(
|
"- {} files found matching this pattern: {}".format(
|
||||||
len(matching), options["path"]
|
len(matching), options["path"]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
self.stdout.write(
|
self.stdout.write(message.format(len(filtered["skipped"])))
|
||||||
"- {} files already found in database".format(len(filtered["skipped"]))
|
|
||||||
)
|
|
||||||
self.stdout.write("- {} new files".format(len(filtered["new"])))
|
self.stdout.write("- {} new files".format(len(filtered["new"])))
|
||||||
|
|
||||||
self.stdout.write(
|
self.stdout.write(
|
||||||
|
@ -151,12 +159,12 @@ class Command(BaseCommand):
|
||||||
if input("".join(message)) != "yes":
|
if input("".join(message)) != "yes":
|
||||||
raise CommandError("Import cancelled.")
|
raise CommandError("Import cancelled.")
|
||||||
|
|
||||||
batch, errors = self.do_import(filtered["new"], user=user, options=options)
|
batch, errors = self.do_import(import_paths, user=user, options=options)
|
||||||
message = "Successfully imported {} tracks"
|
message = "Successfully imported {} tracks"
|
||||||
if options["async"]:
|
if options["async"]:
|
||||||
message = "Successfully launched import for {} tracks"
|
message = "Successfully launched import for {} tracks"
|
||||||
|
|
||||||
self.stdout.write(message.format(len(filtered["new"])))
|
self.stdout.write(message.format(len(import_paths)))
|
||||||
if len(errors) > 0:
|
if len(errors) > 0:
|
||||||
self.stderr.write("{} tracks could not be imported:".format(len(errors)))
|
self.stderr.write("{} tracks could not be imported:".format(len(errors)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue