-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebRequestHandler.java
More file actions
291 lines (247 loc) · 9.25 KB
/
WebRequestHandler.java
File metadata and controls
291 lines (247 loc) · 9.25 KB
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import java.awt.Checkbox;
import java.io.*;
import java.net.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JScrollBar;
import org.w3c.dom.NamedNodeMap;
import serverCache.*;
class WebRequestHandler implements Runnable {
static boolean _DEBUG = true;
static int reqCount = 0;
//String WWW_ROOT;
Socket connSocket;
BufferedReader inFromClient;
DataOutputStream outToClient;
String ServerName;
String urlName;
String fileName;
File fileInfo;
int contentLength;
boolean lastModified;
String ModifiedSince;
String[] cgiArguments;
HashMap<String, String> NameMap;
SimpleDateFormat sdf = new SimpleDateFormat(
"EEE, dd MMM yyyy HH:mm:ss z", Locale.US);
ProcessBuilder pb = new ProcessBuilder();
public WebRequestHandler(Socket connectionSocket,
HashMap hm) throws Exception {
reqCount++;
//this.WWW_ROOT = WWW_ROOT;
NameMap = hm;
this.connSocket = connectionSocket;
inFromClient
= new BufferedReader(new InputStreamReader(connSocket.getInputStream()));
outToClient
= new DataOutputStream(connSocket.getOutputStream());
}
@Override
public void run(){
try {
processRequest();
} catch (ParseException ex) {
Logger.getLogger(WebRequestHandler.class.getName()).log(Level.SEVERE, null, ex);
}
}
public void processRequest() throws ParseException {
try {
mapURL2File();
if (fileInfo != null) {
if (lastModified) {
String lm = sdf.format(fileInfo.lastModified());
//outToClient.writeBytes("Last-Modified: "+lm+"\r\n");
Date time1 = sdf.parse(lm);
Date time2 = sdf.parse(ModifiedSince);
if (time1.after(time2)) {
outputResponseHeader();
outputResponseBody();
} else outputError(304, "Not modified since " + ModifiedSince);
} else {
outputResponseHeader();
outputResponseBody();
}
} // dod not handle error}
connSocket.close();
// outToClient.close();
} catch (Exception e) {
outputError(400, "Server error");
}
} // end of processARequest
private void mapURL2File() throws Exception {
cgiArguments = GetRequest();
if (cgiArguments == null) {
return; // NON FILE NAME SINCE FILE NAME IS A PART OF CGI
}
for (int i = 0; i < cgiArguments.length; i++) {
// DEBUG(cgiArguments[i]);
}
String ServerRootDic = null;
String Hostline = inFromClient.readLine();
String[] header = Hostline.split(" ");
if(header.length >1 && header[1] != null)
ServerRootDic = NameMap.get(header[1]);
if (_DEBUG) {
String line = inFromClient.readLine();
while (!line.equals("")) {
// DEBUG(line);
lastModified = ifModifiedSince(line);
if (lastModified) {
ModifiedSince = ModifiedSince(line);
}
line = inFromClient.readLine();
}
}
fileName = ServerRootDic + "/" + urlName;
// DEBUG("Map to File name: " + fileName);
fileInfo = new File(fileName);
if (!fileInfo.isFile()) {
outputError(404, "Not Found");
fileInfo = null;
}
}
// end mapURL2file
private void outputResponseHeader() throws Exception {
outToClient.writeBytes("HTTP/1.0 200 Document Follows\r\n");
outToClient.writeBytes("Set-Cookie: MyCool433Seq12345\r\n");
if (urlName.endsWith(".jpg")) {
outToClient.writeBytes("Content-Type: image/jpeg\r\n");
} else if (urlName.endsWith(".gif")) {
outToClient.writeBytes("Content-Type: image/gif\r\n");
} else if (urlName.endsWith(".html") || urlName.endsWith(".htm")) {
outToClient.writeBytes("Content-Type: text/html\r\n");
} else {
outToClient.writeBytes("Content-Type: text/plain\r\n");
}
if (lastModified) {
String lm = sdf.format(fileInfo.lastModified());
outToClient.writeBytes("Last-Modified: " + lm + "\r\n");
}
}
private String[] GetRequest() throws IOException {
String[] req = null;
String requestMessageLine = inFromClient.readLine();
// DEBUG("Request " + reqCount + ": " + requestMessageLine);
// process the request
String[] request = requestMessageLine.split("\\s");
if (request.length < 2 || !request[0].equals("GET")) {
outputError(500, "Bad request");
return req;
}
// parse URL to retrieve file name
String url = request[1];
req = url.split("[?&]");
urlName = req[0];
if (urlName.startsWith("/") == true) {
urlName = urlName.substring(1);
}
return req;
}
private byte[] GetCgiOutput() {
//DEBUG("read from cgi");
byte[] fileBytes = new byte[8 * 1024];
List<String> commands = new ArrayList<String>();
commands.add("python3");
commands.add(fileName); //???????????????
// commands.add("perl");
// commands.add("perl.cgi");
for (String arg : cgiArguments) {
//System.out.println(arg +" ....lalala");
commands.add(arg);
}
pb = new ProcessBuilder(commands);
Map<String, String> env = pb.environment();
// clear environment
env.entrySet().removeIf(entry -> ! entry.getKey().equals("PATH"));
// add environment variables
env.put("AUTH_TYPE", "");
env.put("CONTENT_TYPE", "GET");
env.put("CONTENT_LENGTH", "");
env.put("GATEWAY_INTERFACE", "CGI/1.0");
env.put("PATH_INFO", "");
env.put("PATH_TRANSLATED", "");
env.put("QUERY_STRING", ""); // TODO
env.put("REMOTE_ADDR", ""); // TODO client IP
env.put("REMOTE_HOST", "");
env.put("REMOTE_IDENT", "");
env.put("REMOTE_USER", "");
env.put("SCRIPT_NAME", fileName);
env.put("SERVER_NAME", "");
env.put("SERVER_PORT", ""); // TODO
env.put("SERVER_PROTOCOL", "HTTP/1.0");
env.put("SERVER_SOFTWARE", "Yale CS433/533 Demo Basic Web Server");
int size = 0;
pb.directory(fileInfo.getParentFile());
try {
Process p = pb.start();
InputStream fileStream = p.getInputStream();
size = fileStream.read(fileBytes);
} catch (IOException ex) {
}
return Arrays.copyOfRange(fileBytes, 0, size);
}
private byte[] GetFile( ) throws FileNotFoundException, IOException {
// check if cache contains the file~~~~~~~~~~~~~~~~~~~~~~~~
SynchronizedCache cache = ServerCacheSingleton.getInstance();
byte[] content = cache.get(fileName);
if (content != null) return content;
if (!fileInfo.canExecute()) {
int numOfBytes = (int) fileInfo.length();
content = new byte[numOfBytes];
//// // send file content
// if (cache.containsKey(fileName)) {
// fileInBytes = (byte[]) cache.get(fileName);
// DEBUG("read from hashmap");
// } else {
FileInputStream fileStream = new FileInputStream(fileName);
fileStream.read(content);
cache.tryPut(fileName, content);
fileStream.close();
// cache.put(fileName, fileInBytes);
// DEBUG("read from disk");
return content;
} else {
content = GetCgiOutput();
cache.tryPut(fileName, content);
return content;
}
}
private boolean ifModifiedSince(String request) {
//If-Modified-Since: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
String[] req = request.split("[ :]");
// System.out.println("If-Modified-Since test");
// System.out.println(req[0]);
return req[0].equals("If-Modified-Since");
}
private String ModifiedSince(String request) {
String date = request.replaceFirst("If-Modified-Since: ", "");
return date;
}
private void outputResponseBody() throws Exception {
byte[] fileInBytes = GetFile();
int numOfBytes = fileInBytes.length;
outToClient.writeBytes("Content-Length: " + numOfBytes + "\r\n");
outToClient.writeBytes("\r\n");
// byte[] fileInBytes = new byte[numOfBytes];
// // send file content
// if (cache.containsKey(fileName)) {
// fileInBytes = (byte[]) cache.get(fileName);
// DEBUG("read from hashmap");
// } else {
// FileInputStream fileStream = new FileInputStream(fileName);
// fileStream.read(fileInBytes);
// cache.put(fileName, fileInBytes);
// DEBUG("read from disk");
// }
outToClient.write(fileInBytes, 0, numOfBytes);
}
void outputError(int errCode, String errMsg) {
try {
outToClient.writeBytes("HTTP/1.0 " + errCode + " " + errMsg + "\r\n");
} catch (Exception e) {
}
}
}