-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserver.js
More file actions
235 lines (200 loc) · 6.22 KB
/
Copy pathserver.js
File metadata and controls
235 lines (200 loc) · 6.22 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
// server.js
const express = require("express");
const serveStatic = require("serve-static");
const history = require("./customHistory");
const winston = require("winston");
const { combine, timestamp, json, errors } = winston.format;
const morgan = require("morgan");
const rateLimit = require("express-rate-limit");
const { LoggingWinston } = require("@google-cloud/logging-winston");
const { redactApiKey, getObfuscatedIP } = require("./utils");
const app = express();
// =======================
// Logger Configuration
// =======================
if (!process.env.GCP_PROJECT_ID) {
throw new Error("GCP_PROJECT_ID is not set, exiting");
}
if (!process.env.GCP_PRIVATE_KEY) {
throw new Error("GCP_PRIVATE_KEY is not set, exiting");
}
if (!process.env.GCP_CLIENT_EMAIL) {
throw new Error("GCP_CLIENT_EMAIL is not set, exiting");
}
const loadPkey = () => {
let pkey = Buffer.from(process.env.GCP_PRIVATE_KEY, "base64").toString(
"utf-8"
);
// Trim off any double quotes that may be present in the private key
// and replace escaped newline characters with actual newlines
pkey = pkey.replace(/\\n/g, "\n");
pkey = pkey.replace(/"/g, "");
return pkey;
};
const gcpTransport = new LoggingWinston({
projectId: process.env.GCP_PROJECT_ID,
credentials: {
client_email: process.env.GCP_CLIENT_EMAIL,
private_key: loadPkey(),
},
});
const globalFormat = combine(
errors({ stack: true }), // Capture stack traces for errors
timestamp() // Add timestamps to logs
);
const logger = winston.createLogger({
level: process.env.LOG_LEVEL || "info",
format: globalFormat,
transports: [
// Console transport with JSON formatting for readability
new winston.transports.Console({
handleExceptions: true,
format: combine(globalFormat, json()),
}),
gcpTransport,
],
exitOnError: false, // Do not exit on handled exceptions
});
logger.stream = { write: (message) => logger.info(message.trim()) };
// =======================
// Body Parser & Request Logging
// =======================
app.use(express.json({ limit: "10kb" }));
app.use(morgan("combined", { stream: logger.stream }));
// =======================
// Rate Limiting
// =======================
// Can't exceed 100 logger requests within 1 minute
const logLimiter = rateLimit({
windowMs: 1 * 60 * 1000,
max: 100,
message: {
status: 429,
error: "Too many logging requests from this IP, please try again after 1 minutes.",
},
standardHeaders: true,
legacyHeaders: false,
});
// =======================
// Log Endpoint
// =======================
app.post("/log", logLimiter, (req, res) => {
const { action, user, appId, apiKey, status, responseSize } = req.body;
if (!action || !appId || !apiKey || !status) {
logger.warn("Incomplete log data received", {
receivedData: JSON.stringify(req.body),
ip: getObfuscatedIP(req),
timestamp: new Date().toISOString(),
});
return res.status(400).json({ error: "Incomplete log data" });
}
const logMessage = {
action,
user,
appId,
apiKey: redactApiKey(apiKey),
status,
userAgent: req.headers["user-agent"] || "Unknown",
ip: getObfuscatedIP(req),
...(responseSize && { responseSize }),
};
logger.info(
`[${appId}] - ${user || "UNKNOWN"} performed ${action}`,
logMessage
);
res.status(200).json({ message: "Log received" });
});
// =======================
// HTTPS Enforcement Middleware
// =======================
app.use((req, res, next) => {
if (
process.env.NODE_ENV === "production" &&
req.headers["x-forwarded-proto"] !== "https" &&
!req.secure
) {
logger.info("Redirecting to HTTPS", {
host: req.headers.host,
url: req.url,
ip: getObfuscatedIP(req),
timestamp: new Date().toISOString(),
});
const validDomains = [
process.env.TOOLS_ENDPOINT,
process.env.TOOLS_INTERNAL_ENDPOINT,
];
// Match the domain of the request header to the host and use the valid domain
const requestedDomain = validDomains.find((domain) => {
return req.headers.host.includes(domain);
});
// We intentionally exclude the url when upgrading to HTTPS to
// prevent XSS vulnerabilities
// see https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html#preventing-unvalidated-redirects-and-forwards
return res.redirect(
301,
`https://${
requestedDomain ||
process.env.TOOLS_ENDPOINT ||
"tools.algolia.com"
}`
);
}
next();
});
// =======================
// History API Fallback & Static Files
// =======================
app.use(
history({
rewrites: [
{
from: /^\/relevance-testing\/.*$/,
to: "/relevance-testing/index.html",
},
],
})
);
const apps = [
"css",
"apps",
"logs",
"metaparams",
"index-manager",
"relevance-testing",
"index-differ",
"index-analyzer",
"transform",
"insights-ui",
];
apps.forEach((appName) => {
app.use(
`/${appName}`,
serveStatic(__dirname + `/packages/${appName}/dist`)
);
});
// =======================
// Internal Tool Redirects
// =======================
const toolsInternalEndpoint =
process.env.TOOLS_INTERNAL_ENDPOINT || "http://127.0.0.1:8090";
app.use("/infra-watch", (req, res) =>
res.redirect(`${toolsInternalEndpoint}/infra-watch`)
);
app.use("/index-size", (req, res) =>
res.redirect(`${toolsInternalEndpoint}/index-size`)
);
app.use("/dictionaries", (req, res) =>
res.redirect(`${toolsInternalEndpoint}/dictionaries`)
);
app.use((req, res) => {
res.redirect(`${process.env.TOOLS_ENDPOINT || ""}/apps`);
});
// =======================
// Start the Server
// =======================
const port = process.env.PORT || 80;
app.listen(port, () => {
logger.info(`Server started on http://localhost:${port}`, {
timestamp: new Date().toISOString(),
});
});