-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
128 lines (121 loc) · 6.73 KB
/
index.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
120
121
122
123
124
125
126
127
128
var express = require("express");
var app = express();
var dateFormat = require('dateformat');
var Pipedrive = require('pipedrive');
var Zendesk = require('zendesk-node-api');
var zendeskUrl = process.env.ZENDESKURL;
var zendeskEmail = process.env.ZENDESKEMAIL;
var zendeskToken = process.env.ZENDESKTOKEN;
var pipedriveKey = process.env.PIPEDRIVEKEY;
var zendesk = new Zendesk({
url: zendeskUrl,
email: zendeskEmail,
token: zendeskToken
});
var pipedrive = new Pipedrive.Client(pipedriveKey, {
strictMode: true
});
function zendeskSearch() {
zendesk.search.list('query=type:ticket created>1hour').then(function(results) {
results.forEach(function(result) {
if (result.custom_fields[0].value !== null) {
pipedrive.Organizations.find({
term: result.custom_fields[0].value
}, function(err, organization) {
if (err) throw err;
organization[0].getDeals(function(dealsErr, deals) {
if (dealsErr) throw dealsErr;
if (result.subject.indexOf('[TEST]') == -1) {
if (result.subject.indexOf('New custom question was added') == -1) {
if (result.subject.indexOf('New registration') == -1) {
pipedrive.Notes.add({
deal_id: deals[0].id,
content: "Zendesk Ticket created at " + dateFormat(result.created_at, "dddd, mmmm dS, yyyy, h:MM:ss TT") +
" ---- " + result.subject
},
function(addErr, addData) {
if (addErr) throw addErr;
console.log('Note successfully added', addData);
});
}
}
}
});
});
} else if ((typeof result.via.source.from.address !== 'undefined') && (result.via.source.from.address.indexOf('@teambay.com') == -1)) {
pipedrive.Persons.find({
term: result.via.source.from.address
}, function(err, person) {
if (err) throw err;
console.log(person.length)
if(person.length > 0){
person[0].getDeals(function(dealsErr, deals) {
if (dealsErr) throw dealsErr;
if (result.subject.indexOf('[TEST]') == -1) {
if (result.subject.indexOf('New custom question was added') == -1) {
if (result.subject.indexOf('New registration') == -1) {
pipedrive.Notes.add({
deal_id: deals[0].id,
content: "Zendesk Ticket created at " + dateFormat(result.created_at, "dddd, mmmm dS, yyyy, h:MM:ss TT") +
" ---- " + result.subject
},
function(addErr, addData) {
if (addErr) throw addErr;
console.log('Note successfully added', addData);
});
}
}
}
});
} else {
if (result.subject.indexOf('[TEST]') == -1) {
if (result.subject.indexOf('New custom question was added') == -1) {
if (result.subject.indexOf('New registration') == -1) {
if (result.subject.indexOf('Question of the Week Results') == -1) {
if (result.subject.indexOf('Ergebnisse der Frage der Woche') == -1) {
pipedrive.Notes.add({
person_id: 7002,
content: "Zendesk Ticket created at " + dateFormat(result.created_at, "dddd, mmmm dS, yyyy, h:MM:ss TT") +
" ---- " + result.subject
},
function(addErr, addData) {
if (addErr) throw addErr;
console.log('Note successfully added', addData);
});
}
}
}
}
}
}
}
);
} else {
if (result.subject.indexOf('[TEST]') == -1) {
if (result.subject.indexOf('New custom question was added') == -1) {
if (result.subject.indexOf('New registration') == -1) {
if (result.subject.indexOf('Question of the Week Results') == -1) {
if (result.subject.indexOf('Ergebnisse der Frage der Woche') == -1) {
pipedrive.Notes.add({
person_id: 7002,
content: "Zendesk Ticket created at " + dateFormat(result.created_at, "dddd, mmmm dS, yyyy, h:MM:ss TT") +
" ---- " + result.subject
},
function(addErr, addData) {
if (addErr) throw addErr;
console.log('Note successfully added', addData);
});
}
}
}
}
}
}
});
});
}
app.set('port', (process.env.PORT || 5000));
app.listen(app.get('port'), function() {
console.log('Node app is running on port', app.get('port'));
zendeskSearch();
});