def get_config(): base_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir)) p = configargparse.getArgumentParser(default_config_files=[os.path.join(base_dir, 'conf.ini')]) p.add('-c', '--my-config', required=False, is_config_file=True, help='config file path') p.add_argument('--data_dir', type=str, help='where data files are located') p.add_argument('--issuer_logo_file', type=str, help='issuer logo image file, png format') p.add_argument('--issuer_signature_file', type=str, help='issuer signature image file, png format') p.add_argument('--cert_image_file', type=str, help='issuer logo image file, png format') p.add_argument('--issuer_url', type=str, help='issuer URL') p.add_argument('--issuer_certs_url', type=str, help='issuer certificates URL') p.add_argument('--issuer_email', type=str, help='issuer email') p.add_argument('--issuer_name', type=str, help='issuer name') p.add_argument('--issuer_id', type=str, help='path to issuer public keys') p.add_argument('--certificate_language', type=str, required=False, help='certificate language') p.add_argument('--certificate_description', type=str, help='the display description of the certificate') p.add_argument('--certificate_title', type=str, help='the title of the certificate') p.add_argument('--template_dir', type=str, help='the template output directory') p.add_argument('--template_file_name', type=str, help='the template file name') p.add_argument('--hash_emails', action='store_true', help='whether to hash emails in the certificate') p.add_argument('--additional_global_fields', action=helpers.make_action('global_fields'), help='additional global fields') p.add_argument('--additional_per_recipient_fields', action=helpers.make_action('per_recipient_fields'), help='additional per-recipient fields') args, _ = p.parse_known_args() args.abs_data_dir = os.path.abspath(os.path.join(base_dir, args.data_dir)) return args
def get_config(): base_dir = os.path.abspath( os.path.join(os.path.dirname(__file__), os.pardir)) p = configargparse.getArgumentParser( default_config_files=[os.path.join(base_dir, 'conf.ini')]) p.add('-c', '--my-config', required=False, is_config_file=True, help='config file path') p.add_argument('--data_dir', type=str, help='where data files are located') p.add_argument('--issuer_certs_url', type=str, help='issuer certificates URL') p.add_argument('--template_dir', type=str, help='the template output directory') p.add_argument('--template_file_name', type=str, help='the template file name') p.add_argument('--hash_emails', action='store_true', help='whether to hash emails in the certificate') p.add_argument('--additional_per_recipient_fields', action=helpers.make_action('per_recipient_fields'), help='additional per-recipient fields') p.add_argument('--unsigned_certificates_dir', type=str, help='output directory for unsigned certificates') p.add_argument('--roster', type=str, help='roster file name') args, _ = p.parse_known_args() args.abs_data_dir = os.path.abspath(os.path.join(base_dir, args.data_dir)) return args