-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebserver.py
More file actions
153 lines (131 loc) · 6.41 KB
/
webserver.py
File metadata and controls
153 lines (131 loc) · 6.41 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
import cgi
from sqlalchemy import Column, ForeignKey, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, sessionmaker
from sqlalchemy import create_engine
from database_setup import Restaurant, MenuItem, Base
def initializeDatabase():
global engine, session
engine = create_engine('sqlite:///restaurantmenu.db')
Base.metadata.create_all(engine)
DBSession = sessionmaker(bind=engine)
session = DBSession()
class webserverHandler(BaseHTTPRequestHandler):
def do_GET(self):
try:
if self.path.endswith("/delete"):
restaurantIDPath = self.path.split("/")[2]
myRestaurantQuery = session.query(Restaurant).filter_by(
id=restaurantIDPath).one()
if myRestaurantQuery:
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
output = ""
output += "<html><body>"
output += "<h1>Are you sure you want to delete %s?" % myRestaurantQuery.name
output += "<form method='POST' enctype = 'multipart/form-data' action = '/restaurants/%s/delete'>" % restaurantIDPath
output += "<input type = 'submit' value = 'Delete'>"
output += "</form>"
output += "</body></html>"
self.wfile.write(output)
if self.path.endswith("/edit"):
restaurantId = self.path.split("/")[2]
restaurant = session.query(Restaurant).filter_by(id=restaurantId)
if restaurant != []:
self.send_response(200)
self.send_header('Content-type','text/html')
self.end_headers()
output = ""
output += "<html><body>"
output += "<form method='POST' enctype='multipart/form-data' action='/restaurants/%s/edit'>" %restaurantId
output += "<input type='text' name='restaurantnewname' >"
output += "<input type='submit' value='Rename' >"
output += "</form>"
output += "</body></html>"
self.wfile.write(output)
if self.path.endswith("/restaurants/new"):
self.send_response(200)
self.send_header('Content-type','text/html')
self.end_headers()
output = ""
output += "<html><body>"
output += "<form method='POST' enctype='multipart/form-data' action='/restaurants/new'> <input type='text' name='restaurantname' >"
output += "<input type='submit' value='Create' >"
output += "</body></html>"
self.wfile.write(output)
if self.path.endswith("/restaurants"):
self.send_response(200)
self.send_header('Content-type','text/html')
self.end_headers()
output = ""
restaurants = session.query(Restaurant).all()
output += "<html><body>"
output += "<a href='/restaurants/new'><h2>Add New Restaurant</h2></a>"
for restaurant in restaurants:
print restaurant.name
output += restaurant.name
output += " <a href='/restaurants/%s/edit'>edit</a> " %restaurant.id
output += " <a href='/restaurants/%s/delete'>delete</a> " %restaurant.id
output += "<br>"
output += "</body></html>"
self.wfile.write(output)
except IOError:
self.send_error(404, "File Not Found %s" %self.path)
def do_POST(self):
try:
if self.path.endswith("/delete"):
restaurantIDPath = self.path.split("/")[2]
myRestaurantQuery = session.query(Restaurant).filter_by(
id=restaurantIDPath).one()
if myRestaurantQuery:
session.delete(myRestaurantQuery)
session.commit()
self.send_response(301)
self.send_header('Content-type', 'text/html')
self.send_header('Location', '/restaurants')
self.end_headers()
if self.path.endswith("/edit"):
ctype, pdict = cgi.parse_header(
self.headers.getheader('content-type'))
if ctype == 'multipart/form-data':
fields = cgi.parse_multipart(self.rfile, pdict)
messagecontent = fields.get('restaurantnewname')
restaurantIDPath = self.path.split("/")[2]
myRestaurantQuery = session.query(Restaurant).filter_by(
id=restaurantIDPath).one()
if myRestaurantQuery != []:
myRestaurantQuery.name = messagecontent[0]
session.add(myRestaurantQuery)
session.commit()
self.send_response(301)
self.send_header('Content-type', 'text/html')
self.send_header('Location', '/restaurants')
self.end_headers()
if self.path.endswith("/restaurants/new"):
ctype, pdict = cgi.parse_header(self.headers.getheader('content-type'))
if ctype == 'multipart/form-data':
fields = cgi.parse_multipart(self.rfile,pdict)
messageContent = fields.get('restaurantname')
newRestaurant = Restaurant(name=messageContent[0])
session.add(newRestaurant)
session.commit()
self.send_response(301)
self.send_header('Content-type','text/html')
self.send_header('Location','/restaurants')
self.end_headers()
except:
pass
def main():
try:
initializeDatabase()
port = 8080
server = HTTPServer(('',port),webserverHandler)
print "Web server running on port %s" % port
server.serve_forever()
except KeyboardInterrupt:
print "User terminated the server"
server.socket.close()
if __name__ == '__main__':
main()