Browse Source

Deploy cubes (von König Berlin)

gc-server3 9 months ago
parent
commit
362a1160a6
3 changed files with 50 additions and 8 deletions
  1. 13 4
      c11.py
  2. 5 4
      cognos11/__init__.py
  3. 32 0
      cognos11/deploy_cubes.py

+ 13 - 4
c11.py

@@ -1,11 +1,13 @@
 import os
+from enum import Enum
 from pathlib import Path
-import config
+
+import typer
+
+import cognos7.mdl_convert
 import cognos11
+import config
 from pdf import pdf_merge, pdf_test
-import cognos7.mdl_convert
-import typer
-from enum import Enum
 
 
 class ExportFormat(Enum):
@@ -82,6 +84,13 @@ def mdlconvert(mdl_file):
     os.rename(source, target)
 
 
+@app.command()
+def deploy():
+    cube_out = cfg.system_dir + "\\Cube_out"
+    cubes_dir = cfg.portal_dir + "\\Cubes"
+    cognos11.deploy(cube_out, cubes_dir)
+
+
 if __name__ == "__main__":
     # app()
     reportoutput()

+ 5 - 4
cognos11/__init__.py

@@ -1,4 +1,5 @@
-from cognos11.c11_export import c11_export
-from cognos11.c11_create import c11_create
-from cognos11.c11_api import c11_api
-from cognos11.c11_jobs import get_converted_jobs
+from cognos11.c11_api import c11_api  # noqa: F401
+from cognos11.c11_create import c11_create  # noqa: F401
+from cognos11.c11_export import c11_export  # noqa: F401
+from cognos11.c11_jobs import get_converted_jobs  # noqa: F401
+from cognos11.deploy_cubes import deploy  # noqa: F401

+ 32 - 0
cognos11/deploy_cubes.py

@@ -0,0 +1,32 @@
+import shutil
+from datetime import datetime, timedelta
+from pathlib import Path
+
+
+def deploy(cube_out: str, cubes_dir: str) -> None:
+    for p in Path(cube_out).glob("*.mdc"):
+        mtime = datetime.fromtimestamp(p.stat().st_mtime)
+        if mtime < datetime.now() - timedelta(days=1):
+            continue
+        cube_name = p.name.lower()[:-4]
+        basename = cube_name + "__" + mtime.strftime("%Y%m%d%H%M%S")
+        folder = Path(cubes_dir) / basename
+        if folder.exists():
+            continue
+        print(basename)
+        folder.mkdir()
+        shutil.copy2(p, folder / p.name)
+        for v in Path(cubes_dir).glob(cube_name + "__*.ver"):
+            v.unlink()
+        old_folders = list(sorted([f.name for f in Path(cubes_dir).glob(cube_name + "__*") if f.is_dir()]))[:-3]
+        for f in old_folders:
+            shutil.rmtree(cubes_dir + "\\" + f, ignore_errors=True)
+
+        with open(cubes_dir + "\\" + basename + ".ver", "w", encoding="latin-1") as fwh:
+            fwh.write("Dies ist eine PowerCube-Versionsdatei. Nicht löschen!\n")
+
+
+if __name__ == "__main__":
+    cube_out = "C:\\GlobalCube\\System\\OPTIMA\\Cube_out"
+    cubes_dir = "C:\\GlobalCube\\Cubes"
+    deploy(cube_out, cubes_dir)