mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-22 18:25:47 +08:00
141 lines
3.6 KiB
Go
141 lines
3.6 KiB
Go
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package object
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type Dashboard struct {
|
|
OrganizationCounts []int `json:"organizationCounts"`
|
|
UserCounts []int `json:"userCounts"`
|
|
ProviderCounts []int `json:"providerCounts"`
|
|
ApplicationCounts []int `json:"applicationCounts"`
|
|
SubscriptionCounts []int `json:"subscriptionCounts"`
|
|
}
|
|
|
|
func GetDashboard(owner string) (*Dashboard, error) {
|
|
dashboard := &Dashboard{
|
|
OrganizationCounts: make([]int, 31),
|
|
UserCounts: make([]int, 31),
|
|
ProviderCounts: make([]int, 31),
|
|
ApplicationCounts: make([]int, 31),
|
|
SubscriptionCounts: make([]int, 31),
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
organizations := []Organization{}
|
|
users := []User{}
|
|
providers := []Provider{}
|
|
applications := []Application{}
|
|
subscriptions := []Subscription{}
|
|
|
|
wg.Add(5)
|
|
go func() {
|
|
defer wg.Done()
|
|
if err := ormer.Engine.Find(&organizations, &Organization{Owner: owner}); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
if err := ormer.Engine.Find(&users, &User{Owner: owner}); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
if err := ormer.Engine.Find(&providers, &Provider{Owner: owner}); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
if err := ormer.Engine.Find(&applications, &Application{Owner: owner}); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
if err := ormer.Engine.Find(&subscriptions, &Subscription{Owner: owner}); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
wg.Wait()
|
|
|
|
nowTime := time.Now()
|
|
for i := 30; i >= 0; i-- {
|
|
cutTime := nowTime.AddDate(0, 0, -i)
|
|
dashboard.OrganizationCounts[30-i] = countCreatedBefore(organizations, cutTime)
|
|
dashboard.UserCounts[30-i] = countCreatedBefore(users, cutTime)
|
|
dashboard.ProviderCounts[30-i] = countCreatedBefore(providers, cutTime)
|
|
dashboard.ApplicationCounts[30-i] = countCreatedBefore(applications, cutTime)
|
|
dashboard.SubscriptionCounts[30-i] = countCreatedBefore(subscriptions, cutTime)
|
|
}
|
|
return dashboard, nil
|
|
}
|
|
|
|
func countCreatedBefore(objects interface{}, before time.Time) int {
|
|
count := 0
|
|
switch obj := objects.(type) {
|
|
case []Organization:
|
|
for _, o := range obj {
|
|
createdTime, _ := time.Parse("2006-01-02T15:04:05-07:00", o.CreatedTime)
|
|
if createdTime.Before(before) {
|
|
count++
|
|
}
|
|
}
|
|
case []User:
|
|
for _, u := range obj {
|
|
createdTime, _ := time.Parse("2006-01-02T15:04:05-07:00", u.CreatedTime)
|
|
if createdTime.Before(before) {
|
|
count++
|
|
}
|
|
}
|
|
case []Provider:
|
|
for _, p := range obj {
|
|
createdTime, _ := time.Parse("2006-01-02T15:04:05-07:00", p.CreatedTime)
|
|
if createdTime.Before(before) {
|
|
count++
|
|
}
|
|
}
|
|
case []Application:
|
|
for _, a := range obj {
|
|
createdTime, _ := time.Parse("2006-01-02T15:04:05-07:00", a.CreatedTime)
|
|
if createdTime.Before(before) {
|
|
count++
|
|
}
|
|
}
|
|
case []Subscription:
|
|
for _, s := range obj {
|
|
createdTime, _ := time.Parse("2006-01-02T15:04:05-07:00", s.CreatedTime)
|
|
if createdTime.Before(before) {
|
|
count++
|
|
}
|
|
}
|
|
}
|
|
return count
|
|
}
|