Skip to content

Commit

Permalink
#345 - Add initial mkdocs page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamforka committed Oct 1, 2024
1 parent aecec9e commit 9815872
Show file tree
Hide file tree
Showing 10 changed files with 246 additions and 29 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/_build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build-docs
on:
workflow_call:
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install build dependencies
run: pip install --no-cache-dir -U pip .['docs']
- name: Build docs
run: ./scripts/cd.py --build-docs
25 changes: 25 additions & 0 deletions .github/workflows/_deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: deploy-docs
on:
workflow_call:
jobs:
upload:
name: Deploy docs to github pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - name: Compare tag and package version
# run: |
# TAG=${GITHUB_REF#refs/*/}
# VERSION=$(grep -Po '(?<=version = ")[^"]*' pyproject.toml)
# if [ "$TAG" != "$VERSION" ]; then
# echo "Tag value and package version are different: ${TAG} != ${VERSION}"
# exit 1
# fi
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install build dependencies
run: pip install --no-cache-dir -U pip .['docs']
- name: Deploy to github pages
run: ./scripts/cd.py --deploy-docs
7 changes: 6 additions & 1 deletion .github/workflows/main-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build-package:
uses: ./.github/workflows/_build-package.yml
build-docs:
uses: ./.github/workflows/_build-docs.yml
upload-package:
uses: ./.github/workflows/_upload-package.yml
if: startsWith(github.ref, 'refs/tags/')
needs: [static-checks, integration-tests, build-package]
needs: [static-checks, integration-tests, build-package, build-docs]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
deploy-docs:
uses: ./.github/workflows/_deploy-docs.yml
needs: [build-docs]
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
<em>thehive4py - the de facto Python API client of <a href="https://strangebee.com/thehive/">TheHive</a></em>
</p>
<p align="center">
<a href="https://github.com/TheHive-Project/TheHive4py/releases" target="_blank">
<img src="https://img.shields.io/github/v/release/Thehive-project/thehive4py?logo=github&logoColor=FFC72C&labelColor=0049D4" alt="release">
</a>
<a href="https://github.com/TheHive-Project/TheHive4py/actions/workflows/main-cicd.yml" target="_blank">
<img src="https://img.shields.io/github/actions/workflow/status/TheHive-Project/TheHive4py/main-cicd.yml?logo=github&logoColor=FFC72C&labelColor=0049D4" alt="cicd">
<img src="https://img.shields.io/github/actions/workflow/status/TheHive-Project/TheHive4py/main-cicd.yml?logo=github&logoColor=FFC72C&labelColor=0049D4" alt="build">
</a>
<a href="https://app.codecov.io/github/TheHive-Project/TheHive4py" target="_blank">
<img src="https://img.shields.io/codecov/c/gh/TheHive-Project/TheHive4py?logo=codecov&logoColor=FFC72C&labelColor=0049D4" alt="codecov">
Expand Down
Binary file added docs/img/strangebee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Coming Soon!
hide:
- toc
- navigation
---
#
<div markdown align="center">
<p>
<b style="display: block; font-size: 2rem">TheHive4py</b>
<a href="https://github.com/TheHive-Project/TheHive4py" target="_blank">
<img src="https://strangebee.com/wp-content/uploads/2024/07/Icon4Nav_TheHive.png" alt="TheHive Logo">
</a>
</p>
<p markdown>
:material-bee:{ .strangebee .bluebee .upleftbee }
:material-bee:{ .strangebee .yellowbee .upbee }
:material-bee:{ .strangebee .bluebee .uprightbee }
</p>
<span class="coming-soon">Coming Soon!</span>
<p markdown>
:material-bee:{ .strangebee .yellowbee .downleftbee }
:material-bee:{ .strangebee .bluebee .downbee }
:material-bee:{ .strangebee .yellowbee .downrightbee }
</p>



<p><em>Our bees are out buzzing to gather all the docs you need!</em></p>
<p><em>Check out our <a href="https://github.com/TheHive-Project/TheHive4py?tab=readme-ov-file#quickstart" target="_blank">Quickstart</a> in the meantime!<em></p>
</div>


64 changes: 64 additions & 0 deletions docs/styles/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
:root {
--md-primary-fg-color: #0049d4;
--md-accent-fg-color: #ffc72c;
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.25);
}
}


.coming-soon {
color: var(--md-primary-fg-color);
font-size: 1.5rem;
font-weight: bold;
transition: 0.75s;
}

.coming-soon:hover{
color: var(--md-accent-fg-color);
transition: 0.75s;
}

.upleftbee {
rotate: -90deg;
}

.upbee {
rotate: -45deg;
}

.uprightbee{
rotate: 0deg;
}

.downleftbee {
rotate: 180deg;
}

.downbee {
rotate: 135deg;
}

.downrightbee{
rotate: 90deg;
}

.yellowbee {
color: var(--md-accent-fg-color)
}

.bluebee {
color: var(--md-primary-fg-color)
}

.strangebee {
animation: pulse 2s infinite;
font-size: 1.5rem;
vertical-align: top !important;
}
49 changes: 49 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
site_name: TheHive4py
theme:
name: material
favicon: img/strangebee.png
logo: img/strangebee.png
features:
- navigation.footer
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: custom
accent: custom
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
extra_css:
- styles/extra.css
repo_name: TheHive-Project/TheHive4py
repo_url: https://github.com/TheHive-Project/TheHive4py
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra:
social:
- icon: simple/discord
link: https://discord.com/invite/XhxG3vzM44
name: Discord
- icon: simple/github
link: https://github.com/TheHive-Project/TheHive4py
name: GitHub
- icon: simple/python
link: https://pypi.org/project/thehive4py/
name: PyPI


1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ authors = [{ name = "Szabolcs Antal", email = "[email protected]" }]
[project.optional-dependencies]
audit = ["bandit", "pip-audit"]
build = ["build", "twine"]
docs = ["mkdocs", "mkdocs-material"]
lint = ["black", "flake8-pyproject", "mypy", "pre-commit"]
test = ["pytest", "pytest-cov"]
dev = ["thehive4py[audit, lint, test, build]"]
Expand Down
74 changes: 47 additions & 27 deletions scripts/cd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import argparse
import subprocess
from typing import List
from typing import Dict, List


def _run_subprocess(
Expand All @@ -23,13 +23,6 @@ def _run_subprocess(
exit(err.returncode)


def run_all(quiet=False):
print("Run all deployment tasks...")
run_build(quiet=quiet)
run_upload(quiet=quiet)
print("All tasks succeeded!")


def run_build(quiet: bool):
print("Building thehive4py with the build module...")
_run_subprocess(
Expand All @@ -52,14 +45,34 @@ def run_upload(quiet: bool):
print("Successfully published thehive4py!")


def build_run_options() -> List[dict]:
return [
{"name": "build", "help": "run build step", "func": run_build},
{"name": "upload", "help": "run upload step", "func": run_upload},
]
def run_build_docs(quiet: bool):
print("Building thehive4py docs...")
_run_subprocess(
command="mkdocs build --clean --strict",
quiet=quiet,
)
print("Successfully built thehive4py docs!")


def parse_arguments(run_options: List[dict]):
def run_deploy_docs(quiet: bool):
print("Deploying thehive4py docs to gh-pages...")
_run_subprocess(
command="mkdocs gh-deploy --force",
quiet=quiet,
)
print("Successfully deployed thehive4py docs to gh-pages!")


def build_run_options() -> Dict[str, dict]:
return {
"build": {"help": "build the package locally", "func": run_build},
"upload": {"help": "upload the package to pypi", "func": run_upload},
"build-docs": {"help": "build the docs locally", "func": run_build_docs},
"deploy-docs": {"help": "deploy the docs to gh-pages", "func": run_deploy_docs},
}


def parse_arguments(run_options: Dict[str, dict]):
parser = argparse.ArgumentParser(
prog="thehive4py-cd",
description="run all cd steps or use options to run cd steps selectively",
Expand All @@ -72,14 +85,21 @@ def parse_arguments(run_options: List[dict]):
help="silence verbose output",
)

for run_option in run_options:
for run_option_name, run_option_attributes in run_options.items():
parser.add_argument(
f"--{run_option['name']}",
help=run_option["help"],
f"--{run_option_name.replace('_', '-')}",
help=run_option_attributes["help"],
action="store_true",
)

return parser.parse_args()
args = parser.parse_args()

if not any(
getattr(args, run_option.replace("-", "_")) for run_option in run_options
):
parser.error(f"provide at least one option from: {list(run_options)}")

return args


def main():
Expand All @@ -88,17 +108,17 @@ def main():

quiet = args.quiet

selective_runs = [
run_option["func"]
for run_option in run_options
if getattr(args, run_option["name"])
selected_run_funcs = [
run_option_attributes["func"]
for run_option_name, run_option_attributes in run_options.items()
if getattr(args, run_option_name.replace("-", "_"))
]

if selective_runs:
for run in selective_runs:
run(quiet=quiet)
else:
run_all(quiet=quiet)
for run_func in selected_run_funcs:
run_func(quiet=quiet)
print()

print("Done!")


if __name__ == "__main__":
Expand Down

0 comments on commit 9815872

Please sign in to comment.