haldis/app/database/create_database.py

83 lines
2.2 KiB
Python
Raw Normal View History

from app import db
2019-06-28 16:57:41 +00:00
import add_oceans_garden, add_admins, add_simpizza, add_primadonna, add_fitchen
2019-06-28 16:57:41 +00:00
entry_sets = {
"Admins": add_admins.add,
"Ocean's Garden": add_oceans_garden.add,
"SimPizza": add_simpizza.add,
"Primadonna": add_primadonna.add,
2019-09-05 01:33:29 +00:00
"Fitchen": add_fitchen.add,
2019-06-28 16:57:41 +00:00
}
yes = ["yes", "y", "Y"]
no = ["no", "n", "N"]
# Commit all the things
def commit():
db.session.commit()
print("Committing successful")
def check_if_overwrite():
2018-03-08 23:59:14 +00:00
answer = input("Do you want to overwrite the previous database? (y/N) ")
return answer in yes
def add_all():
2015-04-04 12:26:09 +00:00
for entry_set in entry_sets.keys():
print("Adding {}.".format(entry_set))
entry_sets[entry_set]()
def recreate_from_scratch():
2018-03-08 22:22:51 +00:00
confirmation = "Are you very very sure? (Will delete previous entries!) (y/N) "
check = "I acknowledge any repercussions!"
2018-03-08 23:59:14 +00:00
if input(confirmation) in yes and input("Type: '{}' ".format(check)) == check:
print("Resetting the database!")
db.drop_all()
db.create_all()
add_to_current()
def add_to_current():
2015-04-04 12:26:09 +00:00
available = [entry_set for entry_set in entry_sets]
def add_numbers():
2019-09-05 01:33:29 +00:00
return " ".join(
["{}({}), ".format(loc, i) for i, loc in enumerate(available)]
).rstrip(", ")
2018-03-08 23:59:14 +00:00
while input("Do you still want to add something? (Y/n) ") not in no:
2019-09-05 01:33:29 +00:00
print(
"What do you want to add? (Use numbers, or A for all, or C for cancel) "
)
2018-03-08 23:59:14 +00:00
answer = input("Available: {} : ".format(add_numbers()))
if answer == "A":
add_all()
available = []
elif answer == "C":
pass
elif answer in [str(x) for x in range(len(available))]:
answer = int(answer)
print("Adding {}.".format(available[answer]))
2015-04-04 12:26:09 +00:00
entry_sets[str(available[answer])]()
del available[answer]
else:
print("Not a valid answer.")
print("Thank you for adding, come again!")
def init():
2019-09-05 01:33:29 +00:00
print("Database modification script!")
print("=============================\n\n")
if check_if_overwrite():
recreate_from_scratch()
else:
add_to_current()
2015-04-04 12:36:19 +00:00
commit()
init()