| Server IP : 188.114.97.4 / Your IP : 104.23.197.230 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/nicolasj/www/blog.ecoledelangues.be/wp-content/plugins/redirection/api/ |
Upload File : |
<?php
/**
* @api {get} /redirection/v1/log Get log logs
* @apiDescription Get log logs
* @apiGroup Log
*
* @apiParam {string} groupBy Group by 'ip' or 'url'
* @apiParam {string} orderby
* @apiParam {string} direction
* @apiParam {string} filter
* @apiParam {string} per_page
* @apiParam {string} page
*/
/**
* @api {post} /redirection/v1/log Delete log logs
* @apiDescription Delete log logs either by ID or filter or group
* @apiGroup Log
*
* @apiParam {string} items Array of log IDs
* @apiParam {string} filter
* @apiParam {string} filterBy
* @apiParam {string} groupBy Group by 'ip' or 'url'
*/
/**
* @api {post} /redirection/v1/bulk/log/delete Bulk actions on logs
* @apiDescription Delete log logs either by ID
* @apiGroup Log
*/
class Redirection_Api_Log extends Redirection_Api_Filter_Route {
public function __construct( $namespace ) {
$filters = array( 'url', 'ip', 'url-exact' );
$orders = array( 'url', 'ip' );
register_rest_route( $namespace, '/log', array(
'args' => $this->get_filter_args( $filters, $orders ),
$this->get_route( WP_REST_Server::READABLE, 'route_log' ),
$this->get_route( WP_REST_Server::EDITABLE, 'route_delete_all' ),
) );
$this->register_bulk( $namespace, '/bulk/log/(?P<bulk>delete)', $filters, $filters, 'route_bulk' );
}
public function route_log( WP_REST_Request $request ) {
return $this->get_logs( $request->get_params() );
}
public function route_bulk( WP_REST_Request $request ) {
$items = explode( ',', $request['items'] );
if ( is_array( $items ) ) {
$items = array_map( 'intval', $items );
array_map( array( 'RE_Log', 'delete' ), $items );
return $this->route_log( $request );
}
return $this->add_error_details( new WP_Error( 'redirect', 'Invalid array of items' ), __LINE__ );
}
public function route_delete_all( WP_REST_Request $request ) {
$params = $request->get_params();
$filter = false;
$filter_by = false;
if ( isset( $params['filter'] ) ) {
$filter = $params['filter'];
}
if ( isset( $params['filterBy'] ) && in_array( $params['filterBy'], array( 'url', 'ip', 'url-exact' ), true ) ) {
$filter_by = $params['filterBy'];
}
RE_Log::delete_all( $filter_by, $filter );
return $this->route_log( $request );
}
private function get_logs( array $params ) {
return RE_Filter_Log::get( 'redirection_logs', 'RE_Log', $params );
}
}