mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 14:52:30 -05:00 
			
		
		
		
	
		
			
	
	
		
			31 lines
		
	
	
	
		
			952 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
	
		
			952 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package admin | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"fmt" | ||
|  | 
 | ||
|  | 	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) DomainBlockGet(account *gtsmodel.Account, id string, export bool) (*apimodel.DomainBlock, gtserror.WithCode) { | ||
|  | 	domainBlock := >smodel.DomainBlock{} | ||
|  | 
 | ||
|  | 	if err := p.db.GetByID(id, domainBlock); err != nil { | ||
|  | 		if _, ok := err.(db.ErrNoEntries); !ok { | ||
|  | 			// something has gone really wrong | ||
|  | 			return nil, gtserror.NewErrorInternalError(err) | ||
|  | 		} | ||
|  | 		// there are no entries for this ID | ||
|  | 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("no entry for ID %s", id)) | ||
|  | 	} | ||
|  | 
 | ||
|  | 	mastoDomainBlock, err := p.tc.DomainBlockToMasto(domainBlock, export) | ||
|  | 	if err != nil { | ||
|  | 		return nil, gtserror.NewErrorInternalError(err) | ||
|  | 	} | ||
|  | 
 | ||
|  | 	return mastoDomainBlock, nil | ||
|  | } |