blob: c3be0069bdc5da0143a0d5004d1c1cb345ac679d (
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
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
|
#
# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the
# Free Software Foundation, version 3.
#
import email
from io import StringIO
import json
class HTTPParser:
def __init__(self):
self.requestLine = None
self.headersAlone = None
self.headers = None
self.host = None
self.contentType = None
self.contentLen = None
self.operation = None
self.URI = None
self.cmd = None
self.partition = None
self.disk = None
self.cache = None
self.cache_size = None
self.partition_setup = None
self.name = None
self.repo = None
self.type = None
self.profile = None
self.id = None
self.echo = None
def parser(self,data):
self.requestLine, self.headersAlone = data.split('\n', 1)
self.headers = email.message_from_file(StringIO(self.headersAlone))
if 'Host' in self.headers.keys():
self.host = self.headers['Host']
if 'Content-Type' in self.headers.keys():
self.contentType = self.headers['Content-Type']
if 'Content-Length' in self.headers.keys():
self.contentLen = int(self.headers['Content-Length'])
if (not self.requestLine == None or not self.requestLine == ''):
self.operation = self.requestLine.split('/', 1)[0]
self.URI = self.requestLine.split('/', 1)[1]
if not self.contentLen == 0:
msgs = self.headersAlone.rstrip().split('\n')
cmd = msgs[len(msgs) - 1]
try:
jsoncmd = json.loads(cmd)
except ValueError as e:
print ("Error: Json message incomplete")
return
if "run" in cmd:
self.cmd = jsoncmd["run"]
try:
self.echo = jsoncmd["echo"]
except:
pass
if "disk" in cmd:
self.disk = jsoncmd["disk"]
if "partition" in cmd:
if not "partition_setup" in cmd:
self.partition = jsoncmd["partition"]
if "cache" in cmd:
self.cache = jsoncmd["cache"]
if "cache_size" in cmd:
self.cache_size = jsoncmd["cache_size"]
if "partition_setup" in cmd:
self.partition_setup = jsoncmd["partition_setup"]
if "name" in cmd:
self.name = jsoncmd["name"]
if "repository" in cmd:
self.repo = jsoncmd["repository"]
if "type" in cmd:
self.type = jsoncmd["type"]
if "profile" in cmd:
self.profile = jsoncmd["profile"]
if "id" in cmd:
self.id = jsoncmd["id"]
def getHeaderLine(self):
return self.headersAlone
def getRequestLine(self):
return self.requestLine
def getHeaderParsed(self):
return self.headers
def getHost(self):
return self.host
def getContentType(self):
return self.contentType
def getContentLen(self):
return self.contentLen
def getRequestOP(self):
return self.operation
def getURI(self):
return self.URI
def getCMD(self):
return self.cmd
def getDisk(self):
return self.disk
def getPartition(self):
return self.partition
def getCache(self):
return self.cache
def getCacheSize(self):
return self.cache_size
def getPartitionSetup(self):
return self.partition_setup
def getName(self):
return self.name
def getRepo(self):
return self.repo
def getType(self):
return self.type
def getProfile(self):
return self.profile
def getId(self):
return self.id
def getEcho(self):
return self.echo
|