2021-07-06 12:29:11 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 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/>.
|
|
|
|
*/
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
package bundb
|
2021-06-23 15:35:57 +01:00
|
|
|
|
|
|
|
import (
|
2021-08-20 11:26:56 +01:00
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-06-23 15:35:57 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-08-25 14:34:33 +01:00
|
|
|
"github.com/uptrace/bun"
|
2021-06-23 15:35:57 +01:00
|
|
|
)
|
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
type instanceDB struct {
|
|
|
|
config *config.Config
|
2021-08-25 14:34:33 +01:00
|
|
|
conn *bun.DB
|
2021-08-20 11:26:56 +01:00
|
|
|
log *logrus.Logger
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (i *instanceDB) CountInstanceUsers(ctx context.Context, domain string) (int, db.Error) {
|
|
|
|
q := i.conn.
|
|
|
|
NewSelect().
|
2021-08-26 21:06:34 +01:00
|
|
|
Model(&[]*gtsmodel.Account{}).
|
2021-08-25 14:34:33 +01:00
|
|
|
Where("username != ?", domain).
|
|
|
|
Where("? IS NULL", bun.Ident("suspended_at"))
|
2021-06-23 15:35:57 +01:00
|
|
|
|
2021-08-26 21:06:34 +01:00
|
|
|
if domain == i.config.Host {
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
count, err := q.Count(ctx)
|
|
|
|
|
|
|
|
return count, processErrorResponse(err)
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (i *instanceDB) CountInstanceStatuses(ctx context.Context, domain string) (int, db.Error) {
|
|
|
|
q := i.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(&[]*gtsmodel.Status{})
|
2021-06-23 15:35:57 +01:00
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
if domain == i.config.Host {
|
2021-06-23 15:35:57 +01:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
count, err := q.Count(ctx)
|
|
|
|
|
|
|
|
return count, processErrorResponse(err)
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (i *instanceDB) CountInstanceDomains(ctx context.Context, domain string) (int, db.Error) {
|
|
|
|
q := i.conn.
|
|
|
|
NewSelect().
|
|
|
|
Model(&[]*gtsmodel.Instance{})
|
2021-06-23 15:35:57 +01:00
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
if domain == i.config.Host {
|
2021-06-23 15:35:57 +01:00
|
|
|
// if the domain is *this* domain, just count other instances it knows about
|
2021-07-06 12:29:11 +01:00
|
|
|
// exclude domains that are blocked
|
2021-08-26 10:28:16 +01:00
|
|
|
q = q.
|
|
|
|
Where("domain != ?", domain).
|
|
|
|
Where("? IS NULL", bun.Ident("suspended_at"))
|
2021-06-23 15:35:57 +01:00
|
|
|
} else {
|
|
|
|
// TODO: implement federated domain counting properly for remote domains
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
count, err := q.Count(ctx)
|
|
|
|
|
|
|
|
return count, processErrorResponse(err)
|
2021-06-23 15:35:57 +01:00
|
|
|
}
|
2021-07-05 12:23:03 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (i *instanceDB) GetInstanceAccounts(ctx context.Context, domain string, maxID string, limit int) ([]*gtsmodel.Account, db.Error) {
|
2021-08-20 11:26:56 +01:00
|
|
|
i.log.Debug("GetAccountsForInstance")
|
2021-07-05 12:23:03 +01:00
|
|
|
|
|
|
|
accounts := []*gtsmodel.Account{}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
q := i.conn.NewSelect().
|
|
|
|
Model(&accounts).
|
|
|
|
Where("domain = ?", domain).
|
|
|
|
Order("id DESC")
|
2021-07-05 12:23:03 +01:00
|
|
|
|
|
|
|
if maxID != "" {
|
|
|
|
q = q.Where("id < ?", maxID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if limit > 0 {
|
|
|
|
q = q.Limit(limit)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
err := processErrorResponse(q.Scan(ctx))
|
2021-07-05 12:23:03 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
return accounts, err
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|