mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
9ab210a7d7
* Org: use constants for status codes * ServiceAccounts: Avoid creating new orgs for service accounts * Document createUserBehavior * Update pkg/services/sqlstore/org_users_test.go * add doc string to flag
229 lines
7.1 KiB
Go
229 lines
7.1 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/infra/metrics"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
// GET /api/org
|
|
func (hs *HTTPServer) GetCurrentOrg(c *models.ReqContext) response.Response {
|
|
return hs.getOrgHelper(c.Req.Context(), c.OrgId)
|
|
}
|
|
|
|
// GET /api/orgs/:orgId
|
|
func (hs *HTTPServer) GetOrgByID(c *models.ReqContext) response.Response {
|
|
orgId, err := strconv.ParseInt(web.Params(c.Req)[":orgId"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "orgId is invalid", err)
|
|
}
|
|
return hs.getOrgHelper(c.Req.Context(), orgId)
|
|
}
|
|
|
|
// GET /api/orgs/name/:name
|
|
func (hs *HTTPServer) GetOrgByName(c *models.ReqContext) response.Response {
|
|
org, err := hs.SQLStore.GetOrgByName(web.Params(c.Req)[":name"])
|
|
if err != nil {
|
|
if errors.Is(err, models.ErrOrgNotFound) {
|
|
return response.Error(http.StatusNotFound, "Organization not found", err)
|
|
}
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to get organization", err)
|
|
}
|
|
result := models.OrgDetailsDTO{
|
|
Id: org.Id,
|
|
Name: org.Name,
|
|
Address: models.Address{
|
|
Address1: org.Address1,
|
|
Address2: org.Address2,
|
|
City: org.City,
|
|
ZipCode: org.ZipCode,
|
|
State: org.State,
|
|
Country: org.Country,
|
|
},
|
|
}
|
|
|
|
return response.JSON(http.StatusOK, &result)
|
|
}
|
|
|
|
func (hs *HTTPServer) getOrgHelper(ctx context.Context, orgID int64) response.Response {
|
|
query := models.GetOrgByIdQuery{Id: orgID}
|
|
|
|
if err := hs.SQLStore.GetOrgById(ctx, &query); err != nil {
|
|
if errors.Is(err, models.ErrOrgNotFound) {
|
|
return response.Error(http.StatusNotFound, "Organization not found", err)
|
|
}
|
|
return response.Error(http.StatusInternalServerError, "Failed to get organization", err)
|
|
}
|
|
|
|
org := query.Result
|
|
result := models.OrgDetailsDTO{
|
|
Id: org.Id,
|
|
Name: org.Name,
|
|
Address: models.Address{
|
|
Address1: org.Address1,
|
|
Address2: org.Address2,
|
|
City: org.City,
|
|
ZipCode: org.ZipCode,
|
|
State: org.State,
|
|
Country: org.Country,
|
|
},
|
|
}
|
|
|
|
return response.JSON(http.StatusOK, &result)
|
|
}
|
|
|
|
// POST /api/orgs
|
|
func (hs *HTTPServer) CreateOrg(c *models.ReqContext) response.Response {
|
|
cmd := models.CreateOrgCommand{}
|
|
if err := web.Bind(c.Req, &cmd); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
acEnabled := !hs.AccessControl.IsDisabled()
|
|
if !acEnabled && !(setting.AllowUserOrgCreate || c.IsGrafanaAdmin) {
|
|
return response.Error(http.StatusForbidden, "Access denied", nil)
|
|
}
|
|
|
|
cmd.UserId = c.UserId
|
|
if err := hs.SQLStore.CreateOrg(c.Req.Context(), &cmd); err != nil {
|
|
if errors.Is(err, models.ErrOrgNameTaken) {
|
|
return response.Error(http.StatusConflict, "Organization name taken", err)
|
|
}
|
|
return response.Error(http.StatusInternalServerError, "Failed to create organization", err)
|
|
}
|
|
|
|
metrics.MApiOrgCreate.Inc()
|
|
|
|
return response.JSON(http.StatusOK, &util.DynMap{
|
|
"orgId": cmd.Result.Id,
|
|
"message": "Organization created",
|
|
})
|
|
}
|
|
|
|
// PUT /api/org
|
|
func (hs *HTTPServer) UpdateCurrentOrg(c *models.ReqContext) response.Response {
|
|
form := dtos.UpdateOrgForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return hs.updateOrgHelper(c.Req.Context(), form, c.OrgId)
|
|
}
|
|
|
|
// PUT /api/orgs/:orgId
|
|
func (hs *HTTPServer) UpdateOrg(c *models.ReqContext) response.Response {
|
|
form := dtos.UpdateOrgForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
orgId, err := strconv.ParseInt(web.Params(c.Req)[":orgId"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "orgId is invalid", err)
|
|
}
|
|
return hs.updateOrgHelper(c.Req.Context(), form, orgId)
|
|
}
|
|
|
|
func (hs *HTTPServer) updateOrgHelper(ctx context.Context, form dtos.UpdateOrgForm, orgID int64) response.Response {
|
|
cmd := models.UpdateOrgCommand{Name: form.Name, OrgId: orgID}
|
|
if err := hs.SQLStore.UpdateOrg(ctx, &cmd); err != nil {
|
|
if errors.Is(err, models.ErrOrgNameTaken) {
|
|
return response.Error(http.StatusBadRequest, "Organization name taken", err)
|
|
}
|
|
return response.Error(http.StatusInternalServerError, "Failed to update organization", err)
|
|
}
|
|
|
|
return response.Success("Organization updated")
|
|
}
|
|
|
|
// PUT /api/org/address
|
|
func (hs *HTTPServer) UpdateCurrentOrgAddress(c *models.ReqContext) response.Response {
|
|
form := dtos.UpdateOrgAddressForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return hs.updateOrgAddressHelper(c.Req.Context(), form, c.OrgId)
|
|
}
|
|
|
|
// PUT /api/orgs/:orgId/address
|
|
func (hs *HTTPServer) UpdateOrgAddress(c *models.ReqContext) response.Response {
|
|
form := dtos.UpdateOrgAddressForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
orgId, err := strconv.ParseInt(web.Params(c.Req)[":orgId"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "orgId is invalid", err)
|
|
}
|
|
return hs.updateOrgAddressHelper(c.Req.Context(), form, orgId)
|
|
}
|
|
|
|
func (hs *HTTPServer) updateOrgAddressHelper(ctx context.Context, form dtos.UpdateOrgAddressForm, orgID int64) response.Response {
|
|
cmd := models.UpdateOrgAddressCommand{
|
|
OrgId: orgID,
|
|
Address: models.Address{
|
|
Address1: form.Address1,
|
|
Address2: form.Address2,
|
|
City: form.City,
|
|
State: form.State,
|
|
ZipCode: form.ZipCode,
|
|
Country: form.Country,
|
|
},
|
|
}
|
|
|
|
if err := hs.SQLStore.UpdateOrgAddress(ctx, &cmd); err != nil {
|
|
return response.Error(http.StatusInternalServerError, "Failed to update org address", err)
|
|
}
|
|
|
|
return response.Success("Address updated")
|
|
}
|
|
|
|
// DELETE /api/orgs/:orgId
|
|
func (hs *HTTPServer) DeleteOrgByID(c *models.ReqContext) response.Response {
|
|
orgID, err := strconv.ParseInt(web.Params(c.Req)[":orgId"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "orgId is invalid", err)
|
|
}
|
|
// before deleting an org, check if user does not belong to the current org
|
|
if c.OrgId == orgID {
|
|
return response.Error(http.StatusBadRequest, "Can not delete org for current user", nil)
|
|
}
|
|
|
|
if err := hs.SQLStore.DeleteOrg(c.Req.Context(), &models.DeleteOrgCommand{Id: orgID}); err != nil {
|
|
if errors.Is(err, models.ErrOrgNotFound) {
|
|
return response.Error(http.StatusNotFound, "Failed to delete organization. ID not found", nil)
|
|
}
|
|
return response.Error(http.StatusInternalServerError, "Failed to update organization", err)
|
|
}
|
|
return response.Success("Organization deleted")
|
|
}
|
|
|
|
func (hs *HTTPServer) SearchOrgs(c *models.ReqContext) response.Response {
|
|
perPage := c.QueryInt("perpage")
|
|
if perPage <= 0 {
|
|
perPage = 1000
|
|
}
|
|
|
|
page := c.QueryInt("page")
|
|
|
|
query := models.SearchOrgsQuery{
|
|
Query: c.Query("query"),
|
|
Name: c.Query("name"),
|
|
Page: page,
|
|
Limit: perPage,
|
|
}
|
|
|
|
if err := hs.SQLStore.SearchOrgs(c.Req.Context(), &query); err != nil {
|
|
return response.Error(http.StatusInternalServerError, "Failed to search orgs", err)
|
|
}
|
|
|
|
return response.JSON(http.StatusOK, query.Result)
|
|
}
|