2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Generate an index file for the schema pages

This commit is contained in:
Oliver Walters
2024-02-12 14:02:18 +11:00
parent ad219bf898
commit 407f94dd2f
20 changed files with 222 additions and 31 deletions

View File

@ -11,22 +11,22 @@ OUTPUT_DIR = './docs/api/schema/'
GENERAL_PATH = 'general'
# List of special paths we want to split out
SPECIAL_PATHS = [
'auth',
'background-task',
'barcode',
'bom',
'build',
'company',
'label',
'order',
'part',
'plugins',
'report',
'settings',
'stock',
'user',
]
SPECIAL_PATHS = {
'auth': 'Authorization and Authentication',
'background-task': 'Background Task Management',
'barcode': 'Barcode Scanning',
'bom': 'Bill of Materials',
'build': 'Build Order Management',
'company': 'Company Management',
'label': 'Label Printing',
'order': 'External Order Management',
'part': 'Parts and Part Categories',
'plugins': 'Plugin Functionality',
'report': 'Report Generation',
'settings': 'Settings Management',
'stock': 'Stock and Stock Locations',
'user': 'User Management',
}
def top_level_path(path: str) -> str:
@ -43,12 +43,53 @@ def top_level_path(path: str) -> str:
key = path.split('/')[1]
if key in SPECIAL_PATHS:
if key in SPECIAL_PATHS.keys():
return key
return GENERAL_PATH
def generate_index_file(version: str):
"""Generate the index file for the API schema."""
output = f"""
---
title: InvenTree API Schema
---
The InvenTree API is implemented using the [Django REST framework](https://www.django-rest-framework.org).
The API schema as documented below is generated using the [drf-spectactular](https://github.com/tfranzel/drf-spectacular/) extension.
## API Version
This documentation is for API version: `{version}`
## API Schema File
The API schema file is available for download, and can be used for generating client libraries, or for testing API endpoints.
## API Schema Documentation
API schema documentation is split into the following categories:
| Category | Description |
| --- | --- |
"""
for key, value in SPECIAL_PATHS.items():
output += f'| [{value}](./schema/{key}.md) | {value} |\n'
output += '| [General](./schema/general.md) | General API endpoints |\n'
output += '\n'
output_file = os.path.join(os.path.dirname(__file__), OUTPUT_DIR, 'schema.md')
print('Writing index file to:', output_file)
with open(output_file, 'w') as f:
f.write(output)
def parse_api_file(filename: str):
"""Parse the input API file, and split into smaller sections.
@ -88,6 +129,9 @@ def parse_api_file(filename: str):
with open(output_file, 'w') as f:
yaml.dump(output, f)
# Finally, generate an index file for the API schema
generate_index_file(data['info']['version'])
if __name__ == '__main__':
parser = argparse.ArgumentParser(description=__doc__)