forked from Absynth723/ipam-migrator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template_process.py
executable file
·85 lines (64 loc) · 2.15 KB
/
template_process.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python3
#
# Copyright (c) 2017 Catalyst.net Ltd
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# A helper program to take in a list of key-value pairs, process
# an input file with respect to this list, and then write the result
# to the given output location.
import argparse
import re
def template_process(config, input_file, output_file):
'''
Process the given input file with respect to the given config,
and write the result to the output file.
'''
with open(input_file, "r", encoding="UTF-8") as i:
with open(output_file, "w", encoding="UTF-8") as o:
text = i.read()
for key, value in config.items():
text = re.sub("__%s__" % key, value, text)
o.write(text)
# Get arguments.
argparser = argparse.ArgumentParser()
argparser.add_argument(
"input-file",
metavar = "INFILE",
type = str,
help ="template file to process",
)
argparser.add_argument(
"output-file",
metavar = "OUTFILE",
type = str,
help ="location to save processed file to",
)
argparser.add_argument(
"config",
metavar = "KEY=VALUE",
type = str,
nargs = "*",
help ="key-value pair to replace in the template",
)
args = vars(argparser.parse_args())
# Process configuration from arguments.
input_file = args["input-file"]
output_file = args["output-file"]
config = {}
for string in args["config"]:
k, value = string.split("=", maxsplit=1)
key = k.upper().replace("-", "_")
config[key] = value
# Process the template.
template_process(config, input_file, output_file)