-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
293 lines (266 loc) · 7.94 KB
/
server.js
File metadata and controls
293 lines (266 loc) · 7.94 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
292
293
const express = require("express");
const multer = require("multer");
const fs = require("fs");
const path = require("path");
const os = require("os");
const app = express();
const PORT = 3000;
const UPLOAD_DIR = path.join(__dirname, "uploads");
// Create upload directory
if (!fs.existsSync(UPLOAD_DIR)) {
fs.mkdirSync(UPLOAD_DIR, { recursive: true });
}
// Configure multer for file uploads
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, UPLOAD_DIR);
},
filename: (req, file, cb) => {
cb(null, file.originalname);
},
});
const upload = multer({ storage });
// Get local IP address
function getLocalIP() {
const interfaces = os.networkInterfaces();
for (let iface of Object.values(interfaces)) {
for (let alias of iface) {
if (alias.family === "IPv4" && !alias.internal) {
return alias.address;
}
}
}
return "localhost";
}
// Serve HTML interface
app.get("/", (req, res) => {
res.send(`
<!DOCTYPE html>
<html>
<head>
<title>File Server</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: #f5f5f5;
}
.container {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 { color: #333; }
h2 { color: #666; margin-top: 30px; }
.upload-form {
border: 2px dashed #ccc;
padding: 20px;
border-radius: 5px;
text-align: center;
}
input[type="file"] {
margin: 10px 0;
}
button {
background: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background: #45a049;
}
.file-list {
margin-top: 20px;
}
.file-item {
background: #f9f9f9;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.file-info {
flex: 1;
}
.file-name {
font-weight: bold;
color: #333;
}
.file-size {
color: #666;
font-size: 14px;
}
.download-btn {
background: #2196F3;
padding: 8px 15px;
text-decoration: none;
color: white;
border-radius: 5px;
}
.download-btn:hover {
background: #0b7dda;
}
.status {
padding: 10px;
margin: 10px 0;
border-radius: 5px;
}
.success {
background: #d4edda;
color: #155724;
}
.error {
background: #f8d7da;
color: #721c24;
}
</style>
</head>
<body>
<div class="container">
<h1>📁 Network File Server</h1>
<h2>Upload Files</h2>
<div class="upload-form">
<form id="uploadForm" enctype="multipart/form-data">
<input type="file" name="file" id="fileInput" required>
<br>
<button type="submit">Upload File</button>
</form>
<div id="status"></div>
</div>
<h2>Available Files</h2>
<div class="file-list" id="fileList">
Loading files...
</div>
</div>
<script>
// Upload file
document.getElementById('uploadForm').addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData();
const fileInput = document.getElementById('fileInput');
formData.append('file', fileInput.files[0]);
const status = document.getElementById('status');
status.innerHTML = 'Uploading...';
try {
const response = await fetch('/upload', {
method: 'POST',
body: formData
});
const result = await response.json();
if (response.ok) {
status.className = 'status success';
status.innerHTML = '✓ ' + result.message;
fileInput.value = '';
loadFiles();
} else {
status.className = 'status error';
status.innerHTML = '✗ ' + result.message;
}
} catch (error) {
status.className = 'status error';
status.innerHTML = '✗ Upload failed';
}
});
// Load file list
async function loadFiles() {
try {
const response = await fetch('/list');
const files = await response.json();
const fileList = document.getElementById('fileList');
if (files.length === 0) {
fileList.innerHTML = '<p style="color: #999;">No files uploaded yet</p>';
return;
}
fileList.innerHTML = files.map(file => \`
<div class="file-item">
<div class="file-info">
<div class="file-name">\${file.name}</div>
<div class="file-size">\${formatSize(file.size)} • \${new Date(file.modified).toLocaleString()}</div>
</div>
<a href="/download/\${encodeURIComponent(file.name)}" class="download-btn" download>Download</a>
</div>
\`).join('');
} catch (error) {
document.getElementById('fileList').innerHTML = '<p style="color: red;">Error loading files</p>';
}
}
function formatSize(bytes) {
if (bytes < 1024) return bytes + ' B';
if (bytes < 1024 * 1024) return (bytes / 1024).toFixed(2) + ' KB';
return (bytes / (1024 * 1024)).toFixed(2) + ' MB';
}
// Load files on page load
loadFiles();
</script>
</body>
</html>
`);
});
// Upload route
app.post("/upload", upload.single("file"), (req, res) => {
if (!req.file) {
return res.status(400).json({ message: "No file uploaded" });
}
console.log(
`✓ File uploaded: ${req.file.originalname} (${req.file.size} bytes)`
);
res.json({
message: "File uploaded successfully",
filename: req.file.originalname,
});
});
// List all files
app.get("/list", (req, res) => {
fs.readdir(UPLOAD_DIR, (err, files) => {
if (err) {
return res.status(500).json({ message: "Error reading directory" });
}
const fileDetails = files.map((file) => {
const filePath = path.join(UPLOAD_DIR, file);
const stats = fs.statSync(filePath);
return {
name: file,
size: stats.size,
modified: stats.mtime,
};
});
res.json(fileDetails);
});
});
// Download route
app.get("/download/:filename", (req, res) => {
const filename = req.params.filename;
const filePath = path.join(UPLOAD_DIR, filename);
// Security check
if (!filePath.startsWith(UPLOAD_DIR)) {
return res.status(403).send("Access denied");
}
if (!fs.existsSync(filePath)) {
return res.status(404).send("File not found");
}
console.log(`✓ File downloaded: ${filename}`);
res.download(filePath);
});
// Start server
const localIP = getLocalIP();
app.listen(PORT, "0.0.0.0", () => {
console.log("=====================================");
console.log("Network File Server Started!");
console.log("=====================================");
console.log(`Local access: http://localhost:${PORT}`);
console.log(`Network access: http://${localIP}:${PORT}`);
console.log(`Upload folder: ${UPLOAD_DIR}`);
console.log("=====================================");
console.log("\nShare this address with others on your network:");
console.log(`👉 http://${localIP}:${PORT}`);
console.log("=====================================\n");
});