feat: add update mapper endpoint with disabled option
This commit is contained in:
parent
6bd4dd5dd1
commit
3e4264309a
|
@ -88,7 +88,7 @@ class REST_Metadatum_Mappers_Controller extends REST_Controller {
|
|||
*/
|
||||
public function prepare_metadatum_for_response( $item, $request ) {
|
||||
if(!empty($item)){
|
||||
$item_arr = ['field_id' => $item->get_id(), 'exposer_mapping' => $item->get('exposer_mapping')];
|
||||
$item_arr = ['metadatum_id' => $item->get_id(), 'exposer_mapping' => $item->get('exposer_mapping')];
|
||||
return $item_arr;
|
||||
}
|
||||
return $item;
|
||||
|
@ -101,7 +101,8 @@ class REST_Metadatum_Mappers_Controller extends REST_Controller {
|
|||
*/
|
||||
public function get_items( $request ) {
|
||||
$collection_id = isset($request['collection_id']) ? $request['collection_id'] : 'default';
|
||||
$disabled_mappers = get_post_meta($collection_id, 'disabled_mappers', false);
|
||||
$collection = \Tainacan\Repositories\Collections::get_instance()->fetch($collection_id);
|
||||
$disabled_mappers = isset($collection) ? $collection->get_disabled_mappers() : [];
|
||||
$Tainacan_Mappers = \Tainacan\Mappers_Handler::get_instance();
|
||||
|
||||
$metadatum_mappers = $Tainacan_Mappers->get_mappers( 'OBJECT' );
|
||||
|
@ -130,7 +131,9 @@ class REST_Metadatum_Mappers_Controller extends REST_Controller {
|
|||
}
|
||||
|
||||
$collection_id = isset($request['collection_id']) ? $request['collection_id'] : 'default';
|
||||
$disabled_mappers = get_post_meta($collection_id, 'disabled_mappers', false);
|
||||
$collection = \Tainacan\Repositories\Collections::get_instance()->fetch($collection_id);
|
||||
|
||||
$disabled_mappers = isset($collection) ? $collection->get_disabled_mappers() : []; //get_post_meta($collection_id, 'disabled_mappers', false);
|
||||
$Tainacan_Mappers = \Tainacan\Mappers_Handler::get_instance();
|
||||
$metadatum_mappers = $Tainacan_Mappers->get_mappers( 'OBJECT' );
|
||||
|
||||
|
@ -189,13 +192,26 @@ class REST_Metadatum_Mappers_Controller extends REST_Controller {
|
|||
* @return \WP_Error|\WP_REST_Response
|
||||
*/
|
||||
public function update_item( $request ) {
|
||||
if( !isset( $request['slug'] ) ) {
|
||||
return new \WP_REST_Response([
|
||||
'error_message' => __('Slug mapper not informed', 'tainacan'),
|
||||
], 422);
|
||||
}
|
||||
$slug_mapper = $request['slug'];
|
||||
$Tainacan_Mappers = \Tainacan\Mappers_Handler::get_instance();
|
||||
$Tainacan_Metadata = \Tainacan\Repositories\Metadata::get_instance();
|
||||
$body = json_decode( $request->get_body(), true );
|
||||
if($mapper = $Tainacan_Mappers::get_mapper_from_request($request)) {
|
||||
|
||||
if($Tainacan_Mappers->mapper_exists($slug_mapper)) {
|
||||
$mapper = $Tainacan_Mappers::get_mapper_by_slug($slug_mapper);
|
||||
$body = json_decode( $request->get_body(), true );
|
||||
if( !isset($body) || empty($body) ) {
|
||||
return new \WP_REST_Response([
|
||||
'error_message' => __('Body cannot be empty.', 'tainacan'),
|
||||
'item' => $request->get_body()
|
||||
], 400);
|
||||
}
|
||||
$response = ['mapper' => $slug_mapper, 'metadatum'=>[]];
|
||||
if(count($body['metadata_mappers']) > 0) {
|
||||
$response = [];
|
||||
$saved = [];
|
||||
foreach ($body['metadata_mappers'] as $metadatum_mapper) {
|
||||
$metadatum_mapper['metadatum_id'] = intval($metadatum_mapper['metadatum_id']);
|
||||
if(is_array($metadatum_mapper['mapper_metadata'])) {
|
||||
|
@ -223,24 +239,44 @@ class REST_Metadatum_Mappers_Controller extends REST_Controller {
|
|||
$metadatum->set('exposer_mapping', $exposer_mapping);
|
||||
if($metadatum->validate()) {
|
||||
$Tainacan_Metadata->update($metadatum);
|
||||
$response[] = $this->prepare_metadatum_for_response($metadatum, $request);
|
||||
} else {
|
||||
return new \WP_REST_Response([
|
||||
'error_message' => __('One or more values are invalid.', 'tainacan'),
|
||||
'errors' => $prepared->get_errors(),
|
||||
'metadatum' => $this->prepare_item_for_response($prepared, $request),
|
||||
'errors' => $metadatum->get_errors(),
|
||||
'metadatum' => $this->prepare_item_for_response($metadatum, $request),
|
||||
], 400);
|
||||
}
|
||||
}
|
||||
$response['metadatum'][] = $this->prepare_metadatum_for_response($metadatum, $request);
|
||||
}
|
||||
|
||||
return new \WP_REST_Response($response, 200);
|
||||
}
|
||||
if (isset($request["collection_id"]) && isset($body["disabled"])) {
|
||||
$collection_id = $request["collection_id"];
|
||||
$disabled = $body["disabled"];
|
||||
$collections_repository = \Tainacan\Repositories\Collections::get_instance();
|
||||
$collection = $collections_repository->fetch($collection_id);
|
||||
if ($collection) {
|
||||
$disabled_mappers = $collection->get_disabled_mappers();
|
||||
if ($disabled == true && !in_array($slug_mapper, $disabled_mappers)) {
|
||||
$disabled_mappers[] = $slug_mapper;
|
||||
} elseif (
|
||||
($disabled == false && $key = array_search($slug_mapper, $disabled_mappers)) !== false
|
||||
) {
|
||||
unset($disabled_mappers[$key]);
|
||||
}
|
||||
$collection->set_disabled_mappers($disabled_mappers);
|
||||
if ($collection->validate()) {
|
||||
$collections_repository->update($collection);
|
||||
}
|
||||
$response['disabled'] = $disabled;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return new \WP_REST_Response([
|
||||
'error_message' => __('Mapper not found', 'tainacan'),
|
||||
], 400);
|
||||
}
|
||||
return new \WP_REST_Response([
|
||||
'error_message' => __('Body cannot be empty.', 'tainacan'),
|
||||
'item' => $request->get_body()
|
||||
], 400);
|
||||
return new \WP_REST_Response($response, 200);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -40,7 +40,8 @@ class Collection extends Entity {
|
|||
$hide_items_thumbnail_on_lists,
|
||||
$submission_anonymous_user,
|
||||
$submission_default_status,
|
||||
$submission_use_recaptcha;
|
||||
$submission_use_recaptcha,
|
||||
$disabled_mappers;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
|
@ -615,6 +616,15 @@ class Collection extends Entity {
|
|||
return $this->get_mapped_property( 'default_metadata_section_properties' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of disabled mappers in collection.
|
||||
*
|
||||
* @return array[string]
|
||||
*/
|
||||
function get_disabled_mappers() {
|
||||
return $this->get_mapped_property( 'disabled_mappers' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the collection name
|
||||
*
|
||||
|
@ -888,6 +898,16 @@ class Collection extends Entity {
|
|||
return $this->set_mapped_property( 'default_metadata_section_properties', $value);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set the list of disabled mappers in collection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function set_disabled_mappers($value) {
|
||||
return $this->set_mapped_property( 'disabled_mappers', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate Collection
|
||||
*
|
||||
|
|
|
@ -159,6 +159,17 @@ class Mappers_Handler {
|
|||
}
|
||||
return apply_filters('tainacan-get-mapper-from-request', $return_mapper, $request);
|
||||
}
|
||||
|
||||
public static function get_mapper_by_slug($mapper_slug) {
|
||||
$Tainacan_Mappers = self::get_instance();
|
||||
if($Tainacan_Mappers->mapper_exists($mapper_slug))
|
||||
{
|
||||
$mapper = $Tainacan_Mappers->check_class_name($mapper_slug, true, self::MAPPER_CLASS_PREFIX);
|
||||
$return_mapper = new $mapper;
|
||||
}
|
||||
return apply_filters('tainacan-get-mapper-by-slug', $return_mapper, $mapper_slug);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Return array of mapped metadatum
|
||||
|
|
|
@ -330,6 +330,14 @@ class Collections extends Repository {
|
|||
]
|
||||
]
|
||||
],
|
||||
'disabled_mappers' => [
|
||||
'map' => 'meta',
|
||||
'title' => __( 'The list of mappers disabled in collection', 'tainacan' ),
|
||||
'description' => __( 'The list of mappers disabled in collection', 'tainacan' ),
|
||||
'type' => 'array',
|
||||
'items' => [ 'type' => 'string' ],
|
||||
'default' => [],
|
||||
],
|
||||
] );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue