-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_arquivo.py
53 lines (37 loc) · 1.17 KB
/
server_arquivo.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 sys
server = ''
port = 5558
tcpsoc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
tcpsoc.bind((server, port))
except socket.error as msg:
print ('Bind failed. Error Code : ' + str(msg[0]) + ' Message ' + msg[1])
sys.exit()
tcpsoc.listen(5)
print( 'Socket now listening')
while 1:
#wait to accept a connection - blocking call
cliente, end_cliente = tcpsoc.accept()
print ('Connected with ' + end_cliente[0] + ':' + str(end_cliente[1]))
msg = "Qual arquivo deseja ?" + "\r\n"
cliente.send(msg.encode('ascii'))
msg_recebida = cliente.recv(1024)
msg = msg_recebida.decode('ascii')
#trata os dados recebidos do cliente
msg_new = msg.split('/')
print(msg_new[-1])
nome_arquivo = msg_new[-1]
arquivo = False
try:
arquivo = open(nome_arquivo, 'r+b')
except:
#ocorre o erro
print("Arquivo não encontrado no servidor")
msg = "ERROR 404 PAGE NOT FOUD\n"
cliente.send(msg.encode('ascii'))
#O arquivo é enviado
if arquivo:
cliente.sendfile(arquivo)
cliente.close()
#bind to googles ip tcpsoc.send('HTTP REQUEST') response = tcpsoc.recv()