Merge branch 'feature/483' of https://github.com/tainacan/tainacan into feature/483

This commit is contained in:
mateuswetah 2021-03-05 15:28:25 -03:00
commit 99ee7960be
1 changed files with 42 additions and 0 deletions

View File

@ -62,6 +62,15 @@ class REST_Reports_Controller extends REST_Controller {
),
)
);
register_rest_route($this->namespace, $this->rest_base . '/taxonomy/(?P<taxonomy_id>[\d]+)',
array(
array(
'methods' => \WP_REST_Server::READABLE,
'callback' => array($this, 'get_taxonomy'),
'permission_callback' => array($this, 'reports_permissions_check'),
),
)
);
}
public function reports_permissions_check($request) {
@ -179,6 +188,39 @@ class REST_Reports_Controller extends REST_Controller {
}
return new \WP_REST_Response($response, 200);
}
public function get_taxonomy($request) {
$response = array(
'terms'=> array()
);
$taxonomy_id = $request['taxonomy_id'];
$taxonomy = $this->taxonomy_repository->fetch($taxonomy_id);
$taxonomy_identifier = $taxonomy->get_db_identifier();
$taxonomy_total_terms = wp_count_terms($taxonomy_identifier, array('hide_empty' => false) );
$limit = 100;
$offset = 0;
if ( !$taxonomy_total_terms) {
$taxonomy_total_terms = 0;
}
while($offset < $taxonomy_total_terms) {
$terms = get_terms( array(
'taxonomy' => $taxonomy->get_db_identifier(),
'number' => $limit,
'offset' => $offset,
'hide_empty' => false,
) );
foreach ($terms as $term) {
$response['terms'][$term->term_id] = array(
'id' => $term->term_id,
'name' => $term->name,
'count' => $term->count
);
}
$offset+=$limit;
}
return new \WP_REST_Response($response, 200);
}
public function get_stats_metadata($request) {
$response = array(