| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package api
- import (
- requstform "Gwen/http/request/api"
- "Gwen/http/response"
- "Gwen/service"
- "github.com/gin-gonic/gin"
- "net/http"
- "time"
- )
- type Index struct {
- }
- // Index 首页
- // @Tags 首页
- // @Summary 首页
- // @Description 首页
- // @Accept json
- // @Produce json
- // @Success 200 {object} response.Response
- // @Failure 500 {object} response.Response
- // @Router / [get]
- func (i *Index) Index(c *gin.Context) {
- response.Success(
- c,
- "Hello Gwen",
- )
- }
- // Heartbeat 心跳
- // @Tags 首页
- // @Summary 心跳
- // @Description 心跳
- // @Accept json
- // @Produce json
- // @Success 200 {object} nil
- // @Failure 500 {object} response.Response
- // @Router /heartbeat [post]
- func (i *Index) Heartbeat(c *gin.Context) {
- info := &requstform.PeerInfoInHeartbeat{}
- err := c.ShouldBindJSON(info)
- if err != nil {
- c.JSON(http.StatusOK, gin.H{})
- return
- }
- if info.Uuid == "" {
- c.JSON(http.StatusOK, gin.H{})
- return
- }
- peer := service.AllService.PeerService.FindByUuid(info.Uuid)
- if peer == nil {
- c.JSON(http.StatusOK, gin.H{})
- return
- }
- peer.LastOnlineTime = time.Now().Unix()
- service.AllService.PeerService.Update(peer)
- c.JSON(http.StatusOK, gin.H{})
- }
|