func AdminCreateUser(c *common.HTTPContext) (err error) { user := &User{} if err = json.NewDecoder(c.Req().Body).Decode(user); err != nil { return } err = c.DB().Set(user) return }
func AdminBecome(c *common.HTTPContext) (err error) { c.Session().Values[common.SessionEmail] = c.Req().FormValue("become") c.Close() c.Resp().Header().Set("Location", "/") c.Resp().WriteHeader(302) fmt.Fprintln(c.Resp(), "/") return }
func Logout(c *common.HTTPContext) (err error) { delete(c.Session().Values, common.SessionEmail) c.Close() redirect := c.Req().FormValue("return_to") if redirect == "" { redirect = fmt.Sprintf("http://%v/", c.Req().Host) } c.Resp().Header().Set("Location", redirect) c.Resp().WriteHeader(302) fmt.Fprintln(c.Resp(), redirect) return }
func Openid(c *common.HTTPContext) (err error) { redirect, email, ok, err := gopenid.VerifyAuth(c.Req()) if err != nil { return } if ok { email = strings.ToLower(email) c.Session().Values[common.SessionEmail] = email u := &User{Id: kol.Id(email)} err = c.DB().Get(u) if err == kol.NotFound { err = nil u.Email = email u.Ranking = 1 } if err == nil { u.Language = common.GetLanguage(c.Req()) u.DiplicityHost = c.Req().Host u.LastLoginAt = time.Now() err = c.DB().Set(u) } } else { delete(c.Session().Values, common.SessionEmail) } c.Close() c.Resp().Header().Set("Location", redirect.String()) c.Resp().WriteHeader(302) fmt.Fprintln(c.Resp(), redirect.String()) return }
func Resolve(c *common.HTTPContext) (err error) { phase := &Phase{} if err = json.NewDecoder(c.Req().Body).Decode(phase); err != nil { return } state, err := phase.State() if err != nil { return } if err = state.Next(); err != nil { return } // Load the new godip phase from the state nextDipPhase := state.Phase() // Create a diplicity phase for the new phase nextPhase := &Phase{ Ordinal: phase.Ordinal + 1, Orders: map[dip.Nation]map[dip.Province][]string{}, Resolutions: map[dip.Province]string{}, Season: nextDipPhase.Season(), Year: nextDipPhase.Year(), Type: nextDipPhase.Type(), } // Set the new phase positions var resolutions map[dip.Province]error nextPhase.Units, nextPhase.SupplyCenters, nextPhase.Dislodgeds, nextPhase.Dislodgers, nextPhase.Bounces, resolutions = state.Dump() for prov, err := range resolutions { if err == nil { nextPhase.Resolutions[prov] = "OK" } else { nextPhase.Resolutions[prov] = err.Error() } } c.Resp().Header().Set("Content-Type", "application/json; charset=UTF-8") if err = json.NewEncoder(c.Resp()).Encode(nextPhase); err != nil { return } return }
func Login(c *common.HTTPContext) (err error) { redirect := c.Req().FormValue("return_to") if redirect == "" { redirect = fmt.Sprintf("http://%v/", c.Req().Host) } redirectUrl, err := url.Parse(redirect) if err != nil { return } url, err := gopenid.GetAuthURL(c.Req(), redirectUrl) if err != nil { return } c.Resp().Header().Set("Location", url.String()) c.Resp().WriteHeader(302) fmt.Fprintln(c.Resp(), url.String()) return }