今回は続きとして、GET のパラメータの受け取りの部分を作成します。
Webサーバーからは、独自のハンドラーを設定できるようにしたので、
#--------------------------------------------------------------------------
# HTTPリクエスト対応処理
#--------------------------------------------------------------------------
class MyHandler(s.BaseHTTPRequestHandler):
def do_GET(self):
if (self.path == "/"):
self.path = "/index.html"
try:
send_reply = False
if (self.path.endswith(".html")):
mimetype = "text/html"
send_reply = True
if (self.path.endswith(".jpg")):
mimetype = "image/jpg"
send_reply = True
if (self.path.endswith(".gif")):
mimetype = "image/gif"
send_reply = True
if (self.path.endswith(".js")):
mimetype = "application/javascript"
send_reply = True
if (self.path.endswith(".css")):
mimetype = "text/css"
send_reply = True
if (send_reply == True):
cur_dir = os.getcwd() # カレントフォルダ取得
logging.info(cur_dir)
tar_file = cur_dir + self.path
if (os.path.isfile(tar_file)):
f = open(tar_file)
txt = f.read()
f.close()
self.send_response(200)
self.send_header("Content-type", mimetype)
self.end_headers()
logging.info("GET request,\nPath: %s\nHeaders:\n%s\n", str(self.path), str(self.headers))
#self.wfile.write("GET request for {}" . format(self.path).encode("utf-8"))
self.wfile.write(txt.encode("utf-8"))
return
except IOError:
self.send_error(404, 'File Not Found: %s' % self.path)
ここもシンプルに、ルートにアクセスされた場合、index.html を設定して
ファイルを読み込んで、クライアントに渡すようにしてます。
カレントフォルダは、HTMLファイル類は別フォルダに、まとめて管理したいので
ルートフォルダを移動するようにしてます。
指定外のファイルは、読み込まないように調整します。
POST 処理については、次回...
0 件のコメント:
コメントを投稿