2019-06-24 17:01:56 +01:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
// Package onboard handles the setup of sample data for a new Documize instance.
|
|
|
|
package onboard
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/documize/community/domain/store"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Store provides data access to version information.
|
|
|
|
type Store struct {
|
|
|
|
store.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContentCounts returns the number of spaces and documents.
|
2019-06-29 15:37:49 +01:00
|
|
|
func (s Store) ContentCounts(orgID string) (spaces, docs int) {
|
2019-06-24 17:01:56 +01:00
|
|
|
// By default we assume there is content in case of error condition.
|
|
|
|
spaces = 10
|
|
|
|
docs = 10
|
|
|
|
|
|
|
|
var m int
|
|
|
|
var err error
|
|
|
|
|
2019-06-29 15:37:49 +01:00
|
|
|
row := s.Runtime.Db.QueryRow(s.Bind("SELECT COUNT(*) FROM dmz_space WHERE c_orgid=?"), orgID)
|
2019-06-24 17:01:56 +01:00
|
|
|
err = row.Scan(&m)
|
|
|
|
if err == nil {
|
|
|
|
spaces = m
|
2019-06-29 15:37:49 +01:00
|
|
|
} else {
|
|
|
|
s.Runtime.Log.Error("onboard.ContentCounts", err)
|
2019-06-24 17:01:56 +01:00
|
|
|
}
|
|
|
|
|
2019-06-29 15:37:49 +01:00
|
|
|
row = s.Runtime.Db.QueryRow(s.Bind("SELECT COUNT(*) FROM dmz_doc WHERE c_orgid=?"), orgID)
|
2019-06-24 17:01:56 +01:00
|
|
|
err = row.Scan(&m)
|
|
|
|
if err == nil {
|
|
|
|
docs = m
|
2019-06-29 15:37:49 +01:00
|
|
|
} else {
|
|
|
|
s.Runtime.Log.Error("onboard.ContentCounts", err)
|
2019-06-24 17:01:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|