-
Notifications
You must be signed in to change notification settings - Fork 0
/
fillPhotos.js
120 lines (112 loc) · 2.79 KB
/
fillPhotos.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
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
// imageUtils.js
const fs = require('fs'); // For reading image files
const Product = require('./models/product'); // Your Product model
require('dotenv').config()
const connectDB = require('./db/connect');
let path = require('path')
//Update schema
let ids = [
{
"_id": "6644d6d27c0081202c14469c"
},
{
"_id": "6644d6d27c0081202c144694"
},
{
"_id": "6644d6d27c0081202c14468e"
},
{
"_id": "6644d6d27c0081202c14469a"
},
{
"_id": "6644d6d27c0081202c144696"
},
{
"_id": "6644d6d27c0081202c144692"
},
{
"_id": "6644d6d27c0081202c14469d"
},
{
"_id": "6644d6d27c0081202c14468b"
},
{
"_id": "6644d6d27c0081202c144695"
},
{
"_id": "6644d6d27c0081202c14468f"
},
{
"_id": "6644d6d27c0081202c144699"
},
{
"_id": "6644d6d27c0081202c144697"
},
{
"_id": "6644d6d27c0081202c144691"
},
{
"_id": "6644d6d27c0081202c14469b"
},
{
"_id": "6644d6d27c0081202c14468d"
},
{
"_id": "6644d6d27c0081202c144693"
},
{
"_id": "6644d6d27c0081202c14468a"
},
{
"_id": "6644d6d27c0081202c14468c"
},
{
"_id": "6644d6d27c0081202c144690"
},
{
"_id": "6644d6d27c0081202c144698"
}
]
// Save image data to a specific product document
async function saveImageToProduct(productId, imageFilePath) {
try {
await connectDB(process.env.MONGO_URI)
const imageBuffer = fs.readFileSync(imageFilePath);
const product = await Product.findById(productId);
if (!product) {
throw new Error('Product not found');
}
product.image = imageBuffer;
await product.save();
console.log('Image saved successfully for product:', product.name);
} catch (error) {
console.error('Error saving image:', error.message);
}
}
// Retrieve image data for a specific product
async function getImageForProduct(productId) {
try {
const product = await Product.findById(productId);
if (!product || !product.image) {
throw new Error('Image not found');
}
return product.image;
} catch (error) {
console.error('Error retrieving image:', error.message);
return null;
}
}
async function start() {
Product.updateMany({}, { $set: { branch: 'image' } }, (err, res) => {
if (err) {
console.error('Error updating records:', err);
} else {
console.log('Records updated successfully:', res);
}
});
ids.map((x) => {
let imgPath = path.resolve(__dirname, `images/${x._id}.jpg`);
try { saveImageToProduct(x._id, imgPath) } catch (err) { console.log(err) };
})
}
start();