kopia lustrzana https://github.com/OpenDroneMap/WebODM
Successful migration from IDs to UUIDs
rodzic
131e3a6f9b
commit
79fd4cb14b
|
@ -3,7 +3,7 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import uuid, os
|
||||
import uuid, os, pickle, tempfile
|
||||
|
||||
from webodm import settings
|
||||
|
||||
|
@ -11,65 +11,8 @@ tasks = []
|
|||
imageuploads = []
|
||||
task_ids = {} # map old task IDs --> new task IDs
|
||||
|
||||
|
||||
def task_path(project_id, task_id):
|
||||
return os.path.join(settings.MEDIA_ROOT,
|
||||
"project",
|
||||
str(project_id),
|
||||
"task",
|
||||
str(task_id))
|
||||
|
||||
def rename_task_folders(apps, schema_editor):
|
||||
global tasks, task_ids
|
||||
|
||||
for t in tasks:
|
||||
print("Checking task {}".format(t['id']))
|
||||
current_path = task_path(t['project'], t['id'])
|
||||
if os.path.exists(current_path):
|
||||
new_path = task_path(t['project'], task_ids[t['id']])
|
||||
print("Migrating {} --> {}".format(current_path, new_path))
|
||||
os.rename(current_path, new_path)
|
||||
|
||||
|
||||
def create_uuids(apps, schema_editor):
|
||||
global tasks, task_ids
|
||||
|
||||
Task = apps.get_model('app', 'Task')
|
||||
|
||||
for task in tasks:
|
||||
# Generate UUID
|
||||
new_id = uuid.uuid4()
|
||||
|
||||
# Save reference to it
|
||||
task_ids[task['id']] = new_id
|
||||
|
||||
# Get real object from DB
|
||||
print(new_id)
|
||||
print(task)
|
||||
|
||||
t = Task.objects.get(id=task['id'])
|
||||
t.new_id = new_id
|
||||
t.save()
|
||||
|
||||
print("Created UUIDs")
|
||||
print(task_ids)
|
||||
|
||||
def restoreImageUploadFks(apps, schema_editor):
|
||||
global imageuploads, task_ids
|
||||
|
||||
ImageUpload = apps.get_model('app', 'ImageUpload')
|
||||
Task = apps.get_model('app', 'Task')
|
||||
|
||||
for img in imageuploads:
|
||||
i = ImageUpload.objects.get(pk=img['id'])
|
||||
print(task_ids)
|
||||
print(img)
|
||||
i.task = Task.objects.get(id=task_ids[img['task']])
|
||||
i.save()
|
||||
|
||||
|
||||
def dump(apps, schema_editor):
|
||||
global tasks, imageuploads
|
||||
global tasks, imageuploads, task_ids
|
||||
|
||||
Task = apps.get_model('app', 'Task')
|
||||
ImageUpload = apps.get_model('app', 'ImageUpload')
|
||||
|
@ -77,7 +20,20 @@ def dump(apps, schema_editor):
|
|||
tasks = list(Task.objects.all().values('id', 'project'))
|
||||
imageuploads = list(ImageUpload.objects.all().values('id', 'task'))
|
||||
|
||||
print("Dumped tasks and imageuploads in memory")
|
||||
# Generate UUIDs
|
||||
for task in tasks:
|
||||
new_id = uuid.uuid4()
|
||||
|
||||
# Save reference to it
|
||||
task['new_id'] = new_id
|
||||
|
||||
# Populate map
|
||||
task_ids[task['id']] = new_id
|
||||
|
||||
tmp_path = os.path.join(tempfile.gettempdir(), "public_task_uuids_migration.pickle")
|
||||
pickle.dump((tasks, imageuploads, task_ids), open(tmp_path, 'wb'))
|
||||
|
||||
print("Dumped tasks and imageuploads")
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
@ -104,6 +60,4 @@ class Migration(migrations.Migration):
|
|||
name='new_id',
|
||||
field=models.UUIDField(null=True)
|
||||
),
|
||||
|
||||
|
||||
]
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import uuid, os
|
||||
import uuid, os, pickle, tempfile
|
||||
|
||||
from webodm import settings
|
||||
|
||||
|
@ -29,89 +29,35 @@ def rename_task_folders(apps, schema_editor):
|
|||
print("Migrating {} --> {}".format(current_path, new_path))
|
||||
os.rename(current_path, new_path)
|
||||
|
||||
|
||||
def create_uuids(apps, schema_editor):
|
||||
global tasks, task_ids
|
||||
|
||||
Task = apps.get_model('app', 'Task')
|
||||
|
||||
for task in tasks:
|
||||
# Generate UUID
|
||||
new_id = uuid.uuid4()
|
||||
|
||||
# Save reference to it
|
||||
task_ids[task['id']] = new_id
|
||||
|
||||
# Get real object from DB
|
||||
print(new_id)
|
||||
print(task)
|
||||
|
||||
t = Task.objects.get(id=task['id'])
|
||||
t.new_id = new_id
|
||||
t.new_id = task['new_id']
|
||||
t.save()
|
||||
|
||||
print("Created UUIDs")
|
||||
print(task_ids)
|
||||
|
||||
def restoreImageUploadFks(apps, schema_editor):
|
||||
global imageuploads, task_ids
|
||||
|
||||
ImageUpload = apps.get_model('app', 'ImageUpload')
|
||||
Task = apps.get_model('app', 'Task')
|
||||
|
||||
for img in imageuploads:
|
||||
i = ImageUpload.objects.get(pk=img['id'])
|
||||
print(task_ids)
|
||||
print(img)
|
||||
i.task = Task.objects.get(id=task_ids[img['task']])
|
||||
i.save()
|
||||
|
||||
|
||||
def dump(apps, schema_editor):
|
||||
global tasks, imageuploads
|
||||
|
||||
Task = apps.get_model('app', 'Task')
|
||||
ImageUpload = apps.get_model('app', 'ImageUpload')
|
||||
|
||||
tasks = list(Task.objects.all().values('id', 'project'))
|
||||
imageuploads = list(ImageUpload.objects.all().values('id', 'task'))
|
||||
|
||||
print("Dumped tasks and imageuploads in memory")
|
||||
def restore(apps, schema_editor):
|
||||
global tasks, imageuploads, task_ids
|
||||
|
||||
tmp_path = os.path.join(tempfile.gettempdir(), "public_task_uuids_migration.pickle")
|
||||
tasks, imageuploads, task_ids = pickle.load(open(tmp_path, 'rb'))
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0011_auto_20171109_1237'),
|
||||
('app', '0012_public_task_uuids'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RunPython(restore),
|
||||
migrations.RunPython(create_uuids),
|
||||
migrations.RunPython(rename_task_folders),
|
||||
|
||||
migrations.AlterField(
|
||||
model_name='task',
|
||||
name='new_id',
|
||||
field=models.UUIDField(default=uuid.uuid4, unique=True, serialize=False, editable=False)
|
||||
),
|
||||
migrations.RemoveField('task', 'id'),
|
||||
migrations.RenameField(
|
||||
model_name='task',
|
||||
old_name='new_id',
|
||||
new_name='id'
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='task',
|
||||
name='id',
|
||||
field=models.UUIDField(primary_key=True, default=uuid.uuid4, unique=True, serialize=False, editable=False)
|
||||
),
|
||||
|
||||
migrations.AddField(
|
||||
model_name='imageupload',
|
||||
name='task',
|
||||
field=models.ForeignKey(null=True, on_delete=models.CASCADE, help_text="Task this image belongs to", to='app.Task')
|
||||
),
|
||||
migrations.RunPython(restoreImageUploadFks),
|
||||
|
||||
|
||||
migrations.RunPython(rename_task_folders),
|
||||
]
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.1 on 2017-11-30 15:41
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import uuid
|
||||
|
||||
from webodm import settings
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0013_public_task_uuids'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='task',
|
||||
name='new_id',
|
||||
field=models.UUIDField(default=uuid.uuid4, unique=True, serialize=False, editable=False)
|
||||
),
|
||||
migrations.RemoveField('task', 'id'),
|
||||
migrations.RenameField(
|
||||
model_name='task',
|
||||
old_name='new_id',
|
||||
new_name='id'
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='task',
|
||||
name='id',
|
||||
field=models.UUIDField(primary_key=True, default=uuid.uuid4, unique=True, serialize=False, editable=False)
|
||||
),
|
||||
|
||||
migrations.AddField(
|
||||
model_name='imageupload',
|
||||
name='task',
|
||||
field=models.ForeignKey(null=True, on_delete=models.CASCADE, help_text="Task this image belongs to", to='app.Task')
|
||||
),
|
||||
|
||||
]
|
|
@ -0,0 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.1 on 2017-11-30 15:41
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import os, pickle, tempfile
|
||||
|
||||
from webodm import settings
|
||||
|
||||
tasks = []
|
||||
imageuploads = []
|
||||
task_ids = {} # map old task IDs --> new task IDs
|
||||
|
||||
|
||||
def restoreImageUploadFks(apps, schema_editor):
|
||||
global imageuploads, task_ids
|
||||
|
||||
ImageUpload = apps.get_model('app', 'ImageUpload')
|
||||
Task = apps.get_model('app', 'Task')
|
||||
|
||||
for img in imageuploads:
|
||||
i = ImageUpload.objects.get(pk=img['id'])
|
||||
print(img)
|
||||
i.task = Task.objects.get(id=task_ids[img['task']])
|
||||
i.save()
|
||||
|
||||
|
||||
def restore(apps, schema_editor):
|
||||
global tasks, imageuploads, task_ids
|
||||
|
||||
tmp_path = os.path.join(tempfile.gettempdir(), "public_task_uuids_migration.pickle")
|
||||
tasks, imageuploads, task_ids = pickle.load(open(tmp_path, 'rb'))
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0014_public_task_uuids'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RunPython(restore),
|
||||
migrations.RunPython(restoreImageUploadFks),
|
||||
]
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.1 on 2017-11-30 15:41
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
from webodm import settings
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0015_public_task_uuids'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='imageupload',
|
||||
name='task',
|
||||
field=models.ForeignKey(null=False, on_delete=models.CASCADE, help_text="Task this image belongs to", to='app.Task')
|
||||
),
|
||||
]
|
Ładowanie…
Reference in New Issue