bug fixes around owners and tags
This commit is contained in:
parent
bd1468ad8f
commit
dbd493921f
1 changed files with 13 additions and 5 deletions
|
@ -6,9 +6,10 @@ from .git_tools import move_submodule
|
||||||
import shutil
|
import shutil
|
||||||
from .find import _project_lookup_by_id
|
from .find import _project_lookup_by_id
|
||||||
from .tools import list2str, str2list
|
from .tools import list2str, str2list
|
||||||
|
from typing import Union
|
||||||
|
|
||||||
|
|
||||||
def create_project(path, uuid, aliases=None, code=None):
|
def create_project(path: str, uuid: str, owner: Union[str, None]=None, tags: Union[str, None]=None, aliases: Union[str, None]=None, code: Union[str, None]=None):
|
||||||
"""
|
"""
|
||||||
Create a new project entry in the database.
|
Create a new project entry in the database.
|
||||||
|
|
||||||
|
@ -30,9 +31,13 @@ def create_project(path, uuid, aliases=None, code=None):
|
||||||
raise ValueError("Project already imported, use update_project() instead.")
|
raise ValueError("Project already imported, use update_project() instead.")
|
||||||
|
|
||||||
dl.unlock(path + "/backlogger.db", dataset=path)
|
dl.unlock(path + "/backlogger.db", dataset=path)
|
||||||
|
alias_str = None
|
||||||
if aliases is not None:
|
if aliases is not None:
|
||||||
alias_str = list2str(aliases)
|
alias_str = list2str(aliases)
|
||||||
c.execute("INSERT INTO projects (id, aliases, code, created_at, updated_at) VALUES (?, ?, ?, datetime('now'), datetime('now'))", (uuid, alias_str, code))
|
tag_str = None
|
||||||
|
if tags is not None:
|
||||||
|
tag_str = list2str(tags)
|
||||||
|
c.execute("INSERT INTO projects (id, aliases, customTags, owner, code, created_at, updated_at) VALUES (?, ?, ?, ?, ?, datetime('now'), datetime('now'))", (uuid, alias_str, tag_str, owner, code))
|
||||||
conn.commit()
|
conn.commit()
|
||||||
conn.close()
|
conn.close()
|
||||||
dl.save(path + "/backlogger.db", message="Added entry for project " + uuid + " to database", dataset=path)
|
dl.save(path + "/backlogger.db", message="Added entry for project " + uuid + " to database", dataset=path)
|
||||||
|
@ -47,7 +52,7 @@ def update_project_data(db, uuid, prop, value = None):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def import_project(path, url, aliases=None, code=None, isDataset=True):
|
def import_project(path: str, url: str, owner: Union[str, None]=None, tags: Union[str, None]=None, aliases: Union[str, None]=None, code: Union[str, None]=None, isDataset: bool=True):
|
||||||
"""
|
"""
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
|
@ -87,12 +92,14 @@ def import_project(path, url, aliases=None, code=None, isDataset=True):
|
||||||
raise ValueError("The dataset does not have a uuid!")
|
raise ValueError("The dataset does not have a uuid!")
|
||||||
if not os.path.exists(path + "/projects/" + uuid):
|
if not os.path.exists(path + "/projects/" + uuid):
|
||||||
dl.unlock(path + "/backlogger.db", dataset=path)
|
dl.unlock(path + "/backlogger.db", dataset=path)
|
||||||
create_project(path, uuid, aliases, code)
|
create_project(path, uuid, owner, tags, aliases, code)
|
||||||
move_submodule(path, 'projects/tmp', 'projects/' + uuid)
|
move_submodule(path, 'projects/tmp', 'projects/' + uuid)
|
||||||
os.mkdir(path + '/import_scripts/' + uuid)
|
os.mkdir(path + '/import_scripts/' + uuid)
|
||||||
dl.save([path + "/backlogger.db", path + '/projects/' + uuid], message="Import project from " + url, dataset=path)
|
dl.save([path + "/backlogger.db", path + '/projects/' + uuid], message="Import project from " + url, dataset=path)
|
||||||
else:
|
else:
|
||||||
known_data = _project_lookup_by_id(uuid)[0]
|
dl.drop(tmp_path, reckless='kill')
|
||||||
|
shutil.rmtree(tmp_path)
|
||||||
|
known_data = _project_lookup_by_id(path + "/backlogger.db", uuid)[0]
|
||||||
known_aliases = known_data[1]
|
known_aliases = known_data[1]
|
||||||
if known_aliases is None:
|
if known_aliases is None:
|
||||||
print(f"Project {uuid} is already imported, no known aliases.")
|
print(f"Project {uuid} is already imported, no known aliases.")
|
||||||
|
@ -108,5 +115,6 @@ def import_project(path, url, aliases=None, code=None, isDataset=True):
|
||||||
if not len(new_alias_list) == len(known_alias_list):
|
if not len(new_alias_list) == len(known_alias_list):
|
||||||
alias_str = list2str(new_alias_list)
|
alias_str = list2str(new_alias_list)
|
||||||
update_project_data(path, uuid, "aliases", alias_str)
|
update_project_data(path, uuid, "aliases", alias_str)
|
||||||
|
|
||||||
# make this more concrete
|
# make this more concrete
|
||||||
return uuid
|
return uuid
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue