-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
133 lines (112 loc) · 3.59 KB
/
server.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
var express = require('express');
var app = express();
var server = require('http').Server(app);
var bodyParser = require('body-parser');
app.use(bodyParser.json());
app.get('/', function(req, res) {
res.sendfile(__dirname + '/index.html');
});
app.post('/requestSent', function(req, res) {
var userId = req.param('userId');
var requestId = req.param('requestId');
var data = req.body;
console.log("Request Sent API");
console.log("Body: %j", data);
console.log("User ID:" + userId);
console.log("Request ID:" + requestId);
console.log("Count Users: %j", service.users.length);
var user = service.findUserWithShop(userId);
if (user != null) {
console.log("Found User: " + user.userId);
user.sendRequestSentNotification(requestId, data);
}
res.json(data);
});
app.post('/cancel', function(req, res) {
var userId = req.param('userId');
var requestId = req.param('requestId');
console.log("Cancel Sent API");
console.log("User ID:" + userId);
console.log("Request ID:" + requestId);
console.log("Count Users: %j", service.users.length);
var user = service.findUserWithShop(userId);
if (user != null) {
console.log("Found User: " + user.userId);
user.sendCancelNotification(requestId);
}
res.json({requestId: requestId, userId: userId});
});
function User(socket, userId) {
var self = this
this.socket = socket
this.userId = userId
this.addHandlers();
}
User.prototype.addHandlers = function() {
var self = this;
this.socket.emit("hello", {
message: "Hello world!"
})
// game.addPlayer(new Player(socket))
//
this.socket.on("requestSent", function(data) {
console.log(data)
})
this.socket.on("hello", function(data) {
console.log(data)
})
}
User.prototype.sendCancelNotification = function(requestId) {
var self = this;
this.socket.emit('cancel', requestId);
console.log("sent cancel event");
}
User.prototype.sendRequestSentNotification = function(requestId, request) {
var self = this;
this.socket.emit('requestSent2', request);
console.log("sent requestSend2");
}
function XeemService() {
this.io = require('socket.io')(server);
this.started = false
this.users = []
this.addHandlers()
}
XeemService.prototype.addUser = function(newUser){
console.log("adding new user");
console.log(this.users.length);
for(var i = 0; i < this.users.length; i++){
console.log(this.users[i].userId);
if(this.users[i].userId == newUser.userId) {
this.users[i] = newUser;
return;
}
}
this.users.push(newUser);
}
XeemService.prototype.addHandlers = function() {
var service = this
console.log("adding handlers")
this.io.on("connection", function(socket) {
console.log("user connected")
socket.on('sendUserId', function(data) {
console.log("send user id event");
console.log(data);
var newUser = new User(socket, data);
service.addUser(newUser);
});
console.log("Users: %j", service.users.length);
})
}
XeemService.prototype.findUserWithShop = function(userId) {
var service = this;
for (var i = 0; i < this.users.length; i++) {
console.log("user #" + i + "'s id: " + this.users[i].userId)
if (this.users[i].userId == userId) return this.users[i];
}
return null;
}
// // Start the game server
var service = new XeemService()
server.listen(process.env.PORT || 3000)
console.log("server is listening on port 3000")