Python Web インターフェイスを作成しています。フォームに入力すると、それがバックグラウンドの Python 関数に送信され、何かが起こります。
これらのバックグラウンド関数の 1 つに問題があります。このような簡単なプロジェクトを作成するのは初めてではなく、このエラーに遭遇したことがないため、困惑しています。
commands.py、header.py、product.py の 3 つのファイルがあります。
product.py は次のようになります。
#!/usr/bin/python
import sys
import os
import cgitb
cgitb.enable()
sys.path.append(os.path.abspath("/var/www/cgi-bin/includes/"))
from header import *
page = get_page_name(sys.argv[0])
printDefaultPage(0,page)
これは、header.py を経由するルートです。
def printDefaultPage(error,page): #this prints the page
printHTTPHeaders() #print headers
printHeader(page) #print header.inc
printPage(page)
printFooter() #print footer.inc
上記の関数は、ヘッダー、ヘッド、ページの本文、およびフッターをすべて他の関数を呼び出して出力します。
def printPage(page):
if page == "product":
print """<form method='post' id="register_form" name="client_frm"></br>
<label for="id">Enter the subscription to use:</label>"""
list_subscriptions()
print """<a href="/cgi-bin/index.py"><input class="login" type="button" value="Back"></a>
</form>"""
ご覧のとおり、printPage は次のような関数 list_subscriptions() を呼び出します。
def list_subscriptions():
subscriptions=get_subscriptions()
print """<select name = "sub">"""
for s in subscriptions:
id = s
price = subscriptions.get(str(s)).get('price')
scans = subscriptions.get(str(s)).get('scans_per_month')
print """<option value ="""+str(id)+"""">"""+str(price)+""" - """+str(scans)+"""</option>"""
print "</select>"
これは次に、コマンドと呼ばれるファイルに存在する get_subscriptions を呼び出します。このファイルは上部にインポートされます。
#!/usr/bin/python
from commands import *
完全を期すために、get_subscriptions は次のとおりです。
def get_subscriptions():
subscriptions=proxy.get_subscriptions()
return subscriptions
そして反対側:
def get_subscriptions(self):
subscriptions=self.store.find(Subscription)
subs = {}
for sub in subscriptions:
subs[str(sub.id)] = {}
subs[str(sub.id)]['scans_per_month'] = sub.scans_per_month
subs[str(sub.id)]['price'] = int(sub.price)
return subs
get_subscriptions() は辞書を返します。さらに困惑するのは、python コマンド ラインで printPage("product") を実行すると、機能することです。
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from header import *
>>> printPage("product")
<form method='post' id="register_form" name="client_frm"></br>
<label for="id">Enter the subscription to use:</label>
<select name = "sub">
<option value =1">19 - 20</option>
<option value =3">59 - 100</option>
<option value =2">39 - 50</option>
<option value =5">0 - 0</option>
<option value =4">0 - 1000</option>
</select>
<a href="/cgi-bin/index.py"><input class="login" type="button" value="Back"></a>
</form>
それでも、代わりに素敵な選択ボックスが表示されることを期待してブラウザーで product.py にアクセスすると、次の重大なエラーが発生します。
/var/www/cgi-bin/includes/header.py in list_subscriptions()
7
8 def list_subscriptions():
=> 9 subscriptions=get_subscriptions()
10 print """<select name = "sub">"""
11 for s in subscriptions:
subscriptions undefined, get_subscriptions undefined
編集: ファイルはすべて 755 への chmod であり、すべて www-data によって所有されています。
編集: Python コマンド ラインで printDefaultPage(0,"product") を実行すると、次のように返されます。
>>> printDefaultPage(0,"product")
Content-Type: text/html
Vary: *
Title: Encriptor
Cache-Control: no-cache, no store, must-revalidate
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Encriptor Scanner</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="copyright" content="encription.co.uk" />
<meta name="language" content="en" />
<link rel="shortcut icon" href="/css/images/favicon.ico" />
<link href="/css/style.css" rel="stylesheet" type="text/css" />
<body>
<div class="wrap"
><div id="header">
<p id="logname"></p>
<img src="/images/raptor-logo.png" border="0"
id="logo-main"
/></div>
<ul class="menu">
</ul>
<div id="content">
<form method='post' id="register_form" name="client_frm"></br>
<label for="id">Enter the subscription to use:</label>
<select name = "sub">
<option value =1">19 - 20</option>
<option value =3">59 - 100</option>
<option value =2">39 - 50</option>
<option value =5">0 - 0</option>
<option value =4">0 - 1000</option>
</select>
<a href="/cgi-bin/index.py"><input class="login" type="button" value="Back"></a>
</form>
</div>
<p id="spacer"> </p>
</div>
</div>
</br>
<center><div id="footerlog">Encryptor v3 <span id="dot"$bull;</span>Copyright © 2015 <a href="https://www.encription.co.uk" target="_ne$
</div></center>
</body>
</html>
これは期待どおりですが、ブラウザでは機能しません。