| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package api
- import (
- "github.com/grafana/grafana/pkg/api/dtos"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/events"
- "github.com/grafana/grafana/pkg/metrics"
- "github.com/grafana/grafana/pkg/middleware"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/setting"
- "github.com/grafana/grafana/pkg/util"
- )
- // POST /api/user/signup
- func SignUp(c *middleware.Context, form dtos.SignUpForm) Response {
- if !setting.AllowUserSignUp {
- return ApiError(401, "User signup is disabled", nil)
- }
- existing := m.GetUserByLoginQuery{LoginOrEmail: form.Email}
- if err := bus.Dispatch(&existing); err == nil {
- return ApiError(401, "User with same email address already exists", nil)
- }
- cmd := m.CreateTempUserCommand{}
- cmd.OrgId = -1
- cmd.Email = form.Email
- cmd.Status = m.TmpUserSignUpStarted
- cmd.InvitedByUserId = c.UserId
- cmd.Code = util.GetRandomString(20)
- cmd.RemoteAddr = c.Req.RemoteAddr
- if err := bus.Dispatch(&cmd); err != nil {
- return ApiError(500, "Failed to create signup", err)
- }
- // user := cmd.Resu
- bus.Publish(&events.SignUpStarted{
- Email: form.Email,
- Code: cmd.Code,
- })
- // loginUserWithUser(&user, c)
- metrics.M_Api_User_SignUpStarted.Inc(1)
- return Json(200, util.DynMap{"status": "SignUpCreated"})
- }
- func SignUpStep2(c *middleware.Context, form dtos.SignUpStep2Form) Response {
- if !setting.AllowUserSignUp {
- return ApiError(401, "User signup is disabled", nil)
- }
- query := m.GetTempUserByCodeQuery{Code: form.Code}
- if err := bus.Dispatch(&query); err != nil {
- if err == m.ErrTempUserNotFound {
- return ApiError(404, "Invalid email verification code", nil)
- }
- return ApiError(500, "Failed to read temp user", err)
- }
- tempUser := query.Result
- if tempUser.Email != form.Email {
- return ApiError(404, "Email verification code does not match email", nil)
- }
- existing := m.GetUserByLoginQuery{LoginOrEmail: tempUser.Email}
- if err := bus.Dispatch(&existing); err == nil {
- return ApiError(401, "User with same email address already exists", nil)
- }
- return Json(200, util.DynMap{"status": "SignUpCreated"})
- }
|