rustyx 0.2.0

A Rust web framework inspired by ExpressJS with ORM support for MongoDB, MySQL, SQLite, and PostgreSQL
Documentation
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# 📁 File Upload Guide


RustyX provides a powerful file upload module similar to Express's Multer.

## Table of Contents


- [Quick Start]#quick-start
- [Configuration]#configuration
- [Single File Upload]#single-file-upload
- [Multiple File Upload]#multiple-file-upload
- [File Validation]#file-validation
- [Storage Options]#storage-options
- [File Naming]#file-naming
- [Error Handling]#error-handling
- [Complete Example]#complete-example

---

## Quick Start


```rust
use rustyx::prelude::*;

// Create an uploader
let uploader = Uploader::new(
    UploadConfig::new()
        .destination("./uploads")
        .max_file_size_mb(5)
        .allowed_extensions(vec!["png", "jpg", "pdf"])
);

// Use in route handler
app.post("/upload", move |req, res| {
    let uploader = uploader.clone();
    async move {
        // Parse multipart form data
        let content_type = req.content_type().unwrap_or_default();
        let boundary = parse_boundary(&content_type).unwrap();
        let fields = parse_multipart(req.body(), &boundary).unwrap();
        
        // Upload file
        for field in fields {
            if let Some(filename) = field.filename {
                let result = uploader.upload_single(
                    &field.name,
                    field.data,
                    &filename,
                    &field.content_type.unwrap_or_default()
                ).await;
                
                match result {
                    Ok(file) => return res.json(json!({ "file": file.filename })),
                    Err(e) => return res.bad_request(&e.to_string())
                }
            }
        }
        res.bad_request("No file provided")
    }
});
```

---

## Configuration


### UploadConfig Options


```rust
UploadConfig::new()
    // Storage
    .destination("./uploads")     // Upload directory
    .memory()                     // Use memory instead of disk
    
    // Size limits
    .max_file_size(5 * 1024 * 1024)  // 5MB in bytes
    .max_file_size_mb(5)              // 5MB (shorthand)
    .max_files(10)                    // Max files per request
    
    // Allowed types
    .allowed_types(vec![
        "image/png",
        "image/jpeg",
        "application/pdf"
    ])
    .allowed_extensions(vec!["png", "jpg", "pdf"])
    
    // Presets
    .images_only()      // PNG, JPG, JPEG, GIF, WebP, SVG
    .documents_only()   // PDF, DOC, DOCX, XLS, XLSX, TXT
    
    // Naming
    .keep_original_name()  // Use original filename
    .use_uuid()            // UUID with extension (default)
```

---

## Single File Upload


### Basic Upload


```rust
let uploader = Uploader::disk("./uploads");

app.post("/upload", move |req, res| {
    let uploader = uploader.clone();
    async move {
        let content_type = req.content_type().unwrap_or_default();
        let boundary = parse_boundary(&content_type).unwrap();
        let fields = parse_multipart(req.body(), &boundary)?;
        
        for field in fields {
            if field.name == "file" {
                if let Some(filename) = field.filename {
                    let file = uploader.upload_single(
                        "file",
                        field.data,
                        &filename,
                        &field.content_type.unwrap_or_default()
                    ).await?;
                    
                    return res.json(json!({
                        "filename": file.filename,
                        "size": file.size,
                        "path": file.path.to_string_lossy()
                    }));
                }
            }
        }
        res.bad_request("No file")
    }
});
```

### UploadedFile Properties


| Property | Type | Description |
|----------|------|-------------|
| `original_name` | `String` | Original filename from client |
| `filename` | `String` | Saved filename (may be UUID) |
| `path` | `PathBuf` | Full path to saved file |
| `mimetype` | `String` | MIME type |
| `size` | `usize` | File size in bytes |
| `field_name` | `String` | Form field name |
| `extension` | `String` | File extension |

---

## Multiple File Upload


```rust
let uploader = Uploader::new(
    UploadConfig::new()
        .destination("./uploads")
        .max_files(5)
        .images_only()
);

app.post("/upload-multiple", move |req, res| {
    let uploader = uploader.clone();
    async move {
        let boundary = parse_boundary(req.content_type().unwrap_or_default()).unwrap();
        let fields = parse_multipart(req.body(), &boundary)?;
        
        // Collect all files
        let mut files_data = Vec::new();
        for field in fields {
            if let Some(filename) = field.filename {
                files_data.push((
                    field.name,
                    field.data,
                    filename,
                    field.content_type.unwrap_or_default()
                ));
            }
        }
        
        let files = uploader.upload_multiple(files_data).await?;
        
        res.json(json!({
            "count": files.len(),
            "files": files.iter().map(|f| f.filename.clone()).collect::<Vec<_>>()
        }))
    }
});
```

---

## File Validation


### By MIME Type


```rust
let uploader = Uploader::new(
    UploadConfig::new()
        .allowed_types(vec![
            "image/png",
            "image/jpeg",
            "image/gif",
            "application/pdf"
        ])
);
```

### By Extension


```rust
let uploader = Uploader::new(
    UploadConfig::new()
        .allowed_extensions(vec!["png", "jpg", "jpeg", "pdf", "doc"])
);
```

### Presets


```rust
// Images only (PNG, JPG, JPEG, GIF, WebP, SVG)
.images_only()

// Documents only (PDF, DOC, DOCX, XLS, XLSX, TXT)
.documents_only()
```

### Size Limits


```rust
.max_file_size(10 * 1024 * 1024)  // 10MB in bytes
.max_file_size_mb(10)              // 10MB shorthand
```

---

## Storage Options


### Disk Storage (Default)


```rust
let uploader = Uploader::new(
    UploadConfig::new()
        .destination("./uploads")
);

// Or simply:
let uploader = Uploader::disk("./uploads");
```

### Memory Storage


```rust
let uploader = Uploader::new(
    UploadConfig::new()
        .memory()
);

// Or simply:
let uploader = Uploader::memory();
```

---

## File Naming


### UUID (Default)


Files are saved with UUID names: `550e8400-e29b-41d4-a716-446655440000.png`

```rust
.use_uuid()
```

### Original Name


Keep the original filename:

```rust
.keep_original_name()
```

### Timestamp


Use timestamp as filename:

```rust
.naming(FileNaming::TimestampWithExtension)
// Result: 1703894400000.png
```

### Custom Prefix


Use custom prefix with UUID:

```rust
.naming(FileNaming::CustomPrefix("avatar".to_string()))
// Result: avatar_550e8400-e29b-41d4-a716-446655440000.png
```

---

## Error Handling


### Upload Errors


```rust
pub enum UploadError {
    FileTooLarge { max: usize, actual: usize },
    TypeNotAllowed { mimetype: String },
    ExtensionNotAllowed { extension: String },
    TooManyFiles { max: usize, actual: usize },
    NoFile,
    FieldNotFound { field: String },
    IoError(String),
    ParseError(String),
}
```

### Handling Errors


```rust
match uploader.upload_single(...).await {
    Ok(file) => {
        res.json(json!({ "success": true, "file": file.filename }))
    }
    Err(UploadError::FileTooLarge { max, actual }) => {
        res.bad_request(&format!("File too large: {} bytes (max: {})", actual, max))
    }
    Err(UploadError::TypeNotAllowed { mimetype }) => {
        res.bad_request(&format!("File type not allowed: {}", mimetype))
    }
    Err(e) => {
        res.bad_request(&e.to_string())
    }
}
```

---

## Complete Example


```rust
use rustyx::prelude::*;

#[tokio::main]

async fn main() -> Result<()> {
    let app = RustyX::new();
    
    // Image uploader
    let image_uploader = Uploader::new(
        UploadConfig::new()
            .destination("./uploads/images")
            .images_only()
            .max_file_size_mb(5)
    );
    
    // Document uploader
    let doc_uploader = Uploader::new(
        UploadConfig::new()
            .destination("./uploads/docs")
            .documents_only()
            .max_file_size_mb(20)
    );

    // Upload image
    app.post("/upload/image", move |req, res| {
        let uploader = image_uploader.clone();
        async move {
            // ... upload logic
        }
    });
    
    // Upload document
    app.post("/upload/document", move |req, res| {
        let uploader = doc_uploader.clone();
        async move {
            // ... upload logic
        }
    });

    app.listen(3000).await
}
```

---

## Testing with cURL


### Single File


```bash
curl -X POST http://localhost:3000/upload \
  -F "file=@/path/to/image.png"
```

### Multiple Files


```bash
curl -X POST http://localhost:3000/upload-multiple \
  -F "files=@image1.png" \
  -F "files=@image2.jpg" \
  -F "files=@document.pdf"
```

---

## Helper Functions


### Get MIME Type


```rust
use rustyx::upload::get_mime_type;

let mime = get_mime_type("png");  // "image/png"
let mime = get_mime_type("pdf");  // "application/pdf"
```

### Check File Type


```rust
use rustyx::upload::{is_image, is_document, is_video, is_audio};

is_image("image/png");      // true
is_document("application/pdf");  // true
is_video("video/mp4");      // true
is_audio("audio/mp3");      // true
```

### Parse Boundary


```rust
let content_type = "multipart/form-data; boundary=----WebKitFormBoundary";
let boundary = parse_boundary(content_type);
// Some("----WebKitFormBoundary")
```

---

## Best Practices


1. **Always validate file types** - Use `allowed_types` or `allowed_extensions`
2. **Set size limits** - Prevent large file uploads
3. **Use UUID naming** - Prevents filename conflicts
4. **Create separate uploaders** - Different configs for images vs documents
5. **Handle errors gracefully** - Return meaningful error messages

---

## Next Steps


- [Middleware Guide]./MIDDLEWARE.md
- [API Reference]./API.md
- [Deployment Guide]./DEPLOYMENT.md