Introduced CountAll for repositories

This commit is contained in:
Deluan
2016-02-28 02:56:41 -05:00
parent 08f035d99b
commit 280068373f
3 changed files with 19 additions and 7 deletions
+4 -4
View File
@@ -5,8 +5,6 @@ import (
"github.com/deluan/gosonic/repositories"
"github.com/deluan/gosonic/models"
"strings"
"fmt"
"encoding/json"
)
type Scanner interface {
@@ -46,8 +44,10 @@ func updateDatastore(files []Track) {
collectIndex(m, artistIndex)
}
//mfRepo.Dump()
j,_ := json.MarshalIndent(artistIndex, "", " ")
fmt.Println(string(j))
//j,_ := json.MarshalIndent(artistIndex, "", " ")
//fmt.Println(string(j))
c, _ := mfRepo.CountAll()
beego.Info("Total mediafiles in database:", c)
}
func collectIndex(m *models.MediaFile, artistIndex map[string]map[string]string) {