mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
098dbe6ff4
* first commit Signed-off-by: kim <grufwub@gmail.com> * replace logging with our own log library Signed-off-by: kim <grufwub@gmail.com> * fix imports Signed-off-by: kim <grufwub@gmail.com> * fix log imports Signed-off-by: kim <grufwub@gmail.com> * add license text Signed-off-by: kim <grufwub@gmail.com> * fix package import cycle between config and log package Signed-off-by: kim <grufwub@gmail.com> * fix empty kv.Fields{} being passed to WithFields() Signed-off-by: kim <grufwub@gmail.com> * fix uses of log.WithFields() with whitespace issues and empty slices Signed-off-by: kim <grufwub@gmail.com> * *linter related grumbling* Signed-off-by: kim <grufwub@gmail.com> * gofmt the codebase! also fix more log.WithFields() formatting issues Signed-off-by: kim <grufwub@gmail.com> * update testrig code to match new changes Signed-off-by: kim <grufwub@gmail.com> * fix error wrapping in non fmt.Errorf function Signed-off-by: kim <grufwub@gmail.com> * add benchmarking of log.Caller() vs non-cached Signed-off-by: kim <grufwub@gmail.com> * fix syslog tests, add standard build tags to test runner to ensure consistency Signed-off-by: kim <grufwub@gmail.com> * make syslog tests more robust Signed-off-by: kim <grufwub@gmail.com> * fix caller depth arithmatic (is that how you spell it?) Signed-off-by: kim <grufwub@gmail.com> * update to use unkeyed fields in kv.Field{} instances Signed-off-by: kim <grufwub@gmail.com> * update go-kv library Signed-off-by: kim <grufwub@gmail.com> * update libraries list Signed-off-by: kim <grufwub@gmail.com> * fuck you linter get nerfed Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tobi <31960611+tsmethurst@users.noreply.github.com>
147 lines
3.8 KiB
Go
147 lines
3.8 KiB
Go
/*
|
|
GoToSocial
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package bundb
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type instanceDB struct {
|
|
conn *DBConn
|
|
}
|
|
|
|
func (i *instanceDB) CountInstanceUsers(ctx context.Context, domain string) (int, db.Error) {
|
|
q := i.conn.
|
|
NewSelect().
|
|
Model(&[]*gtsmodel.Account{}).
|
|
Where("username != ?", domain).
|
|
Where("? IS NULL", bun.Ident("suspended_at"))
|
|
|
|
if domain == config.GetHost() {
|
|
// if the domain is *this* domain, just count where the domain field is null
|
|
q = q.WhereGroup(" AND ", whereEmptyOrNull("domain"))
|
|
} else {
|
|
q = q.Where("domain = ?", domain)
|
|
}
|
|
|
|
count, err := q.Count(ctx)
|
|
if err != nil {
|
|
return 0, i.conn.ProcessError(err)
|
|
}
|
|
return count, nil
|
|
}
|
|
|
|
func (i *instanceDB) CountInstanceStatuses(ctx context.Context, domain string) (int, db.Error) {
|
|
q := i.conn.
|
|
NewSelect().
|
|
Model(&[]*gtsmodel.Status{})
|
|
|
|
if domain == config.GetHost() {
|
|
// if the domain is *this* domain, just count where local is true
|
|
q = q.Where("local = ?", true)
|
|
} else {
|
|
// join on the domain of the account
|
|
q = q.Join("JOIN accounts AS account ON account.id = status.account_id").
|
|
Where("account.domain = ?", domain)
|
|
}
|
|
|
|
count, err := q.Count(ctx)
|
|
if err != nil {
|
|
return 0, i.conn.ProcessError(err)
|
|
}
|
|
return count, nil
|
|
}
|
|
|
|
func (i *instanceDB) CountInstanceDomains(ctx context.Context, domain string) (int, db.Error) {
|
|
q := i.conn.
|
|
NewSelect().
|
|
Model(&[]*gtsmodel.Instance{})
|
|
|
|
if domain == config.GetHost() {
|
|
// if the domain is *this* domain, just count other instances it knows about
|
|
// exclude domains that are blocked
|
|
q = q.
|
|
Where("domain != ?", domain).
|
|
Where("? IS NULL", bun.Ident("suspended_at"))
|
|
} else {
|
|
// TODO: implement federated domain counting properly for remote domains
|
|
return 0, nil
|
|
}
|
|
|
|
count, err := q.Count(ctx)
|
|
if err != nil {
|
|
return 0, i.conn.ProcessError(err)
|
|
}
|
|
return count, nil
|
|
}
|
|
|
|
func (i *instanceDB) GetInstancePeers(ctx context.Context, includeSuspended bool) ([]*gtsmodel.Instance, db.Error) {
|
|
instances := []*gtsmodel.Instance{}
|
|
|
|
q := i.conn.
|
|
NewSelect().
|
|
Model(&instances).
|
|
Where("domain != ?", config.GetHost())
|
|
|
|
if !includeSuspended {
|
|
q = q.Where("? IS NULL", bun.Ident("suspended_at"))
|
|
}
|
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
return nil, i.conn.ProcessError(err)
|
|
}
|
|
|
|
return instances, nil
|
|
}
|
|
|
|
func (i *instanceDB) GetInstanceAccounts(ctx context.Context, domain string, maxID string, limit int) ([]*gtsmodel.Account, db.Error) {
|
|
log.Debug("GetAccountsForInstance")
|
|
|
|
accounts := []*gtsmodel.Account{}
|
|
|
|
q := i.conn.NewSelect().
|
|
Model(&accounts).
|
|
Where("domain = ?", domain).
|
|
Order("id DESC")
|
|
|
|
if maxID != "" {
|
|
q = q.Where("id < ?", maxID)
|
|
}
|
|
|
|
if limit > 0 {
|
|
q = q.Limit(limit)
|
|
}
|
|
|
|
if err := q.Scan(ctx); err != nil {
|
|
return nil, i.conn.ProcessError(err)
|
|
}
|
|
|
|
if len(accounts) == 0 {
|
|
return nil, db.ErrNoEntries
|
|
}
|
|
|
|
return accounts, nil
|
|
}
|