2021-05-26 18:37:26 +02:00
#! /usr/bin/env python3
2021-05-10 17:23:40 +02:00
2021-04-28 20:11:42 +02:00
import argparse
2021-04-23 20:01:40 +02:00
import json
import os
2021-05-26 18:39:42 +02:00
from pathlib import Path
2021-04-23 20:01:40 +02:00
2024-02-07 14:49:55 +01:00
import toml
2021-04-28 20:11:42 +02:00
from jinja2 import Environment , FileSystemLoader
2024-02-07 14:49:55 +01:00
2022-08-05 16:39:38 +02:00
def value_for_lang ( values , lang ) :
if not isinstance ( values , dict ) :
return values
if lang in values :
return values [ lang ]
elif " en " in values :
return values [ " en " ]
else :
return list ( values . values ( ) ) [ 0 ]
2021-04-23 20:01:40 +02:00
2021-05-28 17:17:16 +02:00
def generate_READMEs ( app_path : str ) :
app_path = Path ( app_path )
2021-04-23 20:01:40 +02:00
2021-05-26 18:43:26 +02:00
if not app_path . exists ( ) :
2021-04-28 20:14:48 +02:00
raise Exception ( " App path provided doesn ' t exists ?! " )
2021-04-23 20:01:40 +02:00
2023-01-11 09:58:45 +01:00
if os . path . exists ( app_path / " manifest.json " ) :
manifest = json . load ( open ( app_path / " manifest.json " ) )
else :
manifest = toml . load ( open ( app_path / " manifest.toml " ) )
2021-05-21 20:12:00 +02:00
upstream = manifest . get ( " upstream " , { } )
2023-01-20 00:02:59 +01:00
catalog = toml . load ( open ( Path ( os . path . abspath ( __file__ ) ) . parent . parent . parent / " apps.toml " ) )
2022-02-23 07:36:19 +01:00
from_catalog = catalog . get ( manifest [ ' id ' ] , { } )
2023-01-20 00:02:59 +01:00
antifeatures_list = toml . load ( open ( Path ( os . path . abspath ( __file__ ) ) . parent . parent . parent / " antifeatures.toml " ) )
2022-02-23 08:18:05 +01:00
2021-05-26 18:43:26 +02:00
if not upstream and not ( app_path / " doc " / " DISCLAIMER.md " ) . exists ( ) :
2021-05-26 18:46:29 +02:00
print (
" There ' s no ' upstream ' key in the manifest, and doc/DISCLAIMER.md doesn ' t exists - therefore assuming that we shall not auto-update the README.md for this app yet. "
)
2021-05-21 20:12:00 +02:00
return
2021-05-26 18:39:42 +02:00
env = Environment ( loader = FileSystemLoader ( Path ( __file__ ) . parent / " templates " ) )
2021-04-23 20:01:40 +02:00
2021-04-28 20:14:48 +02:00
for lang , lang_suffix in [ ( " en " , " " ) , ( " fr " , " _fr " ) ] :
2021-04-23 20:01:40 +02:00
2021-05-26 18:45:39 +02:00
template = env . get_template ( f " README { lang_suffix } .md.j2 " )
2021-04-23 20:01:40 +02:00
2021-08-22 16:57:07 +02:00
if ( app_path / " doc " / f " DESCRIPTION { lang_suffix } .md " ) . exists ( ) :
description = ( app_path / " doc " / f " DESCRIPTION { lang_suffix } .md " ) . read_text ( )
# Fallback to english if maintainer too lazy to translate the description
elif ( app_path / " doc " / " DESCRIPTION.md " ) . exists ( ) :
description = ( app_path / " doc " / " DESCRIPTION.md " ) . read_text ( )
else :
description = None
2021-05-26 18:43:26 +02:00
if ( app_path / " doc " / " screenshots " ) . exists ( ) :
2021-04-28 20:14:48 +02:00
screenshots = os . listdir ( os . path . join ( app_path , " doc " , " screenshots " ) )
if " .gitkeep " in screenshots :
screenshots . remove ( " .gitkeep " )
else :
screenshots = [ ]
2021-04-23 20:01:40 +02:00
2021-05-26 18:43:26 +02:00
if ( app_path / " doc " / f " DISCLAIMER { lang_suffix } .md " ) . exists ( ) :
disclaimer = ( app_path / " doc " / f " DISCLAIMER { lang_suffix } .md " ) . read_text ( )
2021-04-28 20:14:48 +02:00
# Fallback to english if maintainer too lazy to translate the disclaimer idk
2021-05-26 18:43:26 +02:00
elif ( app_path / " doc " / " DISCLAIMER.md " ) . exists ( ) :
disclaimer = ( app_path / " doc " / " DISCLAIMER.md " ) . read_text ( )
2021-04-28 20:14:48 +02:00
else :
disclaimer = None
2021-04-23 20:01:40 +02:00
2022-02-23 08:18:05 +01:00
# TODO: Add url to the documentation... and actually create that documentation :D
2022-10-06 23:12:37 +02:00
antifeatures = { a : antifeatures_list [ a ] for a in from_catalog . get ( ' antifeatures ' , [ ] ) }
2022-08-05 16:39:38 +02:00
for k , v in antifeatures . items ( ) :
2022-10-06 23:20:19 +02:00
antifeatures [ k ] [ ' title ' ] = value_for_lang ( v [ ' title ' ] , lang )
2022-08-05 16:39:38 +02:00
if manifest . get ( " antifeatures " , { } ) . get ( k , None ) :
2022-10-06 23:20:19 +02:00
antifeatures [ k ] [ ' description ' ] = value_for_lang ( manifest . get ( " antifeatures " , { } ) . get ( k , None ) , lang )
2022-05-30 13:59:54 +02:00
else :
2022-10-06 23:20:19 +02:00
antifeatures [ k ] [ ' description ' ] = value_for_lang ( antifeatures [ k ] [ ' description ' ] , lang )
2022-02-23 08:18:05 +01:00
2021-05-26 18:46:29 +02:00
out = template . render (
lang = lang ,
upstream = upstream ,
2021-08-22 16:57:07 +02:00
description = description ,
2021-05-26 18:46:29 +02:00
screenshots = screenshots ,
disclaimer = disclaimer ,
2022-08-05 16:39:38 +02:00
antifeatures = antifeatures ,
2021-05-26 18:46:29 +02:00
manifest = manifest ,
)
2021-05-26 18:43:26 +02:00
( app_path / f " README { lang_suffix } .md " ) . write_text ( out )
2021-04-28 20:14:48 +02:00
if __name__ == " __main__ " :
2021-05-26 18:46:29 +02:00
parser = argparse . ArgumentParser (
description = " Automatically (re)generate README for apps "
)
parser . add_argument (
" app_path " , help = " Path to the app to generate/update READMEs for "
)
2021-04-28 20:14:48 +02:00
args = parser . parse_args ( )
2021-05-28 17:17:16 +02:00
generate_READMEs ( args . app_path )