-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.model.js
76 lines (69 loc) · 2.39 KB
/
sample.model.js
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
import { ObjectId } from 'mongodb';
import { getDb } from '../common/mongoClient.js';
const sampleCollection = await (async () => {
const db = await getDb();
return db.collection('samples');
})(); // Immediately Invoked Function Expression (IIFE) for collection creation
// Function to create a new sample document
async function createSample(sampleData) {
try {
const result = await sampleCollection.insertOne(sampleData);
return result.insertedId; // Return the inserted document ID
} catch (error) {
console.error('Error creating sample:', error);
throw error; // Re-throw the error for handling in the controller
}
}
// Function to get all sample documents
async function getAllSamples() {
try {
const samples = await sampleCollection.find().toArray();
return samples;
} catch (error) {
console.error('Error getting samples:', error);
throw error; // Re-throw the error for handling in the controller
}
}
// Function to get a sample document by ID
async function getSampleById(id) {
try {
const sampleId = new ObjectId(id); // Convert string ID to ObjectId
const sample = await sampleCollection.findOne({ _id: sampleId });
return sample;
} catch (error) {
console.error('Error getting sample by ID:', error);
throw error; // Re-throw the error for handling in the controller
}
}
// Function to update a sample document by ID
async function updateSample(id, updatedData) {
try {
const sampleId = new ObjectId(id); // Convert string ID to ObjectId
const result = await sampleCollection.updateOne(
{ _id: sampleId },
{ $set: updatedData },
);
return result.modifiedCount; // Return the number of documents modified (should be 1)
} catch (error) {
console.error('Error updating sample:', error);
throw error; // Re-throw the error for handling in the controller
}
}
// Function to delete a sample document by ID
async function deleteSample(id) {
try {
const sampleId = new ObjectId(id); // Convert string ID to ObjectId
const result = await sampleCollection.deleteOne({ _id: sampleId });
return result.deletedCount; // Return the number of documents deleted (should be 1)
} catch (error) {
console.error('Error deleting sample:', error);
throw error; // Re-throw the error for handling in the controller
}
}
export {
createSample,
getAllSamples,
getSampleById,
updateSample,
deleteSample,
};