This repository was archived by the owner on Aug 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.mjs
781 lines (757 loc) · 23.9 KB
/
index.mjs
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
import polka from "polka";
import dotenv from "dotenv";
import parser from "body-parser";
import cors from "cors";
import cloudinary from "cloudinary";
import admin from "firebase-admin";
import twt from "twt";
import multer from "multer";
import streamifier from "streamifier";
import jsonwebtoken from "jsonwebtoken";
import bcrypt from "bcrypt";
import octokit from "@octokit/rest";
import Airtable from "airtable";
import ElasticSearch from "@elastic/elasticsearch";
import axios from "axios";
import AWS from "aws-sdk";
import algoliasearch from "algoliasearch";
import createAwsElasticsearchConnector from "aws-elasticsearch-connector";
dotenv.config();
const PORT = process.env.PORT || 80;
const TWT_SECRET = process.env.TWT_SECRET || "";
const JWT_SECRET = process.env.JWT_SECRET || "";
const ROOT_USERNAME = process.env.ROOT_USERNAME || "";
const ROOT_PASSWORD = process.env.ROOT_PASSWORD || "";
const PIPEDRIVE_API_KEY = process.env.PIPEDRIVE_API_KEY;
const GITHUB_PAT = process.env.GITHUB_PAT;
const BASE_URL = "https://koj.pipedrive.com/api/v1";
const api = axios.create({
baseURL: BASE_URL,
});
cloudinary.config({
cloud_name: process.env.CLOUDINARY_CLOUD_NAME,
api_key: process.env.CLOUDINARY_API_KEY,
api_secret: process.env.CLOUDINARY_API_SECRET,
});
const placesClient = algoliasearch.initPlaces(
process.env.ALGOLIA_APPLICATION_ID,
process.env.ALGOLIA_SEARCH_ONLY_KEY
);
admin.initializeApp({
credential: admin.credential.cert(
JSON.parse(process.env.FIREBASE_SERVICE_ACCOUNT)
),
databaseURL: process.env.FIREBASE_DATABASE_URL,
});
const awsConfig = new AWS.Config({
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
region: process.env.AWS_REGION,
});
const client = new ElasticSearch.Client({
...createAwsElasticsearchConnector(awsConfig),
node: `https://${process.env.AWS_ELASTIC_HOST}`,
});
const github = new octokit.Octokit({
auth: GITHUB_PAT,
});
const upload = multer();
const uploadFromBuffer = (buffer) => {
return new Promise((resolve, reject) => {
const cld_upload_stream = cloudinary.v2.uploader.upload_stream(
{ folder: "onboarding-uploads" },
(error, result) => {
if (result) return resolve(result);
reject(error);
}
);
streamifier.createReadStream(buffer).pipe(cld_upload_stream);
});
};
const toTitleCase = (phrase) => {
return phrase
.toLowerCase()
.split(" ")
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
.join(" ");
};
const createPipedriveActivity = async ({
type,
subject,
due_date,
due_time,
duration,
user_id,
deal_id,
note,
}) => {
try {
await axios.post(
`https://koj.pipedrive.com/api/v1/activities?api_token=${process.env.PIPEDRIVE_API_KEY}`,
{
subject,
done: 0,
type,
due_date, // YYYY-MM-DD
due_time, // HH:mm
duration: duration || "00:30", // HH:mm
user_id,
deal_id,
note,
busy_flag: true,
}
);
} catch (error) {
console.log(error);
}
};
const getPipedriveLead = async (deal_id) => {
return (
await axios.get(
`https://koj.pipedrive.com/api/v1/deals/${deal_id}?api_token=${process.env.PIPEDRIVE_API_KEY}`
)
).data;
};
/**
* Create a new row for an apartment
* @param apartmentId - Apartment ID
*/
const createAirtableRow = (apartmentId) =>
new Promise((resolve) => {
const base = new Airtable({
apiKey: process.env.AIRTABLE_API_KEY,
}).base(process.env.AIRTABLE_CATALOGUE_BASE);
let leadName = "";
getPipedriveLead()
.then((lead) => {
if (lead && lead.data) leadName = lead.data.title;
})
.catch(console.log)
.then(
base("Inventory").create([
{
fields: {
ID: apartmentId,
Customer: leadName,
},
},
])
)
.then(resolve)
.catch(resolve);
});
const createSlackChannel = async (
name,
slackHtml,
briefingDate,
finalConceptDate
) => {
try {
await axios.post(
"https://slack.com/api/conversations.create",
{
name,
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
} catch (error) {}
const { data } = await axios.get("https://slack.com/api/conversations.list", {
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
});
const channel = data.channels.find((channel) => channel.name === name);
if (channel) {
await axios.post(
"https://slack.com/api/conversations.invite",
{
channel: channel.id,
users: [
"U013KLNLY86", // Anand
"UPCE2RE3A", // Caro
"U010V7MHNRZ", // Kateryna
"U019XAFTWJD", // Karina
].join(),
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
await axios.post(
"https://slack.com/api/chat.postMessage",
{
channel: channel.id,
text: `👋 Hey <!channel>, <@UPCE2RE3A> has completed the first sales call with this lead. <@U010V7MHNRZ> and <@U019XAFTWJD>, you can start working on the proposal based on the answers below.`,
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
if (briefingDate)
await axios.post(
"https://slack.com/api/chat.postMessage",
{
channel: channel.id,
text: `🗓 The deadline for the briefing of this project is ${new Date(
briefingDate
).toLocaleDateString("en-ch", { timeZone: "Europe/Zurich" })}`,
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
if (finalConceptDate)
await axios.post(
"https://slack.com/api/chat.postMessage",
{
channel: channel.id,
text: `🗓 *The final concept deadline for this project, including renders, is ${new Date(
finalConceptDate
).toLocaleDateString("en-ch", { timeZone: "Europe/Zurich" })}*`,
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
await axios.post(
"https://slack.com/api/chat.postMessage",
{
channel: channel.id,
text: slackHtml,
},
{
headers: {
Authorization: `Bearer ${process.env.SLACK_BOT_ACCESS_TOKEN}`,
},
}
);
}
};
polka()
.use(cors(), parser.urlencoded({ extended: true }), parser.json())
.get("/", (req, res) => {
res.setHeader("Cache-Control", "Cache-Control: max-age=86400, public");
res.end("/POST");
})
.get("/autocomplete", async (req, res) => {
const results = await placesClient.search({
query: req.query.q,
aroundLatLngViaIP: true,
hitsPerPage: 5,
countries: ["ch"],
language: (req.query.lang || "").split("-")[0],
});
res.setHeader("Cache-Control", "Cache-Control: max-age=86400, public");
res.end(JSON.stringify(results));
})
.post("/upload", upload.array("files", 100), async (req, res) => {
const urls = [];
for await (const file of req.files) {
const result = await uploadFromBuffer(file.buffer);
if (result.secure_url)
urls.push(
result.secure_url.replace(
"https://res.cloudinary.com/koj/image/upload",
"https://kojcdn.com"
)
);
}
res.end(JSON.stringify({ success: true, urls }));
})
.post("/", (req, res) => {
// Get data from query and body
const data = { ...req.query, ...req.body, date: new Date() };
// Get collection reference
let collectionRef = admin.firestore().collection("subscribers-v2");
// Add item to database
collectionRef
.add(data)
.then((result) => {
res.end(
JSON.stringify({ success: true, id: twt.sign(result.id, TWT_SECRET) })
);
})
.catch((error) => {
console.log(error);
res.end(JSON.stringify({ success: false }));
});
})
.post("/real-estate-managers", (req, res) => {
// Get data from query and body
const data = { ...req.query, ...req.body, date: new Date() };
// Get collection reference
let collectionRef = admin.firestore().collection("real-estate-managers");
// Add item to database
collectionRef
.add(data)
.then((result) => {
res.end(
JSON.stringify({ success: true, id: twt.sign(result.id, TWT_SECRET) })
);
})
.catch((error) => {
console.log(error);
res.end(JSON.stringify({ success: false }));
});
})
.post("/admin-login", (req, res) => {
// Get data from query and body
const data = { ...req.query, ...req.body, date: new Date() };
//bcrypt.compare(data.password, ROOT_PASSWORD, function (err, result) {
if (data.username === ROOT_USERNAME && data.password === ROOT_PASSWORD) {
res.end(
JSON.stringify({
success: true,
token: jsonwebtoken.sign({}, JWT_SECRET, { expiresIn: "7d" }),
})
);
} else {
res.end(JSON.stringify({ success: false }));
}
//});
})
.get("/user-data/:documentId", (req, res) => {
const token = (req.headers.authorization || "").replace("Bearer ", "");
let authenticated = false;
try {
authenticated = !!jsonwebtoken.verify(token, JWT_SECRET);
} catch (error) {}
if (!authenticated) return res.end(JSON.stringify({ success: false }));
const documentId = req.params.documentId;
const collectionRef = admin.firestore().collection("subscribers-v2");
collectionRef
.doc(documentId)
.get()
.then((result) => {
const data = result.data() || {};
const user_id = data.userId;
client
.search({
index: "analytics-website",
size: 100,
body: {
sort: "date",
query: {
match: { user_id },
},
},
})
.then((result) => {
const metadata = {};
((((result || {}).body || {}).hits || {}).hits || []).forEach(
(hit) => {
[
"user_id",
"user_language",
"version",
"resolution_available_width",
"resolution_available",
"resolution_available_height",
"resolution_width",
"resolution",
"resolution_height",
"original_utm_source",
"original_utm_medium",
"original_utm_campaign",
"user_agent_browser_name",
"user_agent_browser_version",
"user_agent_browser_major",
"user_agent_device_vendor",
"user_agent_device_model",
"user_agent_device_type",
"user_agent_engine_name",
"user_agent_engine_version",
"user_agent_os_name",
"user_agent_os_version",
"location_city_geoname_id",
"location_city_names_en",
"location_continent_code",
"location_continent_geoname_id",
"location_continent_names_en",
"location_country_geoname_id",
"location_country_iso_code",
"location_country_names_en",
"location_location_accuracy_radius",
"location_location_latitude",
"location_location_longitude",
"location_location_time_zone",
"location_postal_code",
"location_registered_country_geoname_id",
"location_registered_country_iso_code",
"location_registered_country_names_en",
"location_subdivisions_0_geoname_id",
"location_subdivisions_0_iso_code",
"location_subdivisions_0_names_en",
].forEach((key) => {
metadata[key] = metadata[key] || hit._source[key];
});
}
);
res.end(
JSON.stringify({
authenticated,
success: true,
metadata,
data,
...((result || {}).body || {}).hits,
})
);
})
.catch(() => {
res.end(JSON.stringify({ success: false }));
});
})
.catch(() => {
res.end(JSON.stringify({ success: false }));
});
})
.get("/leads", (req, res) => {
const token = (req.headers.authorization || "").replace("Bearer ", "");
let authenticated = false;
try {
authenticated = !!jsonwebtoken.verify(token, JWT_SECRET);
} catch (error) {}
if (!authenticated) return res.end(JSON.stringify({ success: false }));
api
.get(`/deals?api_token=${PIPEDRIVE_API_KEY}`)
.then((response) => {
res.end(JSON.stringify({ success: true, leads: response.data.data }));
})
.catch(() => {
res.end(JSON.stringify({ success: false }));
});
})
.get("/leads/:id", (req, res) => {
const token = (req.headers.authorization || "").replace("Bearer ", "");
let authenticated = false;
try {
authenticated = !!jsonwebtoken.verify(token, JWT_SECRET);
} catch (error) {}
if (!authenticated) return res.end(JSON.stringify({ success: false }));
let lead = null;
api
.get(`/deals/${req.params.id}?api_token=${PIPEDRIVE_API_KEY}`)
.then((response) => {
try {
if (response.data.data["2d708892b623a93d35eb649f4c730f61107c3125"])
response.data.data[
"2d708892b623a93d35eb649f4c730f61107c3125"
] = response.data.data[
"2d708892b623a93d35eb649f4c730f61107c3125"
].split(",");
} catch (error) {}
lead = response.data.data;
if (response.data.data["b4b22c726c33517f3810d338d77c567c8b358da4"]) {
const collectionRef = admin.firestore().collection("subscribers-v2");
return collectionRef
.doc(response.data.data["b4b22c726c33517f3810d338d77c567c8b358da4"])
.get();
} else {
return res.end(
JSON.stringify({ success: true, lead: response.data.data })
);
}
})
.then((result) => {
const firebaseData = result.data() || {};
return res.end(
JSON.stringify({
success: true,
lead,
firebaseData,
})
);
})
.catch(() => {
if (lead) return res.end(JSON.stringify({ success: true, lead }));
res.end(JSON.stringify({ success: false }));
});
})
.patch("/leads/:id", (req, res) => {
const token = (req.headers.authorization || "").replace("Bearer ", "");
let authenticated = false;
try {
authenticated = !!jsonwebtoken.verify(token, JWT_SECRET);
} catch (error) {}
if (!authenticated) return res.end(JSON.stringify({ success: false }));
const data = req.body;
github.repos
.createOrUpdateFileContents({
owner: "koj-co",
repo: "backups",
path: `sales-app-responses/${req.params.id}.json`,
message: `:card_file_box: Add sales app ${req.params.id}`,
content: Buffer.from(JSON.stringify(data, null, 2)).toString("base64"),
})
.then(() => {})
.catch(console.log);
delete data.userId;
delete data.sessionId;
const details = {};
Object.keys(data).forEach((roomType) => {
if (typeof data[roomType] === "object")
Object.keys(data[roomType]).forEach((roomId) => {
Object.keys(data[roomType][roomId]).forEach((questionId) => {
const question = data[roomType][roomId][questionId];
if (question.field) {
details[question.field] = question.value;
// Multiple select are comma-separated
if (
question.field === "2d708892b623a93d35eb649f4c730f61107c3125"
) {
details[question.field] = Array.from(
new Set(details[question.field] || [])
).join(",");
}
}
});
});
});
let html = `<h2><strong>Intro Call</strong></h2>\n`;
let slackHtml = "";
let nextMeetingDate = "";
let briefingDate = "";
let finalConceptDate = "";
Object.keys(data).forEach((category) => {
if (category !== "intro") {
html += `<h3><strong>${toTitleCase(category)}</strong></h3>\n`;
slackHtml += `*${toTitleCase(category)}:*\n`;
}
if (typeof data[category] === "object")
Object.keys(data[category]).forEach((id) => {
let roomName = toTitleCase(id);
Object.keys(data[category][id]).forEach((questionId) => {
if (
data[category][id][questionId].value &&
data[category][id][questionId].question.includes(
"name or location"
)
)
roomName = data[category][id][questionId].value;
});
if (id !== "intro") {
html += `<h4><strong>${roomName}</strong></h4>\n`;
slackHtml += ` • *${roomName}*\n`;
}
html += "<ul>\n";
Object.keys(data[category][id]).forEach((questionId) => {
const item = data[category][id][questionId];
if (item.value && item.question === "When is the next meeting?")
nextMeetingDate = new Date(item.value);
if (
item.value &&
item.question ===
"What's the deadline for the briefing (no renders)?"
)
briefingDate = new Date(item.value);
if (
item.value &&
item.question ===
"What's the deadline for the final concept, including renders?"
)
finalConceptDate = new Date(item.value);
if (item.value || item.details) {
html += `<li><em>${item.question}</em> ${
item.type === "date"
? new Date(item.value).toLocaleDateString("en-ch", {
timeZone: "Europe/Zurich",
})
: item.type === "datetime"
? new Date(item.value).toLocaleString("en-ch", {
timeZone: "Europe/Zurich",
})
: typeof item.value === "string"
? item.value.trim()
: item.value || ""
}${
item.details
? `, ${
typeof item.details === "string"
? item.details.trim()
: item.details
}`
: ""
}</li>\n`;
slackHtml += ` • _${item.question}_ ${
item.type === "date"
? new Date(item.value).toLocaleDateString("en-ch", {
timeZone: "Europe/Zurich",
})
: item.type === "datetime"
? new Date(item.value).toLocaleString("en-ch", {
timeZone: "Europe/Zurich",
})
: typeof item.value === "string"
? item.value.trim()
: item.value || ""
}${
item.details
? `, ${
typeof item.details === "string"
? item.details.trim()
: item.details
}`
: ""
}\n`;
}
});
html += "</ul>\n";
});
});
if (briefingDate)
createPipedriveActivity({
type: "task",
subject: `Setup briefing #${req.params.id}`,
deal_id: req.params.id,
due_date: new Date(
briefingDate.getTime() - briefingDate.getTimezoneOffset() * 60000
)
.toISOString()
.split("T")[0],
});
if (finalConceptDate)
createPipedriveActivity({
type: "deadline",
subject: `Proposal deadline #${req.params.id}`,
deal_id: req.params.id,
due_date: new Date(
finalConceptDate.getTime() -
finalConceptDate.getTimezoneOffset() * 60000
)
.toISOString()
.split("T")[0],
});
if (nextMeetingDate)
createPipedriveActivity({
type: "call",
subject: `Proposal presentation #${req.params.id}`,
deal_id: req.params.id,
due_date: new Date(
nextMeetingDate.getTime() -
nextMeetingDate.getTimezoneOffset() * 60000
)
.toISOString()
.split("T")[0],
due_time: new Date(
nextMeetingDate.getTime() -
nextMeetingDate.getTimezoneOffset() * 60000
)
.toISOString()
.split("T")[1]
.split("Z")[0]
.substr(0, 5),
duration: "01:00",
});
api
.put(`/deals/${req.params.id}?api_token=${PIPEDRIVE_API_KEY}`, details)
.then(() =>
api.post(`/notes?api_token=${PIPEDRIVE_API_KEY}`, {
content: html,
deal_id: req.params.id,
})
)
.then(() => {
try {
createSlackChannel(
`concept-${req.params.id}`,
slackHtml,
briefingDate,
finalConceptDate
)
.then(() => {})
.catch(console.log);
} catch (error) {}
})
.then(() => {
try {
createAirtableRow(req.params.id)
.then(() => {})
.catch(console.log);
} catch (error) {}
})
.then(() => {
res.end(JSON.stringify({ success: true }));
})
.catch(() => {
res.end(JSON.stringify({ success: false }));
});
})
.get("/customers", (req, res) => {
const token = (req.headers.authorization || "").replace("Bearer ", "");
let authenticated = false;
try {
authenticated = !!jsonwebtoken.verify(token, JWT_SECRET);
} catch (error) {}
if (!authenticated) return res.end(JSON.stringify({ success: false }));
const collectionRef = admin.firestore().collection("subscribers-v2");
collectionRef
.orderBy("date", "desc")
.get()
.then((result) => {
const data = [];
result.forEach((item) => {
const { email, name, date, locationName, budget } = item.data();
if (email)
data.push({
id: item.id,
email,
name,
date: new Date(date._seconds * 1000),
locationName,
budget,
});
});
res.end(
JSON.stringify({
authenticated,
success: true,
data,
})
);
})
.catch((err) => {
console.log(err);
res.end(JSON.stringify({ success: false }));
});
})
.patch("/:id", (req, res) => {
// Get data from query and body
const data = { ...req.query, ...req.body, updatedAt: new Date() };
// Get collection reference
let collectionRef = admin.firestore().collection("subscribers-v2");
let documentId = "";
try {
documentId = twt.verify(req.params.id, TWT_SECRET);
} catch (error) {}
if (!documentId)
return res.end(
JSON.stringify({ success: false, error: "Invalid token" })
);
// Add item to database
collectionRef
.doc(documentId)
.update(data)
.then((result) => {
res.end(JSON.stringify({ success: true, id: result.id }));
})
.catch((error) => {
console.log(error);
res.end(JSON.stringify({ success: false }));
});
})
.listen(PORT, (error) => {
if (error) throw error;
console.log(`> Running on localhost:${PORT}`);
});