-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
executable file
·189 lines (147 loc) · 4.84 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
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
#!/bin/env node
var restify = require('restify');
var whatsapi = require('whatsapi');
var ip_addr = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1';
var port = process.env.OPENSHIFT_NODEJS_PORT || '8090';
var server = restify.createServer({
name : "wassup"
});
var sendernum = ''; // phone number with country code
var wa = whatsapi.createAdapter({
msisdn: sendernum, // phone number with country code
username: '', // your name on WhatsApp
password: '', // WhatsApp password
ccode: '91' // country code
});
var recipient = '',
text = '',
image = '',
video = '',
audio = '',
vcard = '',
vcardName = '';
server.use(restify.acceptParser(server.acceptable));
server.use(restify.queryParser());
server.use(restify.bodyParser());
server.use(restify.CORS());
server.use(restify.queryParser());
var PATH = '/'
server.get({path : PATH +'/' , version : '0.0.1'} , index);
server.get({path : PATH +'msg/:num/:msg' , version : '0.0.1'} , msg);
server.get({path : PATH +'img/:num' , version : '0.0.1'} , img);
server.get({path : PATH +'vid/:num' , version : '0.0.1'} , vid);
server.get({path : PATH +'aud/:num' , version : '0.0.1'} , aud);
server.get({path : PATH +'vcard/:num' , version : '0.0.1'} , vc);
function index(req, res, next) {
res.send('Whatsapp API. Developed by Srinivas Gowda.');
next();
}
wa.connect(function connected(err) {
if (err) { console.log(err); return; }
console.log('Connected');
// Now login
wa.login(logged);
});
function logged(err) {
if (err) { console.log(err); return; }
console.log('Logged in to WA server');
}
function msg(req, res , next){
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('content-type', 'application/json');
recipient = req.params.num;
text = req.params.msg;
console.log(recipient);
wa.sendIsOnline();
wa.sendComposingState(sendernum);
setTimeout(function() {
wa.sendPausedState(sendernum);
}, 2000);
wa.sendMessage(recipient, text, function(err, id) {
if (err) { console.log(err.message); return; }
console.log('Server received message %s', id);
});
wa.sendIsOffline();
res.send('Message Submitted');
return next();
};
function img(req, res , next){
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('content-type', 'application/json');
recipient = req.params.num;
image = req.query.image;
console.log(recipient);
wa.sendIsOnline();
wa.sendComposingState(sendernum);
setTimeout(function() {
wa.sendPausedState(sendernum);
}, 2000);
wa.sendImage(recipient, image, function(err, id) {
if (err) { console.log(err.message); return; }
console.log('Server received message %s', id);
});
wa.sendIsOffline();
res.send('Image Submitted');
return next();
};
function vid(req, res , next){
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('content-type', 'application/json');
recipient = req.params.num;
video = req.query.video;
console.log(recipient);
wa.sendIsOnline();
wa.sendComposingState(sendernum);
setTimeout(function() {
wa.sendPausedState(sendernum);
}, 2000);
wa.sendVideo(recipient, video, function(err, id) {
if (err) { console.log(err.message); return; }
console.log('Server received message %s', id);
});
wa.sendIsOffline();
res.send('Video Submitted');
return next();
};
function aud(req, res , next){
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('content-type', 'application/json');
recipient = req.params.num;
audio = req.query.audio;
console.log(recipient);
wa.sendIsOnline();
wa.sendComposingState(sendernum);
setTimeout(function() {
wa.sendPausedState(sendernum);
}, 2000);
wa.sendAudio(recipient, audio, function(err, id) {
if (err) { console.log(err.message); return; }
console.log('Server received message %s', id);
});
wa.sendIsOffline();
res.send('Audio Submitted');
return next();
};
function vc(req, res , next){
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('content-type', 'application/json');
recipient = req.params.num;
vcard = req.query.vcard;
vcardName = req.query.name;
console.log(recipient);
wa.sendIsOnline();
wa.sendComposingState(sendernum);
setTimeout(function() {
wa.sendPausedState(sendernum);
}, 2000);
wa.sendVcard(recipient, vcard, vcardName, function(err, id) {
if (err) { console.log(err.message); return; }
console.log('Server received message %s', id);
});
wa.sendIsOffline();
res.send('Vcard Submitted');
return next();
};
server.listen(port ,ip_addr, function(){
log.info('%s listening at %s ', server.name , server.url);
});