| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- // Copyright 2022 The Gitea Authors. All rights reserved.
- // SPDX-License-Identifier: MIT
-
- package healthcheck
-
- import (
- "context"
- "net/http"
- "os"
- "time"
-
- "code.gitea.io/gitea/models/db"
- "code.gitea.io/gitea/modules/cache"
- "code.gitea.io/gitea/modules/json"
- "code.gitea.io/gitea/modules/log"
- "code.gitea.io/gitea/modules/setting"
- )
-
- type status string
-
- const (
- // pass healthy (acceptable aliases: "ok" to support Node's Terminus and "up" for Java's SpringBoot)
- // fail unhealthy (acceptable aliases: "error" to support Node's Terminus and "down" for Java's SpringBoot), and
- // warn healthy, with some concerns.
- //
- // ref https://datatracker.ietf.org/doc/html/draft-inadarei-api-health-check#section-3.1
- // status: (required) indicates whether the service status is acceptable
- // or not. API publishers SHOULD use following values for the field:
- // The value of the status field is case-insensitive and is tightly
- // related with the HTTP response code returned by the health endpoint.
- // For "pass" status, HTTP response code in the 2xx-3xx range MUST be
- // used. For "fail" status, HTTP response code in the 4xx-5xx range
- // MUST be used. In case of the "warn" status, endpoints MUST return
- // HTTP status in the 2xx-3xx range, and additional information SHOULD
- // be provided, utilizing optional fields of the response.
- pass status = "pass"
- fail status = "fail"
- warn status = "warn"
- )
-
- func (s status) ToHTTPStatus() int {
- if s == pass || s == warn {
- return http.StatusOK
- }
- return http.StatusFailedDependency
- }
-
- type checks map[string][]componentStatus
-
- // response is the data returned by the health endpoint, which will be marshaled to JSON format
- type response struct {
- Status status `json:"status"`
- Description string `json:"description"` // a human-friendly description of the service
- Checks checks `json:"checks,omitempty"` // The Checks Object, should be omitted on installation route
- }
-
- // componentStatus presents one status of a single check object
- // an object that provides detailed health statuses of additional downstream systems and endpoints
- // which can affect the overall health of the main API.
- type componentStatus struct {
- Status status `json:"status"`
- Time string `json:"time"` // the date-time, in ISO8601 format
- Output string `json:"output,omitempty"` // this field SHOULD be omitted for "pass" state.
- }
-
- // Check is the health check API handler
- func Check(w http.ResponseWriter, r *http.Request) {
- rsp := response{
- Status: pass,
- Description: setting.AppName,
- Checks: make(checks),
- }
-
- statuses := make([]status, 0)
- if setting.InstallLock {
- statuses = append(statuses, checkDatabase(r.Context(), rsp.Checks))
- statuses = append(statuses, checkCache(rsp.Checks))
- }
- for _, s := range statuses {
- if s != pass {
- rsp.Status = fail
- break
- }
- }
-
- data, _ := json.MarshalIndent(rsp, "", " ")
- w.Header().Set("Content-Type", "application/json")
- w.WriteHeader(rsp.Status.ToHTTPStatus())
- _, _ = w.Write(data)
- }
-
- // database checks gitea database status
- func checkDatabase(ctx context.Context, checks checks) status {
- st := componentStatus{}
- if err := db.GetEngine(ctx).Ping(); err != nil {
- st.Status = fail
- st.Time = getCheckTime()
- log.Error("database ping failed with error: %v", err)
- } else {
- st.Status = pass
- st.Time = getCheckTime()
- }
-
- if setting.Database.Type.IsSQLite3() && st.Status == pass {
- if !setting.EnableSQLite3 {
- st.Status = fail
- st.Time = getCheckTime()
- log.Error("SQLite3 health check failed with error: %v", "this Gitea binary is built without SQLite3 enabled")
- } else {
- if _, err := os.Stat(setting.Database.Path); err != nil {
- st.Status = fail
- st.Time = getCheckTime()
- log.Error("SQLite3 file exists check failed with error: %v", err)
- }
- }
- }
-
- checks["database:ping"] = []componentStatus{st}
- return st.Status
- }
-
- // cache checks gitea cache status
- func checkCache(checks checks) status {
- st := componentStatus{}
- if err := cache.GetCache().Ping(); err != nil {
- st.Status = fail
- st.Time = getCheckTime()
- log.Error("cache ping failed with error: %v", err)
- } else {
- st.Status = pass
- st.Time = getCheckTime()
- }
- checks["cache:ping"] = []componentStatus{st}
- return st.Status
- }
-
- func getCheckTime() string {
- return time.Now().UTC().Format(time.RFC3339)
- }
|