//Root is used to show the login page of the app //when a user browses to the page (usually just the domain minus any path), the user is checked for a session //if a session exists, the app attempts to auto-login the user //otherwise a user is shown the log in prompt //this also handles the "first run" of the app in which no users exist yet...it forces creation of the "super admin" func Root(w http.ResponseWriter, r *http.Request) { //check that session store was initialized correctly if err := sessionutils.CheckSession(); err != nil { notificationPage(w, "panel-danger", sessionInitError, err, "btn-default", "/", "Go Back") return } //check that stripe private key and statement desecriptor were read correctly if err := card.CheckStripe(); err != nil { notificationPage(w, "panel-danger", sessionInitError, err, "btn-default", "/", "Go Back") return } //check if the admin user exists //redirect user to create admin if it does not exist err := users.DoesAdminExist(r) if err == users.ErrAdminDoesNotExist { http.Redirect(w, r, "/setup/", http.StatusFound) return } else if err != nil { notificationPage(w, "panel-danger", adminInitError, err, "btn-default", "/", "Go Back") return } //check if user is already signed in //if user is already logged in, redirect to /main/ page session := sessionutils.Get(r) if session.IsNew == false { uId := session.Values["user_id"].(int64) c := appengine.NewContext(r) u, err := users.Find(c, uId) if err != nil { sessionutils.Destroy(w, r) notificationPage(w, "panel-danger", "Autologin Error", "There was an issue looking up your user account. Please go back and try logging in.", "btn-default", "/", "Go Back") return } //user data was found //check if user is allowed access if users.AllowedAccess(u) == false { sessionutils.Destroy(w, r) notificationPage(w, "panel-danger", "Autologin Error", "You are not allowed access. Please contact an administrator.", "btn-default", "/", "Go Back") } //user account is found an allowed access //redirect user http.Redirect(w, r, "/main/", http.StatusFound) return } //load the login page templates.Load(w, "root", nil) return }
//CreateAdminShow loads the page used to create the initial admin user //this is done only upon the app running for the first time (per project on app engine since nothing exists in this project's datastore yet) func CreateAdminShow(w http.ResponseWriter, r *http.Request) { //check if the admin user already exists //no need to show this page if it does exist err := users.DoesAdminExist(r) if err == nil { http.Redirect(w, r, "/", http.StatusFound) return } templates.Load(w, "create-admin", nil) return }