mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 17:48:25 +08:00
23 lines
609 B
Go
23 lines
609 B
Go
package controller
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/gravitl/netmaker/logger"
|
|
"github.com/gravitl/netmaker/logic"
|
|
)
|
|
|
|
func loggerHandlers(r *mux.Router) {
|
|
r.HandleFunc("/api/logs", logic.SecurityCheck(true, http.HandlerFunc(getLogs))).Methods(http.MethodGet)
|
|
}
|
|
|
|
func getLogs(w http.ResponseWriter, r *http.Request) {
|
|
var currentTime = time.Now().Format(logger.TimeFormatDay)
|
|
var currentFilePath = fmt.Sprintf("data/netmaker.log.%s", currentTime)
|
|
logger.DumpFile(currentFilePath)
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte(logger.Retrieve(currentFilePath)))
|
|
}
|