-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdateDocument.js
53 lines (42 loc) · 1.53 KB
/
updateDocument.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
const { MongoClient, ObjectId } = require('mongodb');
const url = 'mongodb://127.0.0.1:27017';
const client = new MongoClient(url);
const namaDatabase = 'task-manager';
async function main() {
try {
await client.connect();
console.log('Berhasil terhubung ke MongoDB database server');
const db = client.db(namaDatabase);
const collection = db.collection('pengguna');
// Ambil semua data dari koleksi pengguna
const pengguna = await collection.find().toArray();
// Simpan nama dan usia yang sudah ditemukan untuk memastikan keunikan
const namaSet = new Set();
const usiaSet = new Set();
// Proses setiap dokumen
for (const user of pengguna) {
let { nama, usia } = user;
// Pastikan nama unik
while (namaSet.has(nama)) {
nama += '_1'; // Tambahkan suffix untuk memastikan keunikan
}
namaSet.add(nama);
// Pastikan usia unik
while (usiaSet.has(usia)) {
usia += 1; // Tambahkan 1 untuk memastikan keunikan
}
usiaSet.add(usia);
// Perbarui dokumen di database
await collection.updateOne(
{ _id: new ObjectId(user._id) },
{ $set: { nama, usia } }
);
}
console.log('Semua data telah diperbarui dan dibuat unik.');
} catch (error) {
console.error('Terjadi kesalahan:', error);
} finally {
client.close();
}
}
main();