Skip to content
Snippets Groups Projects
Commit 050f1de4 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Handle the file path for files with _0 and non standard paths

parent 09a9128d
No related branches found
No related tags found
No related merge requests found
import argparse
import json
import os
from urllib.parse import urlsplit
from datetime import datetime, timezone
......@@ -143,7 +145,6 @@ class MigrateCommand(BaseCommand):
self.stdout.write(f"Processed \"{node['title']}\" ({node['nid']})")
except IntegrityError:
self.stdout.write(f"*** Skipped \"{node['title']}\" ({node['nid']}) due to IntegrityError")
pass
def get_user(self, uid):
try:
......@@ -291,7 +292,8 @@ class MigrateCommand(BaseCommand):
files = []
for file_data in value:
file_path = 'files/private/application_upload/' + file_data['filename']
parts = urlsplit(file_data['uri'])
file_path = os.path.join('files', 'private', parts.netloc, *parts.path.split('/'))
saved_file = migration_storage.open(file_path)
saved_file.name = file_data['filename']
files.append(saved_file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment