326 lines
9.5 KiB
Go
326 lines
9.5 KiB
Go
// Copyright 2021 The Casdoor 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"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/beego/beego/v2/core/utils/pagination"
|
|
"github.com/casdoor/casdoor/object"
|
|
"github.com/casdoor/casdoor/util"
|
|
)
|
|
|
|
// GetApplications
|
|
// @Title GetApplications
|
|
// @Tag Application API
|
|
// @Description get all applications
|
|
// @Param owner query string true "The owner of applications."
|
|
// @Success 200 {array} object.Application The Response object
|
|
// @router /get-applications [get]
|
|
func (c *ApiController) GetApplications() {
|
|
userId := c.GetSessionUsername()
|
|
owner := c.Ctx.Input.Query("owner")
|
|
limit := c.Ctx.Input.Query("pageSize")
|
|
page := c.Ctx.Input.Query("p")
|
|
field := c.Ctx.Input.Query("field")
|
|
value := c.Ctx.Input.Query("value")
|
|
sortField := c.Ctx.Input.Query("sortField")
|
|
sortOrder := c.Ctx.Input.Query("sortOrder")
|
|
organization := c.Ctx.Input.Query("organization")
|
|
var err error
|
|
if limit == "" || page == "" {
|
|
var applications []*object.Application
|
|
if organization == "" {
|
|
applications, err = object.GetApplications(owner)
|
|
} else {
|
|
applications, err = object.GetOrganizationApplications(owner, organization)
|
|
}
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
c.ResponseOk(object.GetMaskedApplications(applications, userId))
|
|
} else {
|
|
limit := util.ParseInt(limit)
|
|
count, err := object.GetApplicationCount(owner, field, value)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
paginator := pagination.NewPaginator(c.Ctx.Request, limit, count)
|
|
application, err := object.GetPaginationApplications(owner, paginator.Offset(), limit, field, value, sortField, sortOrder)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
applications := object.GetMaskedApplications(application, userId)
|
|
c.ResponseOk(applications, paginator.Nums())
|
|
}
|
|
}
|
|
|
|
// GetApplication
|
|
// @Title GetApplication
|
|
// @Tag Application API
|
|
// @Description get the detail of an application
|
|
// @Param id query string true "The id ( owner/name ) of the application."
|
|
// @Success 200 {object} object.Application The Response object
|
|
// @router /get-application [get]
|
|
func (c *ApiController) GetApplication() {
|
|
userId := c.GetSessionUsername()
|
|
id := c.Ctx.Input.Query("id")
|
|
|
|
application, err := object.GetApplication(id)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if c.Ctx.Input.Query("withKey") != "" && application != nil && application.Cert != "" {
|
|
cert, err := object.GetCert(util.GetId(application.Owner, application.Cert))
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if cert == nil {
|
|
cert, err = object.GetCert(util.GetId(application.Organization, application.Cert))
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
}
|
|
|
|
if cert != nil {
|
|
application.CertPublicKey = cert.Certificate
|
|
}
|
|
}
|
|
|
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
|
object.CheckEntryIp(clientIp, nil, application, nil, c.GetAcceptLanguage())
|
|
|
|
c.ResponseOk(object.GetMaskedApplication(application, userId))
|
|
}
|
|
|
|
// GetUserApplication
|
|
// @Title GetUserApplication
|
|
// @Tag Application API
|
|
// @Description get the detail of the user's application
|
|
// @Param id query string true "The id ( owner/name ) of the user"
|
|
// @Success 200 {object} object.Application The Response object
|
|
// @router /get-user-application [get]
|
|
func (c *ApiController) GetUserApplication() {
|
|
userId := c.GetSessionUsername()
|
|
id := c.Ctx.Input.Query("id")
|
|
|
|
user, err := object.GetUser(id)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
if user == nil {
|
|
c.ResponseError(fmt.Sprintf(c.T("general:The user: %s doesn't exist"), id))
|
|
return
|
|
}
|
|
|
|
application, err := object.GetApplicationByUser(user)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
if application == nil {
|
|
c.ResponseError(fmt.Sprintf(c.T("general:The organization: %s should have one application at least"), user.Owner))
|
|
return
|
|
}
|
|
|
|
c.ResponseOk(object.GetMaskedApplication(application, userId))
|
|
}
|
|
|
|
// GetOrganizationApplications
|
|
// @Title GetOrganizationApplications
|
|
// @Tag Application API
|
|
// @Description get the detail of the organization's application
|
|
// @Param organization query string true "The organization name"
|
|
// @Success 200 {array} object.Application The Response object
|
|
// @router /get-organization-applications [get]
|
|
func (c *ApiController) GetOrganizationApplications() {
|
|
userId := c.GetSessionUsername()
|
|
organization := c.Ctx.Input.Query("organization")
|
|
owner := c.Ctx.Input.Query("owner")
|
|
limit := c.Ctx.Input.Query("pageSize")
|
|
page := c.Ctx.Input.Query("p")
|
|
field := c.Ctx.Input.Query("field")
|
|
value := c.Ctx.Input.Query("value")
|
|
sortField := c.Ctx.Input.Query("sortField")
|
|
sortOrder := c.Ctx.Input.Query("sortOrder")
|
|
|
|
if organization == "" {
|
|
c.ResponseError(c.T("general:Missing parameter") + ": organization")
|
|
return
|
|
}
|
|
|
|
if limit == "" || page == "" {
|
|
applications, err := object.GetOrganizationApplications(owner, organization)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
applications, err = object.GetAllowedApplications(applications, userId, c.GetAcceptLanguage())
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
c.ResponseOk(object.GetMaskedApplications(applications, userId))
|
|
} else {
|
|
limit := util.ParseInt(limit)
|
|
|
|
count, err := object.GetOrganizationApplicationCount(owner, organization, field, value)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
paginator := pagination.NewPaginator(c.Ctx.Request, limit, count)
|
|
applications, err := object.GetPaginationOrganizationApplications(owner, organization, paginator.Offset(), limit, field, value, sortField, sortOrder)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
applications, err = object.GetAllowedApplications(applications, userId, c.GetAcceptLanguage())
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
applications = object.GetMaskedApplications(applications, userId)
|
|
c.ResponseOk(applications, paginator.Nums())
|
|
}
|
|
}
|
|
|
|
// UpdateApplication
|
|
// @Title UpdateApplication
|
|
// @Tag Application API
|
|
// @Description update an application
|
|
// @Param id query string true "The id ( owner/name ) of the application"
|
|
// @Param body body object.Application true "The details of the application"
|
|
// @Success 200 {object} controllers.Response The Response object
|
|
// @router /update-application [post]
|
|
func (c *ApiController) UpdateApplication() {
|
|
id := c.Ctx.Input.Query("id")
|
|
columnsStr := c.Ctx.Input.Query("columns")
|
|
|
|
var application object.Application
|
|
err := json.Unmarshal(c.Ctx.Input.RequestBody, &application)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if err = object.CheckIpWhitelist(application.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
columns := []string{}
|
|
if columnsStr != "" {
|
|
for _, col := range strings.Split(columnsStr, ",") {
|
|
columns = append(columns, util.CamelToSnakeCase(col))
|
|
}
|
|
}
|
|
|
|
c.Data["json"] = wrapActionResponse(object.UpdateApplication(id, &application, c.IsGlobalAdmin(), c.GetAcceptLanguage(), columns))
|
|
c.ServeJSON()
|
|
}
|
|
|
|
// AddApplication
|
|
// @Title AddApplication
|
|
// @Tag Application API
|
|
// @Description add an application
|
|
// @Param body body object.Application true "The details of the application"
|
|
// @Success 200 {object} controllers.Response The Response object
|
|
// @router /add-application [post]
|
|
func (c *ApiController) AddApplication() {
|
|
var application object.Application
|
|
err := json.Unmarshal(c.Ctx.Input.RequestBody, &application)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
count, err := object.GetApplicationCount("", "", "")
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if err := checkQuotaForApplication(int(count)); err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if err = object.CheckIpWhitelist(application.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
if len(application.GrantTypes) == 0 {
|
|
application.GrantTypes = []string{"authorization_code"}
|
|
}
|
|
|
|
if application.Tags == nil {
|
|
application.Tags = []string{}
|
|
}
|
|
|
|
if application.RedirectUris == nil {
|
|
application.RedirectUris = []string{}
|
|
}
|
|
|
|
if application.Providers == nil {
|
|
application.Providers = []*object.ProviderItem{}
|
|
}
|
|
|
|
if application.Scopes == nil {
|
|
application.Scopes = []*object.ScopeItem{}
|
|
}
|
|
|
|
c.Data["json"] = wrapActionResponse(object.AddApplication(&application))
|
|
c.ServeJSON()
|
|
}
|
|
|
|
// DeleteApplication
|
|
// @Title DeleteApplication
|
|
// @Tag Application API
|
|
// @Description delete an application
|
|
// @Param body body object.Application true "The details of the application"
|
|
// @Success 200 {object} controllers.Response The Response object
|
|
// @router /delete-application [post]
|
|
func (c *ApiController) DeleteApplication() {
|
|
var application object.Application
|
|
err := json.Unmarshal(c.Ctx.Input.RequestBody, &application)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
c.Data["json"] = wrapActionResponse(object.DeleteApplication(&application))
|
|
c.ServeJSON()
|
|
}
|