-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsunucu.py
executable file
·183 lines (149 loc) · 5.47 KB
/
sunucu.py
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
#!/usr/bin/python2
# -*- coding: utf-8 -*-
import os
from flask import Flask, render_template, session, request
from flask_socketio import SocketIO, emit, disconnect
import irc.bot
import irc.strings
from irc.client import ip_numstr_to_quad, ip_quad_to_numstr
import profil as PROFIL
from random import randint
# async_mode "threading", "eventlet" ,"gevent" olabilir.None olursa kuruşu paketlerden uygun olan seçilir.
async_mode = None
app = Flask(__name__)
app.config['SECRET_KEY'] = 's324fvre7reB!'
socketio = SocketIO(app, async_mode=async_mode)
thread = None
rumuz="milis_"+str(randint(1001,9999))
kanal="#milisarge"
ircsunucu="irc.freenode.net"
ircport=6667
if PROFIL.rumuz != "":
rumuz = PROFIL.rumuz
if PROFIL.kanal != "":
kanal = PROFIL.kanal
if PROFIL.ircsunucu != "":
ircsunucu = PROFIL.ircsunucu
if PROFIL.ircport != "":
ircport = PROFIL.ircport
class MilisBot(irc.bot.SingleServerIRCBot):
def __init__(self, channel, nickname, server, port=6667):
irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], nickname, nickname)
self.channel = channel
def on_nicknameinuse(self, c, e):
c.nick(c.get_nickname() + "_")
def on_welcome(self, c, e):
c.join(self.channel)
#mesaj=kanal+" kanalına bağlandınız."
gonderen=e.source#"Mİ2A2 sunucusu"
mesaj = e.arguments
socketio.emit('ircbag_cevap',{'data': mesaj,'gonderen':gonderen},namespace='/irc')
def on_namreply(self, c, e):
bliste=self.kanal_liste()
socketio.emit('kanala_gonder_cevap',{'data': "sistem yüklendi.",'gonderen':"Mİ2A2 sunucusu",'kliste':bliste},namespace='/irc')
def on_privmsg(self, c, e):
print "priv:",c
print "priv:",e
self.do_command(e, e.arguments[0])
def on_pubmsg(self, c, e):
bliste=self.kanal_liste()
gonderen = e.source.nick
mesaj = e.arguments
socketio.emit('kanala_gonder_cevap',{'data': mesaj,'gonderen':gonderen,'kliste':bliste},namespace='/irc')
return
def gonder(self,mesaj):
#self.connection.notice(None,mesaj)
self.connection.privmsg("#milisarge",mesaj)
def rumuz_bilgi(self,rumuz):
#self.connection.notice(None,mesaj)
#self.connection.privmsg("#milisarge","/whois "+rumuz)
return self.connection.whois(rumuz)
def kanal_liste(self):
users=[]
for chname, chobj in self.channels.items():
users = sorted(chobj.users())
return users
def logcek(self):
komut="cd log && git pull && cd -"
os.system(komut)
'''
def arkaplan_islem():
# belli periyodlarda olay üretmek için
sayac = 0
while True:
socketio.sleep(10)
count += 1
socketio.emit('sunucu_cevap',
{'data': 'Sunucu olay üretti', 'count': sayac},
namespace='/irc')
'''
bot = MilisBot(kanal,rumuz,ircsunucu,ircport)
def ircbot():
global bot
bot.start()
@app.route('/')
def index():
return render_template('index.html', async_mode=socketio.async_mode)
@socketio.on('sunucu_olay', namespace='/irc')
def sunucu_olay(message):
session['receive_count'] = session.get('receive_count', 0) + 1
emit('sunucu_cevap',{'data': message['data'], 'count': session['receive_count']})
@socketio.on('sunucu_baglanti_olay', namespace='/irc')
def sunucu_baglanti_olay(message):
session['receive_count'] = session.get('receive_count', 0) + 1
emit('sunucu_baglanti_cevap',{'data': message['data'], 'count': session['receive_count']})
@socketio.on('kanala_gonder', namespace='/irc')
def kanala_gonder(mesaj):
global bot
gonderen=rumuz+" (sen)"
mesajveri=mesaj['data']
if mesajveri=="/logcek":
#mesajveri=bot.rumuz_bilgi("irc_kayitci")
bot.logcek()
mesajveri="log cekildi"
bot.gonder(mesajveri)
bliste=bot.kanal_liste()
#emit('kanala_gonder_cevap',{'data': message['data'], 'count': session['receive_count']})
emit('kanala_gonder_cevap',{'data': mesajveri,'gonderen':gonderen,'kliste':bliste})
@socketio.on('dosya_yukle', namespace='/irc')
def dosya_yukle(mesaj):
gonderen=rumuz+" (sen)"
dveri=mesaj["file"]
disim=mesaj["isim"]
dosya="/tmp/"+disim
dosya2="/tmp/link_"+disim+".txt"
open(dosya,"w").write(dveri)
os.system("curl -s -F img=@"+dosya+" https://milis-linux.appspot.com/upload > "+dosya2)
link=open(dosya2,"r").read()
mesajveri=link.rstrip('\n')
print link
global bot
bot.gonder(mesajveri)
bliste=bot.kanal_liste()
emit('kanala_gonder_cevap',{'data': mesajveri,'gonderen':gonderen,'kliste':bliste})
@socketio.on('baglantikes_istegi', namespace='/irc')
def baglantikes_istegi():
session['receive_count'] = session.get('receive_count', 0) + 1
emit('sunucu_cevap',{'data': 'Bağlantı kesildi!'})
disconnect()
@socketio.on('ping_olay', namespace='/irc')
def ping_olay():
emit('pong_olay')
@socketio.on('connect', namespace='/irc')
def connect():
global thread
if thread is None:
#thread = socketio.start_background_task(target=arkaplan_islem)
thread = socketio.start_background_task(target=ircbot)
#socket.io bağlanma iletisi
emit('sunucu_cevap', {'data': 'Bekleyiniz...', 'count': 0})
else:
bliste=bot.kanal_liste()
socketio.emit('kanala_gonder_cevap',{'data': "sayfa yenilendi.",'gonderen':"Mİ2A2 sunucusu",'kliste':bliste},namespace='/irc')
'''
@socketio.on('disconnect', namespace='/irc')
def test_disconnect():
print('Bağlantı kesildi.', request.sid)
'''
if __name__ == '__main__':
socketio.run(app, host="0.0.0.0",port=7070,debug=True)