mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
fe8be3701f
Merge in DNS/adguard-home from websvc-config-manager to master Squashed commit of the following: commit 2143b47c6528030dfe059172888fddf9061e42da Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Oct 4 14:50:47 2022 +0300 next: add config manager
35 lines
935 B
Go
35 lines
935 B
Go
package websvc
|
|
|
|
import (
|
|
"net/http"
|
|
"runtime"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/version"
|
|
)
|
|
|
|
// System Handlers
|
|
|
|
// RespGetV1SystemInfo describes the response of the GET /api/v1/system/info
|
|
// HTTP API.
|
|
type RespGetV1SystemInfo struct {
|
|
Arch string `json:"arch"`
|
|
Channel string `json:"channel"`
|
|
OS string `json:"os"`
|
|
NewVersion string `json:"new_version,omitempty"`
|
|
Start JSONTime `json:"start"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
// handleGetV1SystemInfo is the handler for the GET /api/v1/system/info HTTP
|
|
// API.
|
|
func (svc *Service) handleGetV1SystemInfo(w http.ResponseWriter, r *http.Request) {
|
|
writeJSONOKResponse(w, r, &RespGetV1SystemInfo{
|
|
Arch: runtime.GOARCH,
|
|
Channel: version.Channel(),
|
|
OS: runtime.GOOS,
|
|
// TODO(a.garipov): Fill this when we have an updater.
|
|
NewVersion: "",
|
|
Start: JSONTime(svc.start),
|
|
Version: version.Version(),
|
|
})
|
|
}
|