-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend_server.py
113 lines (84 loc) · 2.88 KB
/
backend_server.py
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
import time
import uvicorn
from dotenv import load_dotenv
from fastapi import FastAPI, BackgroundTasks
from image import upload_screenshot
from order_manager import *
from webdriver_handler import *
load_dotenv()
app = FastAPI()
# my_twilio.send_text("Personal Order server started")
global driver
def testDemoOrder(idk):
driver = create_driver()
wait = WebDriverWait(driver, 150, poll_frequency=1)
# Opens the ondemand website
driver.get("https://ondemand.rit.edu/")
selectStore(driver, "Sol's")
items = selectCategory(driver, "Beverages")
selectedItems = []
selectedItems.append(select_item(items, "Aquafina Water 20 oz"))
selectedItems.append(select_item(items, "Schweppes Ginger Ale"))
for item in selectedItems:
addToCart(driver, items, item, {}, "Look how cool I am")
items = selectCategory(driver, "Ice Cream")
selectedItems = []
addToCart(driver, items, select_item(items, "Shake"), {"Shake Choices": "Strawberry"}, "Look how cool I am")
other_open_login(driver)
sign_in(driver)
wait.until(ec.element_to_be_clickable((By.CLASS_NAME, "cart-icon")))
driver.find_element(By.CLASS_NAME, "cart-icon").click()
return {"message": "Done with demo order"}
@app.get("/")
async def root():
return {"message": "Hello World"}
@app.get("/demoOrder")
async def demoOrder(BackgroundTasks: BackgroundTasks):
BackgroundTasks.add_task(testDemoOrder, "hi")
# send_text("Demo order started")
return {"message": "Demo order started"}
@app.get("/quitDriver")
async def quitDriver():
driver.quit()
return {"message": "Driver quit"}
@app.get("/order/{selection}")
async def say_hello(selection: str):
orderFood(selection)
@app.get("/testScreenshot")
async def testScreenshot():
driver = create_driver()
driver.get("https://www.youtube.com")
print("Created driver")
time.sleep(5)
link = upload_screenshot(driver, True, True)
print("Uploaded screenshot")
return {"message": "Screenshot is at: " + link}
def orderFood(selection):
# Initialize the Selenium WebDriver and the Wait object.
# Navigate to the website.
if selection == "breakfast1":
print("pizza")
elif selection == "breakfast2":
print("burger")
elif selection == "commonsBurger":
print("burger")
elif selection == "crossroadsBurger":
print("burger")
elif selection == "pasta1":
print("pasta")
elif selection == "pasta2":
print()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8080)
#TODO make this work
# @app.get('/sms')
# @app.post("/sms")
# async def root(request: Request):
# """Respond to incoming calls with a simple text message."""
# # Start our TwiML response
# # resp = MessagingResponse()
# #
# # # Add a message
# # resp.message("The Robots are coming! Head for the hills!")
# #
# # print(str(resp))