experience.js
9.02 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
"use strict";
const utils = require("@strapi/utils");
const { ApplicationError, ValidationError } = utils.errors;
/**
* experience controller
*/
const { createCoreController } = require("@strapi/strapi").factories;
module.exports = createCoreController("api::experience.experience", () => ({
async create(ctx) {
// Validations
if (!ctx.request.body.data.vendor) {
throw new ValidationError("Vendor is a mandatory field.");
}
if (!ctx.request.body.data.pincode) {
throw new ValidationError("Pincode is a mandatory field.");
}
if (!ctx.request.body.data.subCategory) {
throw new ValidationError("Subcategory is a mandatory field");
}
if (!ctx.request.body.data.category) {
throw new ValidationError("Category is a mandatory field");
}
const subCategory = await strapi
.query("api::sub-categorie.sub-categorie")
.findOne({
where: {
name: {
$eq: ctx.request.body.data.subCategory,
},
},
});
const category = await strapi.query("api::categorie.categorie").findOne({
where: {
name: {
$eq: ctx.request.body.data.category,
},
},
});
const repeatedActivities = await strapi
.query("api::experience.experience")
.findOne({
where: {
$and: [
{ name: ctx.request.body.data.name },
{ vendor: ctx.request.body.data.vendor.id },
],
},
});
if (repeatedActivities) {
throw new ValidationError(
"Activity with the same name already exists, please rename the activity."
);
}
// Create Activity
const activity = await strapi.entityService.create(
"api::experience.experience",
{
data: {
name: ctx.request.body.data.name,
description: ctx.request.body.data.description,
pricePerPerson: ctx.request.body.data.pricePerPerson,
address: ctx.request.body.data.address,
masterPincode: ctx.request.body.data.pincode.id,
minimumDuration: ctx.request.body.data.minimumDuration,
maximumDuration: ctx.request.body.data.maximumDuration,
duration: ctx.request.body.data.duration,
ageLowerLimit: ctx.request.body.data.ageLowerLimit,
ageNotes: ctx.request.body.data.ageNotes,
phoneNumber: ctx.request.body.data.phoneNumber,
minGroupSize: ctx.request.body.data.minGroupSize,
maxGroupSize: ctx.request.body.data.maxGroupSize,
activityType: ctx.request.body.data.activityType,
link: ctx.request.body.data.link,
cancellationPolicy: ctx.request.body.data.cancellationPolicy,
vendor: ctx.request.body.data.vendor.id,
subCategory: subCategory.id,
category: category.id,
giftSomeone: ctx.request.body.data.giftSomeone,
fromDate: ctx.request.body.data.fromDate,
toDate: ctx.request.body.data.toDate,
fromTime: ctx.request.body.data.fromTime,
toTime: ctx.request.body.data.toTime,
offers: ctx.request.body.data.offers,
rating: ctx.request.body.data.rating,
contactPersonForActivity:
ctx.request.body.data.contactPersonForActivity,
contactPersonForBooking:
ctx.request.body.data.contactPersonForBooking,
approved: ctx.request.body.data.approved,
imagesComponent: ctx.request.body.data.imagesArrayComponent,
...ctx.request.body.data.daysBoolean,
},
}
);
ctx.send({
success: true,
message: "Activity Created",
data: {
...activity,
},
});
},
async update(ctx) {
const { id } = ctx.params;
// if (!ctx.request.body.data.vendor) {
// throw new ValidationError("Vendor is a mandatory field.");
// }
if (
ctx.request.body.data.approved == "approved" ||
ctx.request.body.data.approved == "rejected"
) {
const updatedExperience = await strapi
.query("api::experience.experience")
.update({
where: { id },
data: {
approved: ctx.request.body.data.approved,
rejectionReason: ctx.request.body.data.rejectionReason,
},
});
console.log("updatedExperience", updatedExperience);
return ctx.send({
success: true,
message: "Status updated",
data: {
...updatedExperience,
},
});
}
console.log("ctx>", ctx.request.body);
if (!ctx.request.body.data.pincode) {
throw new ValidationError("Pincode is a mandatory field.");
}
if (!ctx.request.body.data.subCategory) {
throw new ValidationError("Subcategory is a mandatory field");
}
if (!ctx.request.body.data.category) {
throw new ValidationError("Category is a mandatory field");
}
console.log("subcategoyr", ctx.params);
const subCategory = await strapi
.query("api::sub-categorie.sub-categorie")
.findOne({
where: {
name: {
$eq: ctx.request.body.data.subCategory,
},
},
});
const category = await strapi.query("api::categorie.categorie").findOne({
where: {
name: {
$eq: ctx.request.body.data.category,
},
},
});
console.log(
"ctx.request.body.data.activityId",
ctx.request.body.data.activityId
);
const updatedExperience = await strapi
.query("api::experience.experience")
.update({
where: { id },
data: {
name: ctx.request.body.data.name,
description: ctx.request.body.data.description,
pricePerPerson: ctx.request.body.data.pricePerPerson,
address: ctx.request.body.data.address,
masterPincode: ctx.request.body.data.pincode.id,
minimumDuration: ctx.request.body.data.minimumDuration,
maximumDuration: ctx.request.body.data.maximumDuration,
duration: ctx.request.body.data.duration,
ageLowerLimit: ctx.request.body.data.ageLowerLimit,
ageNotes: ctx.request.body.data.ageNotes,
phoneNumber: ctx.request.body.data.phoneNumber,
minGroupSize: ctx.request.body.data.minGroupSize,
maxGroupSize: ctx.request.body.data.maxGroupSize,
activityType: ctx.request.body.data.activityType,
link: ctx.request.body.data.link,
cancellationPolicy: ctx.request.body.data.cancellationPolicy,
// vendor: ctx.request.body.data.vendor.id,
subCategory: subCategory.id,
category: category.id,
giftSomeone: ctx.request.body.data.giftSomeone,
fromDate: ctx.request.body.data.fromDate,
toDate: ctx.request.body.data.toDate,
fromTime: ctx.request.body.data.fromTime,
toTime: ctx.request.body.data.toTime,
offers: ctx.request.body.data.offers,
rating: ctx.request.body.data.rating,
contactPersonForActivity:
ctx.request.body.data.contactPersonForActivity,
contactPersonForBooking:
ctx.request.body.data.contactPersonForBooking,
approved: ctx.request.body.data.approved,
// imagesComponent: ctx.request.body.data.imagesArrayComponent,
...ctx.request.body.data.daysBoolean,
},
});
const imagesComponentData = Array.isArray(
ctx.request.body.data.imagesArrayComponent
)
? ctx.request.body.data.imagesArrayComponent
: [ctx.request.body.data.imagesArrayComponent];
const updatedExperienceImageComponent = await strapi.entityService.update(
"api::experience.experience",
id,
{
data: { imagesComponent: imagesComponentData },
}
);
console.log("updatedExperience", updatedExperience);
ctx.send({
success: true,
message: "Activity updated",
data: {
...updatedExperience,
},
});
},
async updateImage(ctx) {
console.log(ctx.request.body);
const id = ctx.request.body.id; // Get the ID of the experience entry
if (!id) {
return ctx.notFound("Please mention experience ID");
}
if (!ctx.request.body.newComponentData > 0) {
return ctx.notFound("Please mention the URLs");
}
const newComponentData = ctx.request.body.newComponentData; // Get the new data for the repeatable component
try {
const existingExperience = await strapi.entityService.findOne(
"api::experience.experience",
id
);
if (!existingExperience) {
return ctx.notFound("Experience with the given ID not found.");
}
// Clear the existing repeatable component data
await strapi.entityService.update("api::experience.experience", id, {
data: { imagesComponent: [] },
});
// Update the entry with new data
const updatedExperience = await strapi.entityService.update(
"api::experience.experience",
id,
{
data: { imagesComponent: newComponentData },
}
);
return ctx.send(updatedExperience);
} catch (error) {
ctx.throw(500, error);
}
},
}));