| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-11-19 20:34:28 +08:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 20:49:04 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/dtos" | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/response" | 
					
						
							| 
									
										
										
										
											2015-02-05 17:37:13 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/bus" | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/models" | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/setting" | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/util" | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | // GET /api/user  (current authenticated user)
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetSignedInUser(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 	return getUserUserProfile(c.UserId) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | // GET /api/users/:id
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetUserByID(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 	return getUserUserProfile(c.ParamsInt64(":id")) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func getUserUserProfile(userID int64) response.Response { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := models.GetUserProfileQuery{UserId: userID} | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&query); err != nil { | 
					
						
							| 
									
										
										
										
											2020-11-19 20:34:28 +08:00
										 |  |  | 		if errors.Is(err, models.ErrUserNotFound) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			return response.Error(404, models.ErrUserNotFound.Error(), nil) | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to get user", err) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	getAuthQuery := models.GetAuthInfoQuery{UserId: userID} | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 	query.Result.AuthLabels = []string{} | 
					
						
							| 
									
										
										
										
											2019-06-25 23:29:07 +08:00
										 |  |  | 	if err := bus.Dispatch(&getAuthQuery); err == nil { | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 		authLabel := GetAuthProviderLabel(getAuthQuery.Result.AuthModule) | 
					
						
							|  |  |  | 		query.Result.AuthLabels = append(query.Result.AuthLabels, authLabel) | 
					
						
							|  |  |  | 		query.Result.IsExternal = true | 
					
						
							| 
									
										
										
										
											2019-06-25 23:29:07 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 00:10:19 +08:00
										 |  |  | 	query.Result.AvatarUrl = dtos.GetGravatarUrl(query.Result.Email) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, query.Result) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | // GET /api/users/lookup
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetUserByLoginOrEmail(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := models.GetUserByLoginQuery{LoginOrEmail: c.Query("loginOrEmail")} | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 	if err := bus.Dispatch(&query); err != nil { | 
					
						
							| 
									
										
										
										
											2020-11-19 20:34:28 +08:00
										 |  |  | 		if errors.Is(err, models.ErrUserNotFound) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			return response.Error(404, models.ErrUserNotFound.Error(), nil) | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to get user", err) | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	user := query.Result | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	result := models.UserProfileDTO{ | 
					
						
							| 
									
										
										
										
											2017-06-25 20:23:03 +08:00
										 |  |  | 		Id:             user.Id, | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 		Name:           user.Name, | 
					
						
							|  |  |  | 		Email:          user.Email, | 
					
						
							|  |  |  | 		Login:          user.Login, | 
					
						
							|  |  |  | 		Theme:          user.Theme, | 
					
						
							|  |  |  | 		IsGrafanaAdmin: user.IsAdmin, | 
					
						
							|  |  |  | 		OrgId:          user.OrgId, | 
					
						
							| 
									
										
										
										
											2019-10-01 03:54:09 +08:00
										 |  |  | 		UpdatedAt:      user.Updated, | 
					
						
							|  |  |  | 		CreatedAt:      user.Created, | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, &result) | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-19 01:06:19 +08:00
										 |  |  | // POST /api/user
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func UpdateSignedInUser(c *models.ReqContext, cmd models.UpdateUserCommand) response.Response { | 
					
						
							| 
									
										
										
										
											2016-12-15 05:19:25 +08:00
										 |  |  | 	if setting.AuthProxyEnabled { | 
					
						
							|  |  |  | 		if setting.AuthProxyHeaderProperty == "email" && cmd.Email != c.Email { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			return response.Error(400, "Not allowed to change email when auth proxy is using email property", nil) | 
					
						
							| 
									
										
										
										
											2016-12-15 05:19:25 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if setting.AuthProxyHeaderProperty == "username" && cmd.Login != c.Login { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			return response.Error(400, "Not allowed to change username when auth proxy is using username property", nil) | 
					
						
							| 
									
										
										
										
											2016-12-15 05:19:25 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	cmd.UserId = c.UserId | 
					
						
							| 
									
										
										
										
											2015-05-19 01:06:19 +08:00
										 |  |  | 	return handleUpdateUser(cmd) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // POST /api/users/:id
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func UpdateUser(c *models.ReqContext, cmd models.UpdateUserCommand) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-19 01:06:19 +08:00
										 |  |  | 	cmd.UserId = c.ParamsInt64(":id") | 
					
						
							|  |  |  | 	return handleUpdateUser(cmd) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-22 22:22:19 +08:00
										 |  |  | // POST /api/users/:id/using/:orgId
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func UpdateUserActiveOrg(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	userID := c.ParamsInt64(":id") | 
					
						
							|  |  |  | 	orgID := c.ParamsInt64(":orgId") | 
					
						
							| 
									
										
										
										
											2016-05-26 12:51:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	if !validateUsingOrg(userID, orgID) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(401, "Not a valid organization", nil) | 
					
						
							| 
									
										
										
										
											2016-05-26 12:51:23 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	cmd := models.SetUsingOrgCommand{UserId: userID, OrgId: orgID} | 
					
						
							| 
									
										
										
										
											2016-05-26 12:51:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to change active organization", err) | 
					
						
							| 
									
										
										
										
											2016-05-26 12:51:23 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("Active organization changed") | 
					
						
							| 
									
										
										
										
											2016-05-26 12:51:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func handleUpdateUser(cmd models.UpdateUserCommand) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-19 01:06:19 +08:00
										 |  |  | 	if len(cmd.Login) == 0 { | 
					
						
							|  |  |  | 		cmd.Login = cmd.Email | 
					
						
							|  |  |  | 		if len(cmd.Login) == 0 { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			return response.Error(400, "Validation error, need to specify either username or email", nil) | 
					
						
							| 
									
										
										
										
											2015-05-19 01:06:19 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to update user", err) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("User updated") | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | // GET /api/user/orgs
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetSignedInUserOrgList(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 	return getUserOrgList(c.UserId) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-08 16:26:05 +08:00
										 |  |  | // GET /api/user/teams
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetSignedInUserTeamList(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2018-11-19 17:08:10 +08:00
										 |  |  | 	return getUserTeamList(c.OrgId, c.UserId) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GET /api/users/:id/teams
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetUserTeams(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2018-11-19 17:09:45 +08:00
										 |  |  | 	return getUserTeamList(c.OrgId, c.ParamsInt64(":id")) | 
					
						
							| 
									
										
										
										
											2018-11-19 17:08:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func getUserTeamList(orgID int64, userID int64) response.Response { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := models.GetTeamsByUserQuery{OrgId: orgID, UserId: userID} | 
					
						
							| 
									
										
										
										
											2018-08-08 16:26:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&query); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to get user teams", err) | 
					
						
							| 
									
										
										
										
											2018-08-08 16:26:05 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, team := range query.Result { | 
					
						
							|  |  |  | 		team.AvatarUrl = dtos.GetGravatarUrlWithDefault(team.Email, team.Name) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, query.Result) | 
					
						
							| 
									
										
										
										
											2018-08-08 16:26:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-19 17:08:10 +08:00
										 |  |  | // GET /api/users/:id/orgs
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func GetUserOrgList(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 	return getUserOrgList(c.ParamsInt64(":id")) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func getUserOrgList(userID int64) response.Response { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := models.GetUserOrgListQuery{UserId: userID} | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&query); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to get user organizations", err) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, query.Result) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | func validateUsingOrg(userID int64, orgID int64) bool { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := models.GetUserOrgListQuery{UserId: userID} | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&query); err != nil { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 03:07:49 +08:00
										 |  |  | 	// validate that the org id in the list
 | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	valid := false | 
					
						
							|  |  |  | 	for _, other := range query.Result { | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 		if other.OrgId == orgID { | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 			valid = true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return valid | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 20:59:38 +08:00
										 |  |  | // POST /api/user/using/:id
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func UserSetUsingOrg(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	orgID := c.ParamsInt64(":id") | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	if !validateUsingOrg(c.UserId, orgID) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(401, "Not a valid organization", nil) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	cmd := models.SetUsingOrgCommand{UserId: c.UserId, OrgId: orgID} | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to change active organization", err) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("Active organization changed") | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | // GET /profile/switch-org/:id
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | func (hs *HTTPServer) ChangeActiveOrgAndRedirectToHome(c *models.ReqContext) { | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	orgID := c.ParamsInt64(":id") | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-22 19:37:35 +08:00
										 |  |  | 	if !validateUsingOrg(c.UserId, orgID) { | 
					
						
							| 
									
										
										
										
											2018-10-12 17:26:42 +08:00
										 |  |  | 		hs.NotFoundHandler(c) | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	cmd := models.SetUsingOrgCommand{UserId: c.UserId, OrgId: orgID} | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2018-10-12 17:26:42 +08:00
										 |  |  | 		hs.NotFoundHandler(c) | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 19:41:29 +08:00
										 |  |  | 	c.Redirect(hs.Cfg.AppSubURL + "/") | 
					
						
							| 
									
										
										
										
											2016-04-10 01:27:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func ChangeUserPassword(c *models.ReqContext, cmd models.ChangeUserPasswordCommand) response.Response { | 
					
						
							| 
									
										
										
										
											2019-05-22 20:30:03 +08:00
										 |  |  | 	if setting.LDAPEnabled || setting.AuthProxyEnabled { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(400, "Not allowed to change password when LDAP or Auth Proxy is enabled", nil) | 
					
						
							| 
									
										
										
										
											2016-12-15 05:19:25 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	userQuery := models.GetUserByIdQuery{Id: c.UserId} | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 13:51:33 +08:00
										 |  |  | 	if err := bus.DispatchCtx(c.Req.Context(), &userQuery); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Could not read user from database", err) | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-23 16:40:12 +08:00
										 |  |  | 	passwordHashed, err := util.EncodePassword(cmd.OldPassword, userQuery.Result.Salt) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to encode password", err) | 
					
						
							| 
									
										
										
										
											2019-10-23 16:40:12 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	if passwordHashed != userQuery.Result.Password { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(401, "Invalid old password", nil) | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	password := models.Password(cmd.NewPassword) | 
					
						
							| 
									
										
										
										
											2016-12-09 22:25:02 +08:00
										 |  |  | 	if password.IsWeak() { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(400, "New password is too short", nil) | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd.UserId = c.UserId | 
					
						
							| 
									
										
										
										
											2019-10-23 16:40:12 +08:00
										 |  |  | 	cmd.NewPassword, err = util.EncodePassword(cmd.NewPassword, userQuery.Result.Salt) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to encode password", err) | 
					
						
							| 
									
										
										
										
											2019-10-23 16:40:12 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to change user password", err) | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("User password changed") | 
					
						
							| 
									
										
										
										
											2015-02-19 23:09:49 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-11 06:36:35 +08:00
										 |  |  | // redirectToChangePassword handles GET /.well-known/change-password.
 | 
					
						
							|  |  |  | func redirectToChangePassword(c *models.ReqContext) { | 
					
						
							|  |  |  | 	c.Redirect("/profile/password", 302) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | // GET /api/users
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func SearchUsers(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	query, err := searchUser(c) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to fetch users", err) | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, query.Result.Users) | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-10 07:24:16 +08:00
										 |  |  | // GET /api/users/search
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func SearchUsersWithPaging(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	query, err := searchUser(c) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to fetch users", err) | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, query.Result) | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | func searchUser(c *models.ReqContext) (*models.SearchUsersQuery, error) { | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	perPage := c.QueryInt("perpage") | 
					
						
							|  |  |  | 	if perPage <= 0 { | 
					
						
							|  |  |  | 		perPage = 1000 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	page := c.QueryInt("page") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if page < 1 { | 
					
						
							|  |  |  | 		page = 1 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 23:03:54 +08:00
										 |  |  | 	searchQuery := c.Query("query") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	query := &models.SearchUsersQuery{Query: searchQuery, Page: page, Limit: perPage} | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	if err := bus.Dispatch(query); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 20:49:04 +08:00
										 |  |  | 	for _, user := range query.Result.Users { | 
					
						
							|  |  |  | 		user.AvatarUrl = dtos.GetGravatarUrl(user.Email) | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 		user.AuthLabels = make([]string, 0) | 
					
						
							|  |  |  | 		if user.AuthModule != nil && len(user.AuthModule) > 0 { | 
					
						
							|  |  |  | 			for _, authModule := range user.AuthModule { | 
					
						
							|  |  |  | 				user.AuthLabels = append(user.AuthLabels, GetAuthProviderLabel(authModule)) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-18 20:49:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-08 21:20:07 +08:00
										 |  |  | 	query.Result.Page = page | 
					
						
							|  |  |  | 	query.Result.PerPage = perPage | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return query, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func SetHelpFlag(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 	flag := c.ParamsInt64(":id") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bitmask := &c.HelpFlags1 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	bitmask.AddFlag(models.HelpFlags1(flag)) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	cmd := models.SetUserHelpFlagCommand{ | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 		UserId:     c.UserId, | 
					
						
							|  |  |  | 		HelpFlags1: *bitmask, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to update help flag", err) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, &util.DynMap{"message": "Help flag set", "helpFlags1": cmd.HelpFlags1}) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | func ClearHelpFlags(c *models.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 	cmd := models.SetUserHelpFlagCommand{ | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 		UserId:     c.UserId, | 
					
						
							| 
									
										
										
										
											2020-03-04 19:57:20 +08:00
										 |  |  | 		HelpFlags1: models.HelpFlags1(0), | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err := bus.Dispatch(&cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		return response.Error(500, "Failed to update help flag", err) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.JSON(200, &util.DynMap{"message": "Help flag set", "helpFlags1": cmd.HelpFlags1}) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | func GetAuthProviderLabel(authModule string) string { | 
					
						
							|  |  |  | 	switch authModule { | 
					
						
							|  |  |  | 	case "oauth_github": | 
					
						
							|  |  |  | 		return "GitHub" | 
					
						
							|  |  |  | 	case "oauth_google": | 
					
						
							|  |  |  | 		return "Google" | 
					
						
							| 
									
										
										
										
											2020-02-13 17:12:25 +08:00
										 |  |  | 	case "oauth_azuread": | 
					
						
							|  |  |  | 		return "AzureAD" | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 	case "oauth_gitlab": | 
					
						
							|  |  |  | 		return "GitLab" | 
					
						
							|  |  |  | 	case "oauth_grafana_com", "oauth_grafananet": | 
					
						
							|  |  |  | 		return "grafana.com" | 
					
						
							| 
									
										
										
										
											2019-07-19 22:13:29 +08:00
										 |  |  | 	case "auth.saml": | 
					
						
							|  |  |  | 		return "SAML" | 
					
						
							| 
									
										
										
										
											2019-07-10 17:06:51 +08:00
										 |  |  | 	case "ldap", "": | 
					
						
							|  |  |  | 		return "LDAP" | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return "OAuth" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |