Skip to content

Commit

Permalink
Statistics on the number of files added (#951)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkLeong authored Mar 13, 2023
1 parent c995750 commit dc8ee89
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions route/v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ func InitV1Router() *gin.Engine {
v1FolderGroup.GET("", v1.DirPath) ///file/dirpath
v1FolderGroup.POST("", v1.MkdirAll) ///file/mkdir
v1FolderGroup.GET("/size", v1.GetSize)
v1FolderGroup.GET("/count", v1.GetFileCount)
}
v1BatchGroup := v1Group.Group("/batch")
v1BatchGroup.Use()
Expand Down
12 changes: 12 additions & 0 deletions route/v1/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,18 @@ func GetSize(c *gin.Context) {
c.JSON(common_err.SUCCESS, model.Result{Success: common_err.SUCCESS, Message: common_err.GetMsg(common_err.SUCCESS), Data: size})
}

func GetFileCount(c *gin.Context) {
json := make(map[string]string)
c.ShouldBind(&json)
path := json["path"]
list, err := ioutil.ReadDir(path)
if err != nil {
c.JSON(common_err.SERVICE_ERROR, model.Result{Success: common_err.SERVICE_ERROR, Message: common_err.GetMsg(common_err.SERVICE_ERROR), Data: err.Error()})
return
}
c.JSON(common_err.SERVICE_ERROR, model.Result{Success: common_err.SERVICE_ERROR, Message: common_err.GetMsg(common_err.SERVICE_ERROR), Data: len(list)})
}

type CenterHandler struct {
// 广播通道,有数据则循环每个用户广播出去
broadcast chan []byte
Expand Down

0 comments on commit dc8ee89

Please sign in to comment.