-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.js
150 lines (101 loc) · 3.39 KB
/
chat.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
const http = require("http")
const express = require('express')
const app = express()
const server = http.createServer(app)
const io = require('socket.io').listen(server)
const bodyparser = require("body-parser")
const sharedsession = require("express-socket.io-session")
const fs = require('fs')
const new_years_day = new Date(2020, 0, 1);
app.use(bodyparser.urlencoded({ extended: false }))
const session = require("express-session")({
secret: "vunonsistemim",
resave: false,
saveUninitialized: false
})
app.use(session)
io.use(sharedsession(session, {
autoSave: true
}))
app.use('/css', express.static(__dirname + '/node_modules/bootstrap/dist/css'))
app.use('/jquery', express.static(__dirname + '/node_modules/jquery/dist'))
app.get("/", function (request, response) {
if (!request.session.kulad) {
response.sendFile('./index.html', { root: __dirname })
}
else {
response.sendFile('./chat.html', { root: __dirname })
}
})
app.post("/chat", function (request, response) {
if (request.body.kulad) {
request.session.kulad = request.body.kulad
}
if (request.session.kulad) {
response.sendFile('./chat.html', { root: __dirname })
}
else {
response.sendFile('./index.html', { root: __dirname })
}
})
// socket.io sahneye çıkıyor
io.on('connection', function (socket) {
// burada input ve output kısmına bağlantı durumunu kontrol ediyor
console.log("bir kullanıcı bağlandı " + socket.handshake.session.kulad)
socket.on('mesajvar', function (msg) {
// eğer açık kanaldan birisi mesajvar gönderirse bunu yakalıyorum
io.emit('mesajvar', socket.handshake.session.kulad, msg)
// yakakaladığımız bu mesajı bize bğalı olan bütün açık kanallara emit (yayılma) ediyoruz
// birden fazla kullancıı varsa işte onlarda açıkta olan tüm kanallara bunu iletmiş oluruz
})
socket.on('disconnect', function () {
console.log("Bir kullanıcı ayrıldı")
})
socket.on('konusmakaydet', function (konusmalar) {
var bosluksil=konusmalar.trim()
var parcalihali=bosluksil.split("*")
/* burada dizi halinde
sabri - merhaba
sabri - araba
sabri - pc
*/
// burada hepsini string'e çeviriyorum
var sonhal=parcalihali.join('\n')
fs.writeFile("konusmalar.txt", sonhal, function (err) {
if (err) throw err
else console.log("KONUŞMAYI İNDİR")
})
})
})
server.listen(8000, function () {
console.log("server başladı")
})
/*
app.get("/oturumac", function (request, response) {
// response.writeHead(200, { 'Content-type': 'text/html; charset=utf8' })
request.session.kullaniciadi = "sabri"
request.session.yas = 90
response.write("Oturum Oluşturuldu " + request.session.kullaniciadi)
response.end();
})
app.get("/oturumbak", function (request, response) {
if (request.session.kullaniciadi) {
response.write("1. oturum var ")
}
else {
response.write("1. oturum yok ")
}
if (request.session.yas) {
response.write("2. oturum var ")
}
else {
response.write("2. oturum yok ")
}
response.end();
})
app.get("/sil", function (request, response) {
// request.session.destroy() // tümünü siler
delete request.session.yas
response.end()
})
*/