Added index page table of contents
write files only if changed (less verbose)
This commit is contained in:
parent
5f73765212
commit
887fb71a27
@ -1,3 +1,4 @@
|
|||||||
|
from io import StringIO
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import json
|
import json
|
||||||
import itertools
|
import itertools
|
||||||
@ -344,6 +345,16 @@ def write_security_rules(info: ModelInformation, security_rules: dict[int, Secur
|
|||||||
|
|
||||||
{(chr(10)*2).join(rule_to_string(info, i, security_rules.get(i)) for i in range(18, 19))}"""
|
{(chr(10)*2).join(rule_to_string(info, i, security_rules.get(i)) for i in range(18, 19))}"""
|
||||||
|
|
||||||
|
def write_file_if_changed(file: Path, content: str, encoding: str = "utf-8"):
|
||||||
|
old_content = None
|
||||||
|
if file.exists():
|
||||||
|
with file.open('r', encoding=encoding) as f:
|
||||||
|
old_content = f.read()
|
||||||
|
if old_content is None or old_content != content:
|
||||||
|
print(f"Writing changed file: {file}")
|
||||||
|
with file.open('w', encoding=encoding) as f:
|
||||||
|
f.write(content)
|
||||||
|
|
||||||
def write_model_readmes(dataset: Dataset):
|
def write_model_readmes(dataset: Dataset):
|
||||||
for model_id, info in dataset.items():
|
for model_id, info in dataset.items():
|
||||||
dir = output_path / 'dataset'
|
dir = output_path / 'dataset'
|
||||||
@ -383,10 +394,8 @@ def write_model_readmes(dataset: Dataset):
|
|||||||
warning("Security rules file not found at {}".format(security_rules_file))
|
warning("Security rules file not found at {}".format(security_rules_file))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
warning("Security rules file at {} is invalid: {}".format(security_rules_file, e))
|
warning("Security rules file at {} is invalid: {}".format(security_rules_file, e))
|
||||||
print(f"Writing readme file {readme}")
|
|
||||||
dir.mkdir(exist_ok=True)
|
dir.mkdir(exist_ok=True)
|
||||||
with readme.open('w', encoding="utf-8") as f:
|
write_file_if_changed(readme, f"""---
|
||||||
f.write(f"""---
|
|
||||||
title: {slug}
|
title: {slug}
|
||||||
keywords: model TODO
|
keywords: model TODO
|
||||||
tags: [{', '.join(get_tag_slug(tech) for tech in info['tech'])}]
|
tags: [{', '.join(get_tag_slug(tech) for tech in info['tech'])}]
|
||||||
@ -445,9 +454,7 @@ def write_root_readme(dataset: Dataset):
|
|||||||
overview_dir = output_path / 'overview'
|
overview_dir = output_path / 'overview'
|
||||||
index_file = Path('index.md')
|
index_file = Path('index.md')
|
||||||
|
|
||||||
print(f"Writing main readme file")
|
write_file_if_changed(index_file, f"""---
|
||||||
with index_file.open('w', encoding="utf-8") as f:
|
|
||||||
f.write(f"""---
|
|
||||||
title: code2DFD Documentation
|
title: code2DFD Documentation
|
||||||
keywords: code2DFD introduction
|
keywords: code2DFD introduction
|
||||||
tags: [overview]
|
tags: [overview]
|
||||||
@ -457,7 +464,7 @@ summary: Dataset of dataflow diagrams of microservice applications.
|
|||||||
toc: false
|
toc: false
|
||||||
---
|
---
|
||||||
|
|
||||||
# DaFD
|
## DaFD
|
||||||
|
|
||||||
{{% include image.html file="TUHH_logo-wortmarke_en_rgb.svg" alt="TUHH Logo" max-width="350" %}}
|
{{% include image.html file="TUHH_logo-wortmarke_en_rgb.svg" alt="TUHH Logo" max-width="350" %}}
|
||||||
{{% include image.html file="company_logo_big.png" alt="SoftSec Institute Logo" max-width="350" %}}
|
{{% include image.html file="company_logo_big.png" alt="SoftSec Institute Logo" max-width="350" %}}
|
||||||
@ -465,13 +472,16 @@ toc: false
|
|||||||
This is DaFD, a dataset containing Dataflow Diagrams (DFDs) of microservices written in Java. The models correspond to actual implementation code of open-source applications found on GitHub.
|
This is DaFD, a dataset containing Dataflow Diagrams (DFDs) of microservices written in Java. The models correspond to actual implementation code of open-source applications found on GitHub.
|
||||||
The DFDs are presented in multiple formats and contain full traceability of all model items to code, indicating the evidence for their implementation. Additionally to the models themselves, we present a mapping to a list of 17 architectural security best-practices, i.e. a table indicating whether each rules is followed or not. For those that are not followed, we created model variants that do follow the rule. These variants were crafted purely on the model-level and the added items do not correspond to code anymore. All artifacts were created manually by researchers of the Institute of Software Security at Hamburg University of Technology.
|
The DFDs are presented in multiple formats and contain full traceability of all model items to code, indicating the evidence for their implementation. Additionally to the models themselves, we present a mapping to a list of 17 architectural security best-practices, i.e. a table indicating whether each rules is followed or not. For those that are not followed, we created model variants that do follow the rule. These variants were crafted purely on the model-level and the added items do not correspond to code anymore. All artifacts were created manually by researchers of the Institute of Software Security at Hamburg University of Technology.
|
||||||
|
|
||||||
{{% include toc.html %}}
|
## Table of Contents
|
||||||
|
|
||||||
|
- [Overview](index.html)
|
||||||
|
- [Dataflow Diagrams](dfds.html)
|
||||||
|
- [Use-Cases](usecases.html)
|
||||||
|
- [Models](models.html)
|
||||||
""")
|
""")
|
||||||
|
|
||||||
models_file = overview_dir / 'models.md'
|
models_file = overview_dir / 'models.md'
|
||||||
print(f"Writing models readme file")
|
write_file_if_changed(models_file, f"""---
|
||||||
with models_file.open('w', encoding="utf-8") as f:
|
|
||||||
f.write(f"""---
|
|
||||||
title: Models
|
title: Models
|
||||||
keywords: dataset models
|
keywords: dataset models
|
||||||
tags: [overview]
|
tags: [overview]
|
||||||
@ -497,24 +507,28 @@ Name | Source | LoC | Stars | Forks | DFD Items | Technologies
|
|||||||
def write_tag_readme(dataset: Dataset):
|
def write_tag_readme(dataset: Dataset):
|
||||||
tag_dir = output_path / 'tags'
|
tag_dir = output_path / 'tags'
|
||||||
known_tech = set(tech for model in dataset.values() for tech in model['tech'])
|
known_tech = set(tech for model in dataset.values() for tech in model['tech'])
|
||||||
print(f"Writing tag data file")
|
|
||||||
tags_data_path = Path('_data')
|
tags_data_path = Path('_data')
|
||||||
tags_data_file = tags_data_path / 'tags.yml'
|
tags_data_file = tags_data_path / 'tags.yml'
|
||||||
tags_data_path.mkdir(exist_ok=True, parents=True)
|
if tags_data_file.exists():
|
||||||
with tags_data_file.open('r+') as f:
|
tags_data_path.mkdir(exist_ok=True, parents=True)
|
||||||
tags = yaml.safe_load(f)
|
with tags_data_file.open('r') as f:
|
||||||
tags['allowed-tags'] = list(sorted(set(itertools.chain(tags['allowed-tags'], (get_tag_slug(tech) for tech in known_tech)))))
|
tags: dict[Any, Any] = yaml.safe_load(f)
|
||||||
f.seek(0)
|
else:
|
||||||
|
tags = {}
|
||||||
|
|
||||||
|
tags['allowed-tags'] = list(sorted(set(itertools.chain(tags.get('allowed-tags', []), (get_tag_slug(tech) for tech in known_tech)))))
|
||||||
|
|
||||||
|
with StringIO() as f:
|
||||||
yaml.dump(tags, f)
|
yaml.dump(tags, f)
|
||||||
f.truncate()
|
tags_content = f.getvalue()
|
||||||
|
write_file_if_changed(tags_data_file, tags_content)
|
||||||
|
|
||||||
for tech in known_tech:
|
for tech in known_tech:
|
||||||
slug = get_tag_slug(tech)
|
slug = get_tag_slug(tech)
|
||||||
info_file = tag_dir / f'tag_{slug}.md'
|
info_file = tag_dir / f'tag_{slug}.md'
|
||||||
print(f"Writing tag file for {tech}")
|
|
||||||
tag_dir.mkdir(exist_ok=True, parents=True)
|
tag_dir.mkdir(exist_ok=True, parents=True)
|
||||||
with open(info_file, 'w', encoding="utf-8") as f:
|
write_file_if_changed(info_file, f"""---
|
||||||
f.write(f"""---
|
|
||||||
title: "{tech}"
|
title: "{tech}"
|
||||||
tagName: {slug}
|
tagName: {slug}
|
||||||
search: exclude
|
search: exclude
|
||||||
|
Loading…
Reference in New Issue
Block a user