* #132 - added translations * wip * #132 - added translations * #132 - cs fix * #132 - cs fix Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl>
		
			
				
	
	
		
			34 lines
		
	
	
		
			883 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			883 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Toby\Infrastructure\Slack\Handlers;
 | |
| 
 | |
| use Spatie\SlashCommand\Request;
 | |
| use Spatie\SlashCommand\Response;
 | |
| use Toby\Infrastructure\Slack\Elements\Attachment;
 | |
| use Toby\Infrastructure\Slack\Traits\ListsHandlers;
 | |
| 
 | |
| class Help extends SignatureHandler
 | |
| {
 | |
|     use ListsHandlers;
 | |
| 
 | |
|     protected $signature = "toby pomoc";
 | |
|     protected $description = "Show all available commands";
 | |
| 
 | |
|     public function handle(Request $request): Response
 | |
|     {
 | |
|         $handlers = $this->findAvailableHandlers();
 | |
| 
 | |
|         $attachmentFields = $this->mapHandlersToAttachments($handlers);
 | |
| 
 | |
|         return $this->respondToSlack(__("Available commands:"))
 | |
|             ->withAttachment(
 | |
|                 Attachment::create()
 | |
|                     ->setColor("good")
 | |
|                     ->useMarkdown()
 | |
|                     ->setFields($attachmentFields),
 | |
|             );
 | |
|     }
 | |
| }
 |