-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
329 lines (300 loc) · 10.5 KB
/
Copy pathindex.js
File metadata and controls
329 lines (300 loc) · 10.5 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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
#!/usr/bin/env node
import chalk from 'chalk';
import inquirer from 'inquirer';
import clear from 'clear';
import fs from 'fs';
import path from 'path';
import axios from 'axios';
import FormData from 'form-data';
import dotenv from 'dotenv';
import os from 'os';
// Constants
const API_URL = 'https://filesharingcli-production.up.railway.app';
const DOWNLOAD_DIR = path.join(os.homedir(), 'Downloads', 'cfileshare');
const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5 MB in bytes
// Create downloads directory if it doesn't exist
try {
if (!fs.existsSync(DOWNLOAD_DIR)) {
fs.mkdirSync(DOWNLOAD_DIR, { recursive: true });
}
} catch (error) {
console.error(styles.error(`\nError creating downloads directory: ${error.message}`));
process.exit(1);
}
// Simple styles
const styles = {
title: chalk.cyan.bold,
error: chalk.red,
success: chalk.green,
info: chalk.cyan,
menu: chalk.white,
endpoint: chalk.magenta.italic,
};
// Box characters
const box = {
topLeft: '╭',
topRight: '╮',
bottomLeft: '╰',
bottomRight: '╯',
horizontal: '─',
vertical: '│',
};
// Show header
function showHeader() {
clear();
console.log(styles.title('\n CShare - Secure File Sharing\n'));
}
// Main menu
async function showMainMenu() {
showHeader();
const { option } = await inquirer.prompt([
{
type: 'list',
name: 'option',
message: 'Select an option:',
choices: [
'📂 Access Endpoint',
'✨ Create Endpoint',
'🚪 Exit'
]
}
]);
switch (option) {
case '📂 Access Endpoint':
await accessEndpoint();
break;
case '✨ Create Endpoint':
await createEndpoint();
break;
case '🚪 Exit':
process.exit(0);
}
}
// Access endpoint
async function accessEndpoint() {
showHeader();
try {
const { endpointName, password } = await inquirer.prompt([
{
type: 'input',
name: 'endpointName',
message: 'Endpoint name:',
},
{
type: 'password',
name: 'password',
message: 'Password:',
mask: '*'
}
]);
console.log(styles.info('\nAccessing endpoint...'));
try {
const response = await axios.get(`${API_URL}/site/${endpointName}`, { params: { password } });
if (response.data.auth_token) {
fs.writeFileSync('.env', `auth_token=${response.data.auth_token}`);
await showFileManager(endpointName, response.data.files || [], password);
}
} catch (error) {
if (error.response) {
// Handle specific error codes
switch (error.response.status) {
case 404:
console.log(styles.error('\n❌ Error: Endpoint not found'));
break;
case 401:
console.log(styles.error('\n❌ Error: Invalid password'));
break;
default:
console.log(styles.error(`\n❌ Error: ${error.response.data.error || 'Unknown error'}`));
}
} else if (error.request) {
console.log(styles.error('\n❌ Error: Server not responding. Is the server running?'));
} else {
console.log(styles.error(`\n❌ Error: ${error.message}`));
}
await new Promise(resolve => setTimeout(resolve, 2000));
await showMainMenu();
}
} catch (error) {
console.log(styles.error(`\n❌ Error: ${error.message}`));
await new Promise(resolve => setTimeout(resolve, 2000));
await showMainMenu();
}
}
// Create endpoint
async function createEndpoint() {
showHeader();
try {
const { endpointName, password } = await inquirer.prompt([
{
type: 'input',
name: 'endpointName',
message: 'New endpoint name:',
},
{
type: 'password',
name: 'password',
message: 'Set password:',
mask: '*'
}
]);
console.log(styles.info('\nCreating endpoint...'));
try {
const response = await axios.post(`${API_URL}/createsite`, {
site_name: endpointName,
password: password,
});
if (response.data.auth_token) {
fs.writeFileSync('.env', `auth_token=${response.data.auth_token}`);
console.log(styles.success('\n✨ Endpoint created successfully!'));
}
await showMainMenu();
} catch (error) {
if (error.response) {
// Server responded with error
const errorMessage = error.response.data.error || error.response.data.message || 'Unknown error';
console.log(styles.error(`\n❌ Error: ${errorMessage}`));
} else if (error.request) {
// Request made but no response
console.log(styles.error('\n❌ Error: Server not responding. Is the server running?'));
} else {
// Other errors
console.log(styles.error(`\n❌ Error: ${error.message}`));
}
await new Promise(resolve => setTimeout(resolve, 2000));
await showMainMenu();
}
} catch (error) {
console.log(styles.error(`\n❌ Error: ${error.message}`));
await new Promise(resolve => setTimeout(resolve, 2000));
await showMainMenu();
}
}
// File manager
async function showFileManager(endpointName, files, password) {
showHeader();
console.log(styles.info(`\nEndpoint: ${endpointName}`));
console.log(styles.endpoint(`GET /site/${endpointName}\n`));
if (files.length === 0) {
console.log('No files found\n');
} else {
files.forEach((file, index) => {
console.log(`${index + 1}. 📄 ${file.file_name}`);
});
console.log();
}
const { action } = await inquirer.prompt([
{
type: 'list',
name: 'action',
message: 'Choose action:',
choices: [
'📤 Upload File',
'📥 Download File',
'🔙 Back to Menu'
]
}
]);
switch (action) {
case '📤 Upload File':
await uploadFile(endpointName, password);
break;
case '📥 Download File':
if (files.length > 0) {
await downloadFile(endpointName, files, password);
} else {
console.log(styles.info('\nNo files to download'));
await showFileManager(endpointName, files, password);
}
break;
case '🔙 Back to Menu':
await showMainMenu();
break;
}
}
// Upload file
async function uploadFile(endpointName, password) {
try {
const { filePath } = await inquirer.prompt([
{
type: 'input',
name: 'filePath',
message: '📂 Enter file path or drag & drop file here:',
validate: input => {
input = input.trim().replace(/["']/g, '');
if (!input) return 'File path is required';
if (!fs.existsSync(input)) return 'File does not exist';
// Check file size
const stats = fs.statSync(input);
if (stats.size > MAX_FILE_SIZE) {
return 'File size exceeds maximum limit of 5MB';
}
return true;
},
filter: input => input.trim().replace(/["']/g, '')
}
]);
const formData = new FormData();
formData.append('file', fs.createReadStream(filePath));
const authToken = dotenv.parse(fs.readFileSync('.env')).auth_token;
console.log(styles.info('\n📤 Uploading file...'));
await axios.post(
`${API_URL}/upload/${endpointName}`,
formData,
{
headers: {
...formData.getHeaders(),
Authorization: authToken,
}
}
);
console.log(styles.success('\n✨ File uploaded successfully!'));
const siteResponse = await axios.get(
`${API_URL}/site/${endpointName}`,
{ params: { password } }
);
await showFileManager(endpointName, siteResponse.data.files || [], password);
} catch (error) {
if (error.response?.data?.error) {
console.log(styles.error(`\n❌ Error: ${error.response.data.error}`));
} else {
console.log(styles.error(`\n❌ Error: ${error.message}`));
}
await showFileManager(endpointName, [], password);
}
}
// Download file
async function downloadFile(endpointName, files, password) {
try {
const { fileIndex } = await inquirer.prompt([
{
type: 'list',
name: 'fileIndex',
message: 'Select file to download:',
choices: files.map((file, index) => ({
name: file.file_name,
value: index
}))
}
]);
const selectedFile = files[fileIndex];
const authToken = dotenv.parse(fs.readFileSync('.env')).auth_token;
console.log(styles.info('\nDownloading file...'));
const response = await axios.get(
`${API_URL}/getfile/${selectedFile.id}`,
{
headers: { Authorization: authToken },
responseType: 'arraybuffer'
}
);
const downloadPath = path.join(DOWNLOAD_DIR, selectedFile.file_name);
fs.writeFileSync(downloadPath, response.data);
console.log(styles.success(`\n✨ File downloaded to: ${downloadPath}`));
await showFileManager(endpointName, files, password);
} catch (error) {
console.log(styles.error(`\n❌ Error: ${error.response?.data?.error || error.message}`));
await showFileManager(endpointName, files, password);
}
}
// Start the application
showMainMenu().catch(error => console.error(styles.error('Error:', error)));