作业要求

0、实现用户登陆

1、实现上传和下载

3、每个用户都有自己的家目录,且只可以访问自己的家目录

4、对用户进行磁盘配额,每个用户的空间不同,超过配额不允许下载和上传

5、允许用户在指定的家目录随意切换目录

6、允许用户在自己的家目录切换目录

7、允许上传和下载文件,并判断文件的一致性

目前还未终稿,还在持续优化中

客户端核心代码

import socket
import os
import hashlib
import subprocess
import json
import time HOST = "127.0.0.1"
PORT = 8000
ip_bind = (HOST, PORT)
ftp_client = socket.socket()
ftp_client.connect(ip_bind)
def test_md5(path):
md5 = hashlib.md5()
f = open(path,"rb")
while True:
d = f.read(10)
if not d:
break
else:
f_md5 = md5.update(d)
file_md5 = md5.hexdigest()
return file_md5 while True:
client_login = ftp_client.recv(8192)
print(str(client_login, encoding="utf-8"))
cline_user = input("用户名:")
ftp_client.sendall(bytes(cline_user, encoding="utf-8"))
client_login = ftp_client.recv(8192)
print(str(client_login, encoding="utf-8"))
cline_password = input("密码:")
ftp_client.sendall(bytes(cline_password, encoding="utf-8"))
ftp_server = ftp_client.recv(8192)
if str(ftp_server, encoding="utf-8") == "用户名或者密码错误":
print(str(ftp_server, encoding="utf-8"))
continue
else:
print(str(ftp_server, encoding="utf-8"))
break while True:
client_func = input("你可以查看和切换目录,你可以上传和下载文件:")
ftp_client.sendall(bytes(client_func, encoding="utf-8")) if client_func.startswith("get"):
server_reply = ftp_client.recv(8192)
get_info = str(server_reply,encoding="utf-8")
print(get_info)
file_md5 = get_info.split("|")[1].split(":")[1]
file_size = int(get_info.split("|")[2].split(":")[1])
file_name = get_info.split("|")[0].split(":")[1]
sever_ack = ftp_client.recv(8192)
if str(sever_ack,encoding="utf-8") == "ok":
print(str(sever_ack,encoding="utf-8"))
get_file_path = "F:\\ftp\\ftpclient\\%s" %(file_name)
with open(get_file_path,"wb") as file:
temp_size = int(os.path.getsize(get_file_path))
while temp_size < file_size:
# print("临时大小:",temp_size,"实际大小:",file_size)
data = ftp_client.recv(8192)
file.write(data)
temp_size = int(os.path.getsize(get_file_path))
print(temp_size,file_size)
print("下载文件[%s]完成" %(file_name))
elif client_func.startswith("put"):
pass
else:
server_reply = ftp_client.recv(8192)
print(str(server_reply, encoding="utf-8"))

服务端核心代码

import socket
import hashlib
import subprocess
import json
import os
import random
import hashlib
root = "F:\\ftp\\ftpserver\\root"
bob = "F:\\ftp\\ftpserver\\bob"
user_info = {}
test_md5 = hashlib.md5() def test_md5(path):
md5 = hashlib.md5()
f = open(path,"rb")
while True:
d = f.read(10)
if not d:
break
else:
f_md5 = md5.update(d)
file_md5 = md5.hexdigest()
return file_md5 with open("E:\\python\\网络编辑_socket\\ftp作业\\user_data", "r", encoding="utf-8") as f:
for line in f:
temp = line.split("|")
temp_dict = {temp[0]: {"密码": temp[1], "配额": temp[2]}}
user_info.update(temp_dict)
temp = []
temp_dict = {} HOST = "127.0.0.1"
PORT = 8000
ip_bind = (HOST, PORT)
FTP_server = socket.socket()
FTP_server.bind(ip_bind)
FTP_server.listen(1)
conn, add = FTP_server.accept()
while True:
conn.sendall(bytes("FTP_server:请输入用户名", encoding="utf-8"))
cline_user = str(conn.recv(8192), encoding="utf-8")
conn.sendall(bytes("FTP_server:请输入密码", encoding="utf-8"))
cline_password = str(conn.recv(8192), encoding="utf-8")
if cline_user in user_info.keys():
if cline_password == user_info[cline_user]["密码"]:
welcome = "欢迎用户\033[31;1m[%s]\033[0m登陆FTP服务器" % (cline_user)
send_info = welcome.center(100, "-")
conn.sendall(bytes(send_info, encoding="utf-8"))
break
else:
conn.sendall(bytes("用户名或者密码错误", encoding="utf-8"))
continue
else:
conn.sendall(bytes("用户名或者密码错误", encoding="utf-8"))
continue client_path = "F:\\ftp\\ftpserver\\" + cline_user
os.chdir(client_path)
client_pwd = client_path
while True:
client_func = conn.recv(8192)
if str(client_func, encoding="utf-8") == "dir":
os.chdir(client_pwd)
a = os.listdir(client_pwd)
b = []
for i in a:
path = client_pwd + "\\" + i
if os.path.isdir(path):
c = "dir|" + i
b.append(c)
elif os.path.isfile(path):
c = "file|" + i
b.append(c)
else:
pass
ret = json.dumps(b)
conn.sendall(bytes(ret, encoding="utf-8"))
elif str(client_func, encoding="utf-8").startswith("cd"):
if str(client_func, encoding="utf-8").strip() == "cd":
os.chdir(client_path)
s = "切换成功"
conn.sendall(bytes(s, encoding="utf-8"))
client_pwd = client_path
# print(client_pwd) else:
cd_func = str(client_func, encoding="utf-8").split(" ")
cd_path = client_pwd + "\\" + cd_func[1]
if os.path.exists(cd_path):
if os.path.isdir(cd_path):
os.chdir(cd_path)
s = "切换成功"
conn.sendall(bytes(s, encoding="utf-8"))
client_pwd = cd_path
else:
s = "请输入正确的目录信息"
conn.sendall(bytes(s, encoding="utf-8"))
else:
s = "该目录不存在"
conn.sendall(bytes(s, encoding="utf-8"))
elif str(client_func, encoding="utf-8").startswith("get"): a = str(client_func, encoding="utf-8").split(" ")
file_path = client_pwd + "\\" + a[1]
file_size = str(os.path.getsize(file_path)) if os.path.exists(client_pwd + "\\" + a[1]):
if os.path.isdir(client_pwd + a[1]):
s = "请输入正确的文件路径信息"
conn.sendall(bytes(s, encoding="utf-8"))
elif os.path.isfile(client_pwd + "\\" + a[1]):
print(client_pwd + "\\" + a[1],type(client_pwd + "\\" + a[1]))
md5 = str(test_md5(client_pwd + "\\" + a[1]))
print(md5)
with open(client_pwd + "\\" + a[1], "rb") as file:
s = "文件名称:%(file_name)s|文件md5:%(file_md5)s|文件大小:%(size)s" %{"file_name":a[1],"file_md5":md5,"size":file_size}
print(s)
conn.sendall(bytes(s,encoding="utf-8"))
conn.sendall(bytes("ok",encoding="utf-8"))
for line in file:
# f2.write(line)
data = conn.sendall(line)
conn.sendall(bytes("",encoding="utf-8"))
else:
s = "该路径不存在"
conn.sendall(bytes(s, encoding="utf-8"))
elif str(client_func, encoding="utf-8").startswith("put"):
pass
else:
s = "错误的输入,请重新输入"
conn.sendall(bytes(s, encoding="utf-8"))

  

python之ftp作业【还未完成】的更多相关文章

  1. python day 18: thinking in UML与FTP作业重写

    目录 python day 18 1. thinking in UML读书小感 2. FTP作业重写 2.1 软件目录结构 2.2 FTPClient端脚本 2.3 FTPServer端脚本 pyth ...

  2. Python学习笔记——基础篇【第七周】———FTP作业(面向对象编程进阶 & Socket编程基础)

    FTP作业 本节内容: 面向对象高级语法部分 Socket开发基础 作业:开发一个支持多用户在线的FTP程序 面向对象高级语法部分 参考:http://www.cnblogs.com/wupeiqi/ ...

  3. python day33 ,socketserver多线程传输,ftp作业

    一.一个服务端连多个客户端的方法 1.服务端 import socketserver class MyServer(socketserver.BaseRequestHandler): def hand ...

  4. python全栈开发day29-网络编程之socket常见方法,socketserver模块,ftp作业

    一.昨日内容回顾 1.arp协议含义 2.子网,子网掩码 3.两台电脑在网络中怎么通信的? 4.tcp和udp socket编码 5.tcp和udp协议的区别 6.tcp三次握手和四次挥手,syn洪攻 ...

  5. Python socketserver ftp功能简单讲解

    socketserver模块实现并发 为什么要讲socketserver?我们之前写的tcp协议的socket是不是一次只能和一个客户端通信,如果用socketserver可以实现和多个客户端通信.它 ...

  6. Python学习day5作业

    目录 Python学习day5作业 ATM和购物商城 1. 程序说明 2. 基本流程图 3. 程序测试帐号 4. 程序结构: 5. 程序测试 title: Python学习day5作业 tags: p ...

  7. 基于python复制蓝鲸作业平台

    前言 去年看武sir代码发布的视频无意中听到了蓝鲸平台但是一直没深究,前一段时间公司要搞一个代码发布平台,但是需求变化很多一直找不到一个很好的参考 模板,直到试用了一下蓝鲸作业平台发现“一切皆作业”的 ...

  8. Python和FTP

    1.HTTP主要用于基于Web的文件下载以及访问Web服务,一般客户端无须登录就可以访问服务器上的文件和服务.大部分HTTP文件传输请求都用于获取网页(即将网页文件下载到本地). 2.FTP主要用于匿 ...

  9. Python实现扫描作业配置自动化

    持续集成平台接入扫描作业是一项繁琐而又需要细致的工作,于是趁着闲暇时间,将代码扫描作业用Python代码实现了配置自动化. 每次配置作业的过程中,都会在checkcode1或者checkcode3上 ...

随机推荐

  1. application/xml 和 text/xml的区别

    application/xml and text/xml的区别 经常看到有关xml时提到"application/xml" 和 "text/xml"两种类型, ...

  2. 与PHP5.3.5的战斗----记php5.3.5安装过程

    与PHP5.3.5的战斗----记php5.3.5安装过程 摘自:http://blog.csdn.net/lgg201/article/details/6125189这篇文章写的很是不错,,,也是我 ...

  3. javascript的焦点管理

    HTML5也添加了辅助管理DOM焦点的功能. 元素获得焦点的方式有页面加载,用户输入和代码中调用的focus()方法. 而document.activeElement属性保存着当前获得焦点的引用. v ...

  4. stm32串口接收完整的数据包

    参考了文章:<stm32串口中断接收方式详细比较> 文章地址:http://bbs.elecfans.com/jishu_357017_1_1.html 借鉴了第四种中断方式 串口的配置这 ...

  5. Ubuntu14.04配置jdk1.8.0_25,可切换版本

    下载jdk:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 解压: sudo m ...

  6. 基于Linux的Samba开源共享解决方案测试(二)

    单NAS网关50Mb码率视音频文件的稳定读测试结果如下: 50Mb/s负载性能记录 NAS网关资源占用 稳定读 稳定读 CPU空闲 内存空闲 网卡占用 13个稳定流 96.70% 10G 104MB/ ...

  7. bat脚本自动备份文件资源

    1:xcopy命令进行文件拷贝  2:脚本内容: <span style="font-size:18px;">@echo off color 0D MODE con:  ...

  8. 搭建 yum 仓库

    翻译来自:https://wiki.centos.org/HowTos/CreateLocalRepos 本地仓库 http 仓库 测试 Steps: 1.把rpm包放在一个目录中.可以根据需要在该目 ...

  9. loganalyzer

  10. python实现一个栏目的分页抓取列表页抓取

    python实现一个栏目的分页抓取列表页抓取 #!/usr/bin/env python # coding=utf-8 import requests from bs4 import Beautifu ...