-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathendpoints.py
259 lines (188 loc) · 7.95 KB
/
endpoints.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import datetime
import io
import os
import flask
from app.api import api
def render_error(msg, error_header="An error occured!", statusCode=500):
return flask.render_template('error.html', error_header=error_header, error_message=msg), statusCode
def get_valid_subpath(f: str, d: str):
"""
Returns the absolute path of wanted file or directory, but only if it is contained in the given directory.
:param f: File name or directory to retireve the path for.
:type f: str
:param d: Directory, the file should be in.
:type d: str
:return: The valid path to access the file or None.
:rtype: str
"""
file_path = os.path.realpath(f)
common_path = os.path.commonpath((file_path, d))
# a valid sub path must contain the whole parent directory in its own path
if common_path == d:
return file_path
return None
@api.route('/config/<name>', methods=['GET'])
def get_config(name: str):
"""
Reads the file with the corresponding name that was passed.
:param name: Configuration file name
:type name: str
:return: Rendered HTML document with content of the configuration file.
:rtype: str
"""
nginx_path = flask.current_app.config['NGINX_PATH']
path = get_valid_subpath(os.path.join(nginx_path, name), nginx_path)
if path == None:
return render_error(f'Could not read file "{path}".')
with io.open(path, 'r') as f:
_file = f.read()
return flask.render_template('config.html', name=name, file=_file), 200
@api.route('/config/<name>', methods=['POST'])
def post_config(name: str):
"""
Accepts the customized configuration and saves it in the configuration file with the supplied name.
:param name: Configuration file name
:type name: str
:return:
:rtype: werkzeug.wrappers.Response
"""
content = flask.request.get_json()
nginx_path = flask.current_app.config['NGINX_PATH']
config_file = os.path.join(nginx_path, name)
path = get_valid_subpath(config_file, nginx_path)
if path == None:
return flask.make_response({'success': False}), 500
with io.open(config_file, 'w') as f:
f.write(content['file'])
return flask.make_response({'success': True}), 200
@api.route('/domains', methods=['GET'])
def get_domains():
"""
Reads all files from the configuration file directory and checks the state of the site configuration.
:return: Rendered HTML document with the domains
:rtype: str
"""
config_path = flask.current_app.config['CONFIG_PATH']
sites_available = []
sites_enabled = []
if not os.path.exists(config_path):
error_message = f'The config folder "{config_path}" does not exists.'
return render_error(error_message)
for _ in os.listdir(config_path):
if os.path.isfile(os.path.join(config_path, _)):
domain, state = _.rsplit('.', 1)
if state == 'conf':
time = datetime.datetime.fromtimestamp(os.path.getmtime(os.path.join(config_path, _)))
sites_available.append({
'name': domain,
'time': time
})
sites_enabled.append(domain)
elif state == 'disabled':
time = datetime.datetime.fromtimestamp(os.path.getmtime(os.path.join(config_path, _)))
sites_available.append({
'name': domain.rsplit('.', 1)[0],
'time': time
})
# sort sites by name
sites_available = sorted(sites_available, key=lambda _: _['name'])
return flask.render_template('domains.html', sites_available=sites_available, sites_enabled=sites_enabled), 200
@api.route('/domain/<name>', methods=['GET'])
def get_domain(name: str):
"""
Takes the name of the domain configuration file and
returns a rendered HTML with the current configuration of the domain.
:param name: The domain name that corresponds to the name of the file.
:type name: str
:return: Rendered HTML document with the domain
:rtype: str
"""
config_path = flask.current_app.config['CONFIG_PATH']
_file = ''
enabled = True
for _ in os.listdir(config_path):
if os.path.isfile(os.path.join(config_path, _)):
if _.startswith(name):
domain, state = _.rsplit('.', 1)
if state == 'disabled':
enabled = False
with io.open(os.path.join(config_path, _), 'r') as f:
_file = f.read()
break
return flask.render_template('domain.html', name=name, file=_file, enabled=enabled), 200
@api.route('/domain/<name>', methods=['POST'])
def post_domain(name: str):
"""
Creates the configuration file of the domain.
:param name: The domain name that corresponds to the name of the file.
:type name: str
:return: Returns a status about the success or failure of the action.
"""
config_path = flask.current_app.config['CONFIG_PATH']
new_domain = flask.render_template('new_domain.j2', name=name)
name = name + '.conf.disabled'
path = get_valid_subpath(os.path.join(config_path, name), config_path)
if path == None:
return flask.jsonify({'success': False, 'error_msg': 'invalid domain path'}), 500
try:
with io.open(path, 'w') as f:
f.write(new_domain)
response = flask.jsonify({'success': True}), 201
except Exception as ex:
response = flask.jsonify({'success': False, 'error_msg': ex}), 500
return response
@api.route('/domain/<name>', methods=['DELETE'])
def delete_domain(name: str):
"""
Deletes the configuration file of the corresponding domain.
:param name: The domain name that corresponds to the name of the file.
:type name: str
:return: Returns a status about the success or failure of the action.
"""
config_path = flask.current_app.config['CONFIG_PATH']
removed = False
for _ in os.listdir(config_path):
if os.path.isfile(os.path.join(config_path, _)):
if _.startswith(name):
os.remove(os.path.join(config_path, _))
removed = not os.path.exists(os.path.join(config_path, _))
break
if removed:
return flask.jsonify({'success': True}), 200
else:
return flask.jsonify({'success': False}), 400
@api.route('/domain/<name>', methods=['PUT'])
def put_domain(name: str):
"""
Updates the configuration file with the corresponding domain name.
:param name: The domain name that corresponds to the name of the file.
:type name: str
:return: Returns a status about the success or failure of the action.
"""
content = flask.request.get_json()
config_path = flask.current_app.config['CONFIG_PATH']
for _ in os.listdir(config_path):
if os.path.isfile(os.path.join(config_path, _)):
if _.startswith(name):
with io.open(os.path.join(config_path, _), 'w') as f:
f.write(content['file'])
return flask.make_response({'success': True}), 200
@api.route('/domain/<name>/enable', methods=['POST'])
def enable_domain(name: str):
"""
Activates the domain in Nginx so that the configuration is applied.
:param name: The domain name that corresponds to the name of the file.
:type name: str
:return: Returns a status about the success or failure of the action.
"""
content = flask.request.get_json()
config_path = flask.current_app.config['CONFIG_PATH']
for _ in os.listdir(config_path):
if os.path.isfile(os.path.join(config_path, _)):
if _.startswith(name):
if content['enable']:
new_filename, disable = _.rsplit('.', 1)
os.rename(os.path.join(config_path, _), os.path.join(config_path, new_filename))
else:
os.rename(os.path.join(config_path, _), os.path.join(config_path, _ + '.disabled'))
return flask.make_response({'success': True}), 200