mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-21 16:55:38 +03:00
lint
This commit is contained in:
parent
2f610eb955
commit
9a91726700
1 changed files with 30 additions and 31 deletions
|
@ -249,38 +249,37 @@ func (p *Processor) DomainPermissionDraftAccept(
|
||||||
deleteDraft()
|
deleteDraft()
|
||||||
|
|
||||||
return new, actionID, errWithCode
|
return new, actionID, errWithCode
|
||||||
} else {
|
|
||||||
// Domain permission exists but we should overwrite
|
|
||||||
// it by just updating the existing domain permission.
|
|
||||||
// Domain can't change, so no need to re-run side effects.
|
|
||||||
existing.SetCreatedByAccountID(permDraft.CreatedByAccountID)
|
|
||||||
existing.SetCreatedByAccount(permDraft.CreatedByAccount)
|
|
||||||
existing.SetPrivateComment(permDraft.PrivateComment)
|
|
||||||
existing.SetPublicComment(permDraft.PublicComment)
|
|
||||||
existing.SetObfuscate(permDraft.Obfuscate)
|
|
||||||
existing.SetSubscriptionID(permDraft.SubscriptionID)
|
|
||||||
|
|
||||||
var err error
|
|
||||||
switch dp := existing.(type) {
|
|
||||||
case *gtsmodel.DomainBlock:
|
|
||||||
err = p.state.DB.UpdateDomainBlock(ctx, dp)
|
|
||||||
|
|
||||||
case *gtsmodel.DomainAllow:
|
|
||||||
err = p.state.DB.UpdateDomainAllow(ctx, dp)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
err := gtserror.Newf("db error updating existing domain permission: %w", err)
|
|
||||||
return nil, "", gtserror.NewErrorInternalError(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up the draft
|
|
||||||
// before returning.
|
|
||||||
deleteDraft()
|
|
||||||
|
|
||||||
apiPerm, errWithCode := p.apiDomainPerm(ctx, existing, false)
|
|
||||||
return apiPerm, "", errWithCode
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Domain permission exists but we should overwrite
|
||||||
|
// it by just updating the existing domain permission.
|
||||||
|
// Domain can't change, so no need to re-run side effects.
|
||||||
|
existing.SetCreatedByAccountID(permDraft.CreatedByAccountID)
|
||||||
|
existing.SetCreatedByAccount(permDraft.CreatedByAccount)
|
||||||
|
existing.SetPrivateComment(permDraft.PrivateComment)
|
||||||
|
existing.SetPublicComment(permDraft.PublicComment)
|
||||||
|
existing.SetObfuscate(permDraft.Obfuscate)
|
||||||
|
existing.SetSubscriptionID(permDraft.SubscriptionID)
|
||||||
|
|
||||||
|
switch dp := existing.(type) {
|
||||||
|
case *gtsmodel.DomainBlock:
|
||||||
|
err = p.state.DB.UpdateDomainBlock(ctx, dp)
|
||||||
|
|
||||||
|
case *gtsmodel.DomainAllow:
|
||||||
|
err = p.state.DB.UpdateDomainAllow(ctx, dp)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
err := gtserror.Newf("db error updating existing domain permission: %w", err)
|
||||||
|
return nil, "", gtserror.NewErrorInternalError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean up the draft
|
||||||
|
// before returning.
|
||||||
|
deleteDraft()
|
||||||
|
|
||||||
|
apiPerm, errWithCode := p.apiDomainPerm(ctx, existing, false)
|
||||||
|
return apiPerm, "", errWithCode
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Processor) DomainPermissionDraftRemove(
|
func (p *Processor) DomainPermissionDraftRemove(
|
||||||
|
|
Loading…
Reference in a new issue