-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
205 lines (180 loc) · 4.42 KB
/
main.go
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
package main
import (
"bufio"
"fmt"
"io"
"log"
"net"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
)
// IsAPIRequest checks if the given URI is an API request
func IsAPIRequest(uri string) bool {
return strings.HasPrefix(uri, "/api")
}
func fileExists(filename string) bool {
info, err := os.Stat(filename)
if os.IsNotExist(err) {
return false
}
return !info.IsDir()
}
func handleApis(req *Request) *Response {
resp := createTextResponse(200, "Request Path: "+req.Path)
return resp
}
func handleStaticFiles(req *Request) *Response {
if req.Method != "GET" {
return createTextResponse(500, "Not Implemented Yet!")
}
fileName := filepath.Join("./www", req.Path)
if !fileExists("./www/" + req.Path) {
return createTextResponse(404, "File Doesn't Exist")
}
content, err := os.ReadFile(fileName)
if err != nil {
return createTextResponse(500, "Error reading file")
}
return createFileResponse(200, content)
}
// Custom Request struct
type Request struct {
Method string
Path string
Header map[string]string
Body string // Added to hold the request body
}
// Custom Response struct
type Response struct {
StatusCode int
Status string
Header map[string]string
Body []byte
}
// Function to read a Request from a TCP connection
func readRequest(conn net.Conn) (*Request, error) {
reader := bufio.NewReader(conn)
line, err := reader.ReadString('\n')
if err != nil {
return nil, err
}
// Parse the request line
parts := strings.Fields(line)
if len(parts) < 2 {
return nil, fmt.Errorf("invalid request line")
}
method := parts[0]
path := parts[1]
header := make(map[string]string)
// Read headers
for {
line, err := reader.ReadString('\n')
if err != nil || line == "\r\n" {
break // End of headers
}
headerParts := strings.SplitN(line, ": ", 2)
if len(headerParts) == 2 {
header[headerParts[0]] = strings.TrimSpace(headerParts[1])
}
}
// Read the body if it's a POST request or has a body
var body string
if method == "POST" {
contentLength := header["Content-Length"]
if contentLength != "" {
length, err := strconv.Atoi(contentLength)
if err == nil && length > 0 {
bodyBytes := make([]byte, length)
_, err = io.ReadFull(reader, bodyBytes)
if err != nil {
return nil, err
}
body = string(bodyBytes)
}
}
}
return &Request{Method: method, Path: path, Header: header, Body: body}, nil
}
func createFileResponse(statusCode int, body []byte) *Response {
status := "OK"
if statusCode != 200 {
status = "Error"
}
contentType := http.DetectContentType(body)
log.Println("contentType", contentType)
return &Response{
StatusCode: statusCode,
Status: status,
Header: map[string]string{"Content-Type": contentType},
Body: body,
}
}
// Function to create a Response
func createTextResponse(statusCode int, body string) *Response {
status := "OK"
if statusCode != 200 {
status = "Error"
}
return &Response{
StatusCode: statusCode,
Status: status,
Header: map[string]string{"Content-Type": "text/plain"},
Body: []byte(body),
}
}
// Function to write a Response to a TCP connection
func writeResponse(conn net.Conn, resp *Response) error {
header := fmt.Sprintf("HTTP/1.1 %d %s\r\n", resp.StatusCode, resp.Status)
for key, value := range resp.Header {
header += fmt.Sprintf("%s: %s\r\n", key, value)
}
header += "\r\n"
serializedPayload := append([]byte(header), resp.Body...)
_, err := conn.Write(serializedPayload)
return err
}
// Handle individual connections
func handleConnection(conn net.Conn) {
defer conn.Close()
req, err := readRequest(conn)
if err != nil {
fmt.Println("Error reading request:", err)
return
}
fmt.Printf("Received request: %s %s\n", req.Method, req.Path)
if req.Method == "POST" {
fmt.Printf("Request Body: %s\n", req.Body)
}
// Create a response
var resp *Response
if IsAPIRequest(req.Path) {
resp = handleApis(req)
} else {
resp = handleStaticFiles(req)
}
err = writeResponse(conn, resp)
if err != nil {
fmt.Println("Error writing response:", err)
}
}
// Main function to start the server
func main() {
listener, err := net.Listen("tcp", ":8080")
if err != nil {
fmt.Println("Error starting server:", err)
return
}
defer listener.Close()
fmt.Println("Server is listening on port 8080...")
for {
conn, err := listener.Accept()
if err != nil {
fmt.Println("Error accepting connection:", err)
continue
}
go handleConnection(conn)
}
}