Add GET /api/status for Ripple's status page.
This commit is contained in:
parent
0418adc8c3
commit
189a0cbb02
17
app/internals/status.go
Normal file
17
app/internals/status.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Package internals has methods that suit none of the API packages.
|
||||
package internals
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type statusResponse struct {
|
||||
Response int `json:"response"`
|
||||
}
|
||||
|
||||
// Status is used for checking the API is up by the ripple website, on the status page.
|
||||
func Status(c *gin.Context) {
|
||||
c.JSON(200, statusResponse{
|
||||
Response: 1,
|
||||
})
|
||||
}
|
|
@ -5,6 +5,7 @@ import (
|
|||
|
||||
"github.com/gin-gonic/contrib/gzip"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/osuripple/api/app/internals"
|
||||
"github.com/osuripple/api/app/v1"
|
||||
"github.com/osuripple/api/common"
|
||||
)
|
||||
|
@ -54,6 +55,8 @@ func Start(conf common.Conf, db *sql.DB) *gin.Engine {
|
|||
gv1.GET("/meta/up_since", Method(v1.MetaUpSinceGET, db, common.PrivilegeAPIMeta))
|
||||
gv1.GET("/meta/update", Method(v1.MetaUpdateGET, db, common.PrivilegeAPIMeta))
|
||||
}
|
||||
|
||||
api.GET("/status", internals.Status)
|
||||
}
|
||||
|
||||
r.NoRoute(v1.Handle404)
|
||||
|
|
Loading…
Reference in New Issue
Block a user