-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdateserver.py
53 lines (40 loc) · 1.37 KB
/
dateserver.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
import socket
import threading
import os
from ftplib import FTP
class Server:
def __init__(self):
self.s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
self.accept_connections()
filename = 'input.txt'
localfile = open(filename, 'wb')
ftp.retrbinary('RETR ' + filename, localfile.write, 1024)
ftp.quit()
localfile.close()
def accept_connections(self):
ip = socket.gethostbyname(socket.gethostname())
port = 8080
self.s.bind((ip,port))
self.s.listen(100)
print('Running on IP: '+ip)
print('Running on port: '+str(port))
while 1:
c, addr = self.s.accept()
print(c)
threading.Thread(target=self.handle_client,args=(c,addr,)).start()
def handle_client(self,c,addr):
data = c.recv(1024).decode()
if not os.path.exists(data):
c.send("file-doesn't-exist".encode())
else:
c.send("file-exists".encode())
print('Sending back the response in ' + data)
if data != '':
file = open(data,'rb')
data = file.read(1024)
while data:
c.send(data)
data = file.read(1024)
c.shutdown(socket.SHUT_RDWR)
c.close()
server = Server()