FormsRoutes.php
8 months ago
HostingRoutes.php
3 months ago
IntegrationsRoutes.php
1 week ago
ReachRoutes.php
1 month ago
Routes.php
5 months ago
Routes.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Hostinger\Reach\Api\Routes; |
| 4 | |
| 5 | use Hostinger\Reach\Api\ApiKeyManager; |
| 6 | use Hostinger\Reach\Api\Handlers\ApiHandler; |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | die; |
| 10 | } |
| 11 | |
| 12 | class Routes { |
| 13 | private ApiHandler $handler; |
| 14 | private ApiKeyManager $api_key_manager; |
| 15 | |
| 16 | public function __construct( ApiHandler $handler, ApiKeyManager $api_key_manager ) { |
| 17 | $this->handler = $handler; |
| 18 | $this->api_key_manager = $api_key_manager; |
| 19 | } |
| 20 | |
| 21 | public function init(): void { |
| 22 | add_action( 'rest_api_init', array( $this, 'register_routes' ) ); |
| 23 | } |
| 24 | |
| 25 | public function permission_check(): bool { |
| 26 | if ( has_action( 'litespeed_control_set_nocache' ) ) { |
| 27 | do_action( |
| 28 | 'litespeed_control_set_nocache', |
| 29 | 'Custom Rest API endpoint, not cacheable.' |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | return current_user_can( 'manage_options' ); |
| 34 | } |
| 35 | } |
| 36 |