blob: 416e7f458116c87eaee7f6bb75a4c9379c6484ea (
plain)
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
|
import re
import time
from http.server import BaseHTTPRequestHandler
import httpServerLib
pnfs = 'Empty'
class AAISetup(BaseHTTPRequestHandler):
def do_PUT(self):
if re.search('/set_pnfs', self.path):
global pnfs
content_length = int(self.headers['Content-Length'])
pnfs = self.rfile.read(content_length)
httpServerLib.header_200_and_json(self)
return
def do_POST(self):
if re.search('/reset', self.path):
global pnfs
pnfs = 'Empty'
httpServerLib.header_200_and_json(self)
return
class AAIHandler(BaseHTTPRequestHandler):
def do_PATCH(self):
pnfs_name = '/aai/v12/network/pnfs/pnf/' + pnfs.decode()
if re.search('wrong_aai_record', self.path):
self.send_response(400)
self.end_headers()
elif re.search(pnfs_name, self.path):
self.send_response(200)
self.end_headers()
return
def _main_(handler_class=AAIHandler, protocol="HTTP/1.0"):
handler_class.protocol_version = protocol
httpServerLib.start_http_endpoint(3333, AAIHandler)
httpServerLib.start_https_endpoint(3334, AAIHandler)
httpServerLib.start_http_endpoint(3335, AAISetup)
while 1:
time.sleep(10)
if __name__ == '__main__':
_main_()
|