gpt4 book ai didi

python - python post server是否有更好的方法来处理不同的文件类型?

转载 作者:行者123 更新时间:2023-12-03 08:39:20 24 4
gpt4 key购买 nike

我有一个用python3.6.9编写的发布服务器,在apache2反向代理后面的本地主机上运行。它接收通过Powershell上传的base64文件并对其进行解码。文本文件将保存到目录./Public/example.txt。如果字节已上传,它将使用“binascii.Error除外”处理错误,我可以将其正确写入目录中。两种文件保存方式都是通过获取URI并以“/store.json”替换为空。如果发布数据中没有FileName,则“IOError除外”会将其写入当前目录中的./store.json。
这是主要代码:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging
import base64
import json
import os
import datetime
import binascii
from os import curdir
from optparse import OptionParser
from os.path import join as pjoin
from pathlib import Path

class S(BaseHTTPRequestHandler):
store_path = pjoin(curdir, 'store.json')
def _set_response(self):
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()

def do_GET(self):
logging.info("GET request,\nPath: %s\nHeaders:\n%s\n", str(self.path), str(self.headers))
self._set_response()
self.wfile.write("GET request for {}".format(self.path).encode('utf-8'))

def do_POST(self):
content_length = int(self.headers['Content-Length'])
post_data = self.rfile.read(content_length)
try:
b64_string = post_data
post_data = base64.b64decode(b64_string)
logging.info("POST request,\nPath: %s\nHeaders:\n%s\n\nBody:\n%s\n",
str(self.path), str(self.headers), post_data) #.decode('utf-8'))

except binascii.Error as err:
logging.info("POST request,\nPath: %s\nHeaders:\n%s\n\nBody:\n%s\n",
str(self.path), str(self.headers), post_data.decode('utf-8'))

path = str(self.path)
store_path = pjoin(curdir, 'store.json')
for char in ' /':
path = path.replace(char,'')
path = path.replace("store.json", "")
dirname='/opt/server/Public/'
filename = path
path = Path(dirname, filename)
try:
log_file = open(path, "wb")
log_file.write(post_data)
log_file.close()
print("Wrote contents to %s." % path)
except IOError:
f=open(store_path, "ab+")
f.write(post_data)
f.close()
log_file = open(store_path, "a")
log_file.write("\n")
log_file.write("%s\n" % datetime.datetime.now())
log_file.write("\n")
log_file.close()
print("Wrote contents to %s." % store_path)

self._set_response()
self.wfile.write("POST request for {}".format(self.path).encode('utf-8'))
我是使用python的初学者。我觉得这是处理文件的草率方法。有没有一种更好的方法来识别文件,而不会让服务器“错误”地完成我想要的工作?另外,我是否总是需要指定要处理的错误?在Powershell中,我可以懒洋洋地尝试通过自动化方式{捕获{$ _}。我寻找了一段时间,但还没有找到盲目的处理python错误的方法。它总是最终导致我的服务器挂起。任何帮助或建议,将不胜感激。

最佳答案

首先欢迎来到SO。
因此,有些事情可能会对您有所帮助。人们通常不使用python的HTTPServer,除非您要控制http请求和响应的下半部分。如果您想使用易于使用/设置的HTTP服务器flask是一个不错的选择,因为它将处理POST数据的解析并在它们通过时保存文件。
Q1。有没有更好的方法来识别文件?
A1。这取决于。在http请求上载文件期间,http标准是上载文件名和扩展名以及文件的字节。如果您仅上传字节,则大多数http服务器只会忽略它并返回错误。因此,如果您发送名称和扩展名以及字节,那么您将知道它是哪种数据以及如何存储它。
同样base64是一种编码。因此,了解编码是否良好(错误的字节/丢失的字节)的唯一方法是实际尝试对其进行解码,然后在找到它们时捕获任何错误。如果没有实际尝试解码数据,就无法询问它是否是有效的编码。
Q2。您可以盲目处理python中的错误吗?
A2。是的,尽管我们不建议这样做。

try:
do_something()
except:
print("I catch everything no matter what broke inside of this try")

关于python - python post server是否有更好的方法来处理不同的文件类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63233854/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com