mirror of
				https://github.com/superseriousbusiness/gotosocial
				synced 2025-06-05 21:59:39 +02:00 
			
		
		
		
	* start work on admin domain blocking * move stuff around + further work on domain blocks * move + restructure processor * prep work for deleting account * tidy * go fmt * formatting * domain blocking more work * check domain blocks way earlier on * progress on delete account * delete more stuff when an account is gone * and more... * domain blocky block block * get individual domain block, delete a block
		
			
				
	
	
		
			31 lines
		
	
	
		
			966 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			966 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package admin
 | |
| 
 | |
| import (
 | |
| 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/db"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/gtserror"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
 | |
| )
 | |
| 
 | |
| func (p *processor) DomainBlocksGet(account *gtsmodel.Account, export bool) ([]*apimodel.DomainBlock, gtserror.WithCode) {
 | |
| 	domainBlocks := []*gtsmodel.DomainBlock{}
 | |
| 
 | |
| 	if err := p.db.GetAll(&domainBlocks); err != nil {
 | |
| 		if _, ok := err.(db.ErrNoEntries); !ok {
 | |
| 			// something has gone really wrong
 | |
| 			return nil, gtserror.NewErrorInternalError(err)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	mastoDomainBlocks := []*apimodel.DomainBlock{}
 | |
| 	for _, b := range domainBlocks {
 | |
| 		mastoDomainBlock, err := p.tc.DomainBlockToMasto(b, export)
 | |
| 		if err != nil {
 | |
| 			return nil, gtserror.NewErrorInternalError(err)
 | |
| 		}
 | |
| 		mastoDomainBlocks = append(mastoDomainBlocks, mastoDomainBlock)
 | |
| 	}
 | |
| 
 | |
| 	return mastoDomainBlocks, nil
 | |
| }
 |