casdoor/controllers/system_info.go

72 lines
1.8 KiB
Go
Raw Normal View History

// Copyright 2022 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 (
"github.com/casdoor/casdoor/util"
)
// GetSystemInfo
// @Title GetSystemInfo
// @Tag System API
2023-03-26 10:18:44 +08:00
// @Description get system info like CPU and memory usage
// @Success 200 {object} util.SystemInfo The Response object
// @router /get-system-info [get]
func (c *ApiController) GetSystemInfo() {
2023-03-09 17:11:41 +08:00
_, ok := c.RequireAdmin()
if !ok {
return
}
2023-03-09 17:11:41 +08:00
systemInfo, err := util.GetSystemInfo()
if err != nil {
c.ResponseError(err.Error())
return
}
2023-03-09 17:11:41 +08:00
c.ResponseOk(systemInfo)
}
2023-03-09 17:11:41 +08:00
// GetVersionInfo
// @Title GetVersionInfo
// @Tag System API
2023-03-26 10:18:44 +08:00
// @Description get version info like Casdoor release version and commit ID
// @Success 200 {object} util.VersionInfo The Response object
2023-03-09 17:11:41 +08:00
// @router /get-version-info [get]
func (c *ApiController) GetVersionInfo() {
versionInfo, err := util.GetVersionInfo()
2023-08-25 11:49:47 +08:00
if versionInfo.Version != "" {
c.ResponseOk(versionInfo)
return
}
2023-08-25 11:49:47 +08:00
versionInfo, err = util.GetVersionInfoFromFile()
if err != nil {
c.ResponseError(err.Error())
return
}
2023-03-09 17:11:41 +08:00
c.ResponseOk(versionInfo)
}
2023-05-16 21:47:34 +08:00
// Health
// @Title Health
// @Tag System API
// @Description check if the system is live
// @Success 200 {object} controllers.Response The Response object
// @router /health [get]
func (c *ApiController) Health() {
c.ResponseOk()
}