mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 18:32:25 -05:00 
			
		
		
		
	Domain block (#76)
* 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
This commit is contained in:
		
					parent
					
						
							
								cf19aaf0df
							
						
					
				
			
			
				commit
				
					
						d389e7b150
					
				
			
		
					 100 changed files with 3447 additions and 1419 deletions
				
			
		
							
								
								
									
										36
									
								
								internal/processing/admin/deletedomainblock.go
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								internal/processing/admin/deletedomainblock.go
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,36 @@ | |||
| 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) DomainBlockDelete(account *gtsmodel.Account, id string) (*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)) | ||||
| 	} | ||||
| 
 | ||||
| 	// prepare the domain block to return | ||||
| 	mastoDomainBlock, err := p.tc.DomainBlockToMasto(domainBlock, false) | ||||
| 	if err != nil { | ||||
| 		return nil, gtserror.NewErrorInternalError(err) | ||||
| 	} | ||||
| 
 | ||||
| 	// delete the domain block | ||||
| 	if err := p.db.DeleteByID(id, domainBlock); err != nil { | ||||
| 		return nil, gtserror.NewErrorInternalError(err) | ||||
| 	} | ||||
| 
 | ||||
| 	return mastoDomainBlock, nil | ||||
| } | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue