diff options
Diffstat (limited to 'internal/db')
8 files changed, 671 insertions, 1 deletions
| diff --git a/internal/db/bundb/domainpermissionsubscription.go b/internal/db/bundb/domainpermissionsubscription.go new file mode 100644 index 000000000..be22b96a3 --- /dev/null +++ b/internal/db/bundb/domainpermissionsubscription.go @@ -0,0 +1,354 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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" +	"errors" +	"slices" + +	"github.com/superseriousbusiness/gotosocial/internal/db" +	"github.com/superseriousbusiness/gotosocial/internal/gtscontext" +	"github.com/superseriousbusiness/gotosocial/internal/gtserror" +	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" +	"github.com/superseriousbusiness/gotosocial/internal/log" +	"github.com/superseriousbusiness/gotosocial/internal/paging" +	"github.com/uptrace/bun" +) + +func (d *domainDB) getDomainPermissionSubscription( +	ctx context.Context, +	lookup string, +	dbQuery func(*gtsmodel.DomainPermissionSubscription) error, +	keyParts ...any, +) (*gtsmodel.DomainPermissionSubscription, error) { +	// Fetch perm subscription from database cache with loader callback. +	permSub, err := d.state.Caches.DB.DomainPermissionSubscription.LoadOne( +		lookup, +		// Only called if not cached. +		func() (*gtsmodel.DomainPermissionSubscription, error) { +			var permSub gtsmodel.DomainPermissionSubscription +			if err := dbQuery(&permSub); err != nil { +				return nil, err +			} +			return &permSub, nil +		}, +		keyParts..., +	) +	if err != nil { +		return nil, err +	} + +	if gtscontext.Barebones(ctx) { +		// No need to fully populate. +		return permSub, nil +	} + +	if permSub.CreatedByAccount == nil { +		// Not set, fetch from database. +		permSub.CreatedByAccount, err = d.state.DB.GetAccountByID( +			gtscontext.SetBarebones(ctx), +			permSub.CreatedByAccountID, +		) +		if err != nil { +			return nil, gtserror.Newf("error populating created by account: %w", err) +		} +	} + +	return permSub, nil +} + +func (d *domainDB) GetDomainPermissionSubscriptionByID( +	ctx context.Context, +	id string, +) (*gtsmodel.DomainPermissionSubscription, error) { +	return d.getDomainPermissionSubscription( +		ctx, +		"ID", +		func(permSub *gtsmodel.DomainPermissionSubscription) error { +			return d.db. +				NewSelect(). +				Model(permSub). +				Where("? = ?", bun.Ident("domain_permission_subscription.id"), id). +				Scan(ctx) +		}, +		id, +	) +} + +func (d *domainDB) GetDomainPermissionSubscriptions( +	ctx context.Context, +	permType gtsmodel.DomainPermissionType, +	page *paging.Page, +) ( +	[]*gtsmodel.DomainPermissionSubscription, +	error, +) { +	var ( +		// Get paging params. +		minID = page.GetMin() +		maxID = page.GetMax() +		limit = page.GetLimit() +		order = page.GetOrder() + +		// Make educated guess for slice size +		permSubIDs = make([]string, 0, limit) +	) + +	q := d.db. +		NewSelect(). +		TableExpr( +			"? AS ?", +			bun.Ident("domain_permission_subscriptions"), +			bun.Ident("domain_permission_subscription"), +		). +		// Select only IDs from table +		Column("domain_permission_subscription.id") + +	// Return only items with id +	// lower than provided maxID. +	if maxID != "" { +		q = q.Where( +			"? < ?", +			bun.Ident("domain_permission_subscription.id"), +			maxID, +		) +	} + +	// Return only items with id +	// greater than provided minID. +	if minID != "" { +		q = q.Where( +			"? > ?", +			bun.Ident("domain_permission_subscription.id"), +			minID, +		) +	} + +	// Return only items with +	// given permission type. +	if permType != gtsmodel.DomainPermissionUnknown { +		q = q.Where( +			"? = ?", +			bun.Ident("domain_permission_subscription.permission_type"), +			permType, +		) +	} + +	if limit > 0 { +		// Limit amount of +		// items returned. +		q = q.Limit(limit) +	} + +	if order == paging.OrderAscending { +		// Page up. +		q = q.OrderExpr( +			"? ASC", +			bun.Ident("domain_permission_subscription.id"), +		) +	} else { +		// Page down. +		q = q.OrderExpr( +			"? DESC", +			bun.Ident("domain_permission_subscription.id"), +		) +	} + +	if err := q.Scan(ctx, &permSubIDs); err != nil { +		return nil, err +	} + +	// Catch case of no items early +	if len(permSubIDs) == 0 { +		return nil, db.ErrNoEntries +	} + +	// If we're paging up, we still want items +	// to be sorted by ID desc, so reverse slice. +	if order == paging.OrderAscending { +		slices.Reverse(permSubIDs) +	} + +	// Allocate return slice (will be at most len permSubIDs). +	permSubs := make([]*gtsmodel.DomainPermissionSubscription, 0, len(permSubIDs)) +	for _, id := range permSubIDs { +		permSub, err := d.GetDomainPermissionSubscriptionByID(ctx, id) +		if err != nil { +			log.Errorf(ctx, "error getting domain permission subscription %q: %v", id, err) +			continue +		} + +		// Append to return slice +		permSubs = append(permSubs, permSub) +	} + +	return permSubs, nil +} + +func (d *domainDB) GetDomainPermissionSubscriptionsByPriority( +	ctx context.Context, +	permType gtsmodel.DomainPermissionType, +) ( +	[]*gtsmodel.DomainPermissionSubscription, +	error, +) { +	permSubIDs := []string{} + +	q := d.db. +		NewSelect(). +		TableExpr( +			"? AS ?", +			bun.Ident("domain_permission_subscriptions"), +			bun.Ident("domain_permission_subscription"), +		). +		// Select only IDs from table +		Column("domain_permission_subscription.id"). +		// Select only subs of given perm type. +		Where( +			"? = ?", +			bun.Ident("domain_permission_subscription.permission_type"), +			permType, +		). +		// Order by priority descending. +		OrderExpr( +			"? DESC", +			bun.Ident("domain_permission_subscription.priority"), +		) + +	if err := q.Scan(ctx, &permSubIDs); err != nil { +		return nil, err +	} + +	// Catch case of no items early +	if len(permSubIDs) == 0 { +		return nil, db.ErrNoEntries +	} + +	// Allocate return slice (will be at most len permSubIDs). +	permSubs := make([]*gtsmodel.DomainPermissionSubscription, 0, len(permSubIDs)) +	for _, id := range permSubIDs { +		permSub, err := d.GetDomainPermissionSubscriptionByID(ctx, id) +		if err != nil { +			log.Errorf(ctx, "error getting domain permission subscription %q: %v", id, err) +			continue +		} + +		// Append to return slice +		permSubs = append(permSubs, permSub) +	} + +	return permSubs, nil +} + +func (d *domainDB) PutDomainPermissionSubscription( +	ctx context.Context, +	permSubscription *gtsmodel.DomainPermissionSubscription, +) error { +	return d.state.Caches.DB.DomainPermissionSubscription.Store( +		permSubscription, +		func() error { +			_, err := d.db. +				NewInsert(). +				Model(permSubscription). +				Exec(ctx) +			return err +		}, +	) +} + +func (d *domainDB) UpdateDomainPermissionSubscription( +	ctx context.Context, +	permSubscription *gtsmodel.DomainPermissionSubscription, +	columns ...string, +) error { +	return d.state.Caches.DB.DomainPermissionSubscription.Store( +		permSubscription, +		func() error { +			_, err := d.db. +				NewUpdate(). +				Model(permSubscription). +				Where("? = ?", bun.Ident("id"), permSubscription.ID). +				Column(columns...). +				Exec(ctx) +			return err +		}, +	) +} + +func (d *domainDB) DeleteDomainPermissionSubscription( +	ctx context.Context, +	id string, +) error { +	// Delete the permSub from DB. +	q := d.db.NewDelete(). +		TableExpr( +			"? AS ?", +			bun.Ident("domain_permission_subscriptions"), +			bun.Ident("domain_permission_subscription"), +		). +		Where( +			"? = ?", +			bun.Ident("domain_permission_subscription.id"), +			id, +		) + +	_, err := q.Exec(ctx) +	if err != nil && !errors.Is(err, db.ErrNoEntries) { +		return err +	} + +	// Invalidate any cached model by ID. +	d.state.Caches.DB.DomainPermissionSubscription.Invalidate("ID", id) + +	return nil +} + +func (d *domainDB) CountDomainPermissionSubscriptionPerms( +	ctx context.Context, +	id string, +) (int, error) { +	permSubscription, err := d.GetDomainPermissionSubscriptionByID( +		gtscontext.SetBarebones(ctx), +		id, +	) +	if err != nil { +		return 0, err +	} + +	q := d.db.NewSelect() + +	if permSubscription.PermissionType == gtsmodel.DomainPermissionBlock { +		q = q.TableExpr( +			"? AS ?", +			bun.Ident("domain_blocks"), +			bun.Ident("perm"), +		) +	} else { +		q = q.TableExpr( +			"? AS ?", +			bun.Ident("domain_allows"), +			bun.Ident("perm"), +		) +	} + +	return q. +		Column("perm.id"). +		Where("? = ?", bun.Ident("perm.subscription_id"), id). +		Count(ctx) +} diff --git a/internal/db/bundb/domainpermissionsubscription_test.go b/internal/db/bundb/domainpermissionsubscription_test.go new file mode 100644 index 000000000..732befbff --- /dev/null +++ b/internal/db/bundb/domainpermissionsubscription_test.go @@ -0,0 +1,99 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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_test + +import ( +	"context" +	"testing" + +	"github.com/stretchr/testify/suite" +	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" +) + +type DomainPermissionSubscriptionTestSuite struct { +	BunDBStandardTestSuite +} + +func (suite *DomainPermissionSubscriptionTestSuite) TestCount() { +	var ( +		ctx         = context.Background() +		testAccount = suite.testAccounts["admin_account"] +		permSub     = >smodel.DomainPermissionSubscription{ +			ID:                 "01JGV3VZ72K58BYW8H5GEVBZGN", +			PermissionType:     gtsmodel.DomainPermissionBlock, +			CreatedByAccountID: testAccount.ID, +			CreatedByAccount:   testAccount, +			URI:                "https://example.org/whatever.csv", +			ContentType:        gtsmodel.DomainPermSubContentTypeCSV, +		} +		perms = []*gtsmodel.DomainBlock{ +			{ +				ID:                 "01JGV42G72YCKN06AC51RZPFES", +				Domain:             "whatever.com", +				CreatedByAccountID: testAccount.ID, +				CreatedByAccount:   testAccount, +				SubscriptionID:     permSub.ID, +			}, +			{ +				ID:                 "01JGV43ZQKYPHM2M0YBQDFDSD1", +				Domain:             "aaaa.example.org", +				CreatedByAccountID: testAccount.ID, +				CreatedByAccount:   testAccount, +				SubscriptionID:     permSub.ID, +			}, +			{ +				ID:                 "01JGV444KDDC4WFG6MZQVM0N2Z", +				Domain:             "bbbb.example.org", +				CreatedByAccountID: testAccount.ID, +				CreatedByAccount:   testAccount, +				SubscriptionID:     permSub.ID, +			}, +			{ +				ID:                 "01JGV44AFEMBWS6P6S72BQK376", +				Domain:             "cccc.example.org", +				CreatedByAccountID: testAccount.ID, +				CreatedByAccount:   testAccount, +				SubscriptionID:     permSub.ID, +			}, +		} +	) + +	// Whack the perm sub in the DB. +	if err := suite.state.DB.PutDomainPermissionSubscription(ctx, permSub); err != nil { +		suite.FailNow(err.Error()) +	} + +	// Whack the perms in the db. +	for _, perm := range perms { +		if err := suite.state.DB.CreateDomainBlock(ctx, perm); err != nil { +			suite.FailNow(err.Error()) +		} +	} + +	// Count 'em. +	count, err := suite.state.DB.CountDomainPermissionSubscriptionPerms(ctx, permSub.ID) +	if err != nil { +		suite.FailNow(err.Error()) +	} + +	suite.Equal(4, count) +} + +func TestDomainPermissionSubscriptionTestSuite(t *testing.T) { +	suite.Run(t, new(DomainPermissionSubscriptionTestSuite)) +} diff --git a/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude.go b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude.go index e19ea2b4d..32485ec64 100644 --- a/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude.go +++ b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude.go @@ -20,7 +20,7 @@ package migrations  import (  	"context" -	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" +	gtsmodel "github.com/superseriousbusiness/gotosocial/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude"  	"github.com/uptrace/bun"  ) diff --git a/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissiondraft.go b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissiondraft.go new file mode 100644 index 000000000..e93b86f5c --- /dev/null +++ b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissiondraft.go @@ -0,0 +1,33 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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 gtsmodel + +import "time" + +type DomainPermissionDraft struct { +	ID                 string    `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` +	CreatedAt          time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` +	UpdatedAt          time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` +	PermissionType     uint8     `bun:",notnull,unique:domain_permission_drafts_permission_type_domain_subscription_id_uniq"` +	Domain             string    `bun:",nullzero,notnull,unique:domain_permission_drafts_permission_type_domain_subscription_id_uniq"` +	CreatedByAccountID string    `bun:"type:CHAR(26),nullzero,notnull"` +	PrivateComment     string    `bun:",nullzero"` +	PublicComment      string    `bun:",nullzero"` +	Obfuscate          *bool     `bun:",nullzero,notnull,default:false"` +	SubscriptionID     string    `bun:"type:CHAR(26),unique:domain_permission_drafts_permission_type_domain_subscription_id_uniq"` +} diff --git a/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissionexclude.go b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissionexclude.go new file mode 100644 index 000000000..3ff46ba23 --- /dev/null +++ b/internal/db/bundb/migrations/20241022153016_domain_permission_draft_exclude/domainpermissionexclude.go @@ -0,0 +1,31 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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 gtsmodel + +import ( +	"time" +) + +type DomainPermissionExclude struct { +	ID                 string    `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` +	CreatedAt          time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` +	UpdatedAt          time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` +	Domain             string    `bun:",nullzero,notnull,unique"` +	CreatedByAccountID string    `bun:"type:CHAR(26),nullzero,notnull"` +	PrivateComment     string    `bun:",nullzero"` +} diff --git a/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions.go b/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions.go new file mode 100644 index 000000000..7d2bd085c --- /dev/null +++ b/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions.go @@ -0,0 +1,75 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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 migrations + +import ( +	"context" + +	gtsmodel "github.com/superseriousbusiness/gotosocial/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions" +	"github.com/uptrace/bun" +) + +func init() { +	up := func(ctx context.Context, db *bun.DB) error { +		return db.RunInTx(ctx, nil, func(ctx context.Context, tx bun.Tx) error { +			// Create `domain_permission_subscriptions`. +			if _, err := tx. +				NewCreateTable(). +				Model((*gtsmodel.DomainPermissionSubscription)(nil)). +				IfNotExists(). +				Exec(ctx); err != nil { +				return err +			} + +			// Create indexes. Indices. Indie sexes. +			if _, err := tx. +				NewCreateIndex(). +				Table("domain_permission_subscriptions"). +				// Filter on permission type. +				Index("domain_permission_subscriptions_permission_type_idx"). +				Column("permission_type"). +				IfNotExists(). +				Exec(ctx); err != nil { +				return err +			} + +			if _, err := tx. +				NewCreateIndex(). +				Table("domain_permission_subscriptions"). +				// Sort by priority DESC. +				Index("domain_permission_subscriptions_priority_order_idx"). +				ColumnExpr("? DESC", bun.Ident("priority")). +				IfNotExists(). +				Exec(ctx); err != nil { +				return err +			} + +			return nil +		}) +	} + +	down := func(ctx context.Context, db *bun.DB) error { +		return db.RunInTx(ctx, nil, func(ctx context.Context, tx bun.Tx) error { +			return nil +		}) +	} + +	if err := Migrations.Register(up, down); err != nil { +		panic(err) +	} +} diff --git a/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions/domainpermissionsubscription.go b/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions/domainpermissionsubscription.go new file mode 100644 index 000000000..851f44f15 --- /dev/null +++ b/internal/db/bundb/migrations/20241022153016_domain_permission_subscriptions/domainpermissionsubscription.go @@ -0,0 +1,38 @@ +// GoToSocial +// Copyright (C) GoToSocial Authors admin@gotosocial.org +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// 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 gtsmodel + +import "time" + +type DomainPermissionSubscription struct { +	ID                    string    `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` +	Priority              uint8     `bun:""` +	Title                 string    `bun:",nullzero,unique"` +	PermissionType        uint8     `bun:",nullzero,notnull"` +	AsDraft               *bool     `bun:",nullzero,notnull,default:true"` +	AdoptOrphans          *bool     `bun:",nullzero,notnull,default:false"` +	CreatedByAccountID    string    `bun:"type:CHAR(26),nullzero,notnull"` +	URI                   string    `bun:",nullzero,notnull,unique"` +	ContentType           uint16    `bun:",nullzero,notnull"` +	FetchUsername         string    `bun:",nullzero"` +	FetchPassword         string    `bun:",nullzero"` +	FetchedAt             time.Time `bun:"type:timestamptz,nullzero"` +	SuccessfullyFetchedAt time.Time `bun:"type:timestamptz,nullzero"` +	ETag                  string    `bun:"etag,nullzero"` +	Error                 string    `bun:",nullzero"` +} diff --git a/internal/db/domain.go b/internal/db/domain.go index f4d05ad1d..643538e7e 100644 --- a/internal/db/domain.go +++ b/internal/db/domain.go @@ -132,4 +132,44 @@ type Domain interface {  	// IsDomainPermissionExcluded returns true if the given domain matches in the list of excluded domains.  	IsDomainPermissionExcluded(ctx context.Context, domain string) (bool, error) + +	/* +		Domain permission subscription stuff. +	*/ + +	// GetDomainPermissionSubscriptionByID gets one DomainPermissionSubscription with the given ID. +	GetDomainPermissionSubscriptionByID(ctx context.Context, id string) (*gtsmodel.DomainPermissionSubscription, error) + +	// GetDomainPermissionSubscriptions returns a page of +	// DomainPermissionSubscriptions using the given parameters. +	GetDomainPermissionSubscriptions( +		ctx context.Context, +		permType gtsmodel.DomainPermissionType, +		page *paging.Page, +	) ([]*gtsmodel.DomainPermissionSubscription, error) + +	// GetDomainPermissionSubscriptionsByPriority returns *all* domain permission +	// subscriptions of the given permission type, sorted by priority descending. +	GetDomainPermissionSubscriptionsByPriority( +		ctx context.Context, +		permType gtsmodel.DomainPermissionType, +	) ([]*gtsmodel.DomainPermissionSubscription, error) + +	// PutDomainPermissionSubscription stores one DomainPermissionSubscription. +	PutDomainPermissionSubscription(ctx context.Context, permSub *gtsmodel.DomainPermissionSubscription) error + +	// UpdateDomainPermissionSubscription updates the provided +	// columns of one DomainPermissionSubscription. +	UpdateDomainPermissionSubscription( +		ctx context.Context, +		permSub *gtsmodel.DomainPermissionSubscription, +		columns ...string, +	) error + +	// DeleteDomainPermissionSubscription deletes one DomainPermissionSubscription with the given id. +	DeleteDomainPermissionSubscription(ctx context.Context, id string) error + +	// CountDomainPermissionSubscriptionPerms counts the number of permissions +	// currently managed by the domain permission subscription of the given ID. +	CountDomainPermissionSubscriptionPerms(ctx context.Context, id string) (int, error)  } | 
