package com.constellio.app.ui.pages.management.schemas.display.search; import com.constellio.app.entities.schemasDisplay.SchemaDisplayConfig; import com.constellio.app.services.schemasDisplay.SchemasDisplayManager; import com.constellio.app.ui.application.NavigatorConfigurationService; import com.constellio.app.ui.entities.FormMetadataVO; import com.constellio.app.ui.framework.builders.MetadataToFormVOBuilder; import com.constellio.app.ui.framework.builders.MetadataToVOBuilder; import com.constellio.app.ui.framework.data.MetadataVODataProvider; import com.constellio.app.ui.pages.base.SingleSchemaBasePresenter; import com.constellio.app.ui.params.ParamUtils; import com.constellio.model.entities.CorePermissions; import com.constellio.model.entities.records.wrappers.User; import com.constellio.model.entities.schemas.Metadata; import com.constellio.model.entities.schemas.MetadataValueType; import com.constellio.model.entities.schemas.Schemas; import com.constellio.model.services.schemas.MetadataList; import com.constellio.model.services.schemas.MetadataSchemasManager; import com.constellio.model.services.schemas.SchemaUtils; import java.util.*; import static com.constellio.data.utils.AccentApostropheCleaner.removeAccents; public class SearchDisplayConfigPresenter extends SingleSchemaBasePresenter<SearchDisplayConfigView> { private Map<String, String> parameters; public SearchDisplayConfigPresenter(SearchDisplayConfigView view) { super(view); } @Override protected boolean hasPageAccess(String params, User user) { return user.has(CorePermissions.MANAGE_METADATASCHEMAS).globally(); } public MetadataVODataProvider getDataProvider() { return new MetadataVODataProvider(new MetadataToVOBuilder(), modelLayerFactory, collection, getSchemaCode()); } public void setParameters(Map<String, String> params) { this.parameters = params; } public List<FormMetadataVO> getMetadatas() { MetadataSchemasManager schemasManager = modelLayerFactory.getMetadataSchemasManager(); MetadataList list = schemasManager.getSchemaTypes(collection).getSchema(getSchemaCode()).getMetadatas(); SchemasDisplayManager displayManager = appLayerFactory.getMetadataSchemasDisplayManager(); List<FormMetadataVO> formMetadataVOs = new ArrayList<>(); MetadataToFormVOBuilder builder = new MetadataToFormVOBuilder(view.getSessionContext()); for (Metadata metadata : list) { FormMetadataVO metadataVO = builder .build(metadata, displayManager, parameters.get("schemaTypeCode"), view.getSessionContext()); if (this.isAllowedMetadata(metadataVO) && metadata.isEnabled()) { formMetadataVOs.add(metadataVO); } } final String language = view.getSessionContext().getCurrentLocale().getLanguage(); Collections.sort(formMetadataVOs, new Comparator<FormMetadataVO>() { @Override public int compare(FormMetadataVO o1, FormMetadataVO o2) { String s1 = removeAccents(o1.getLabel(language).toLowerCase()); String s2 = removeAccents(o2.getLabel(language).toLowerCase()); return s1.compareTo(s2); } }); return formMetadataVOs; } public List<FormMetadataVO> getValueMetadatas() { MetadataSchemasManager schemasManager = modelLayerFactory.getMetadataSchemasManager(); SchemasDisplayManager displayManager = schemasDisplayManager(); List<String> codeList = displayManager.getSchema(collection, getSchemaCode()).getSearchResultsMetadataCodes(); List<FormMetadataVO> formMetadataVOs = new ArrayList<>(); MetadataToFormVOBuilder builder = new MetadataToFormVOBuilder(view.getSessionContext()); for (String metadataCode : codeList) { Metadata metadata = schemasManager.getSchemaTypes(collection).getMetadata(metadataCode); formMetadataVOs .add(builder.build(metadata, displayManager, parameters.get("schemaTypeCode"), view.getSessionContext())); } return formMetadataVOs; } private boolean isAllowedMetadata(FormMetadataVO metadataVO) { boolean result; List<Metadata> restrictedMetadata = Arrays.asList(Schemas.SCHEMA, Schemas.VERSION, Schemas.PATH, Schemas.PRINCIPAL_PATH, Schemas.PARENT_PATH, Schemas.REMOVED_AUTHORIZATIONS, Schemas.ALL_REMOVED_AUTHS, Schemas.ATTACHED_ANCESTORS, Schemas.IS_DETACHED_AUTHORIZATIONS, Schemas.TOKENS, Schemas.COLLECTION, Schemas.FOLLOWERS, Schemas.LOGICALLY_DELETED_STATUS, Schemas.TITLE); List<MetadataValueType> restrictedType = Arrays.asList(MetadataValueType.STRUCTURE, MetadataValueType.CONTENT); List<String> localCodes = new SchemaUtils().toMetadataLocalCodes(restrictedMetadata); result = !restrictedType.contains(metadataVO.getValueType()) && !localCodes.contains(metadataVO.getLocalcode()); return result && metadataVO.isEnabled(); } public void saveButtonClicked(List<FormMetadataVO> schemaVOs) { SchemasDisplayManager manager = schemasDisplayManager(); MetadataSchemasManager schemasManager = modelLayerFactory.getMetadataSchemasManager(); SchemaDisplayConfig config = schemasDisplayManager().getSchema(collection, getSchemaCode()); List<String> metadataCode = new ArrayList<>(); for (FormMetadataVO formMetadataVO : schemaVOs) { metadataCode.add(formMetadataVO.getCode()); } metadataCode.add(0, schemasManager.getSchemaTypes(collection).getSchema(getSchemaCode()) .getMetadata(Schemas.TITLE.getCode()).getCode()); config = config.withSearchResultsMetadataCodes(metadataCode); manager.saveSchema(config); String params = ParamUtils.addParams(NavigatorConfigurationService.DISPLAY_SCHEMA, parameters); view.navigate().to().listSchema(params); } public void cancelButtonClicked() { String params = ParamUtils.addParams(NavigatorConfigurationService.DISPLAY_SCHEMA, parameters); view.navigate().to().listSchema(params); } }