| // Copyright 2023 The casbin Authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| package controllers |
| |
| import ( |
| "encoding/json" |
| |
| "github.com/beego/beego/utils/pagination" |
| "github.com/casbin/caswaf/object" |
| "github.com/casbin/caswaf/util" |
| ) |
| |
| func (c *ApiController) GetGlobalSites() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| sites, err := object.GetGlobalSites() |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.ResponseOk(object.GetMaskedSites(sites, util.GetHostname())) |
| } |
| |
| func (c *ApiController) GetSites() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| owner := c.Input().Get("owner") |
| if owner == "admin" { |
| owner = "" |
| } |
| |
| limit := c.Input().Get("pageSize") |
| page := c.Input().Get("p") |
| field := c.Input().Get("field") |
| value := c.Input().Get("value") |
| sortField := c.Input().Get("sortField") |
| sortOrder := c.Input().Get("sortOrder") |
| |
| if limit == "" || page == "" { |
| sites, err := object.GetSites(owner) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| c.ResponseOk(object.GetMaskedSites(sites, util.GetHostname())) |
| return |
| } |
| |
| limitInt := util.ParseInt(limit) |
| count, err := object.GetSiteCount(owner, field, value) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| paginator := pagination.SetPaginator(c.Ctx, limitInt, count) |
| sites, err := object.GetPaginationSites(owner, paginator.Offset(), limitInt, field, value, sortField, sortOrder) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.ResponseOk(object.GetMaskedSites(sites, util.GetHostname()), paginator.Nums()) |
| } |
| |
| func (c *ApiController) GetSite() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| id := c.Input().Get("id") |
| |
| site, err := object.GetSite(id) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.ResponseOk(object.GetMaskedSite(site, util.GetHostname())) |
| } |
| |
| func (c *ApiController) UpdateSite() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| id := c.Input().Get("id") |
| |
| var site object.Site |
| err := json.Unmarshal(c.Ctx.Input.RequestBody, &site) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.Data["json"] = wrapActionResponse(object.UpdateSite(id, &site)) |
| c.ServeJSON() |
| } |
| |
| func (c *ApiController) AddSite() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| var site object.Site |
| err := json.Unmarshal(c.Ctx.Input.RequestBody, &site) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.Data["json"] = wrapActionResponse(object.AddSite(&site)) |
| c.ServeJSON() |
| } |
| |
| func (c *ApiController) DeleteSite() { |
| if c.RequireSignedIn() { |
| return |
| } |
| |
| var site object.Site |
| err := json.Unmarshal(c.Ctx.Input.RequestBody, &site) |
| if err != nil { |
| c.ResponseError(err.Error()) |
| return |
| } |
| |
| c.Data["json"] = wrapActionResponse(object.DeleteSite(&site)) |
| c.ServeJSON() |
| } |