/** * Copyright (C) 2010-2017 Structr GmbH * * This file is part of Structr <http://structr.org>. * * Structr is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * Structr is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Structr. If not, see <http://www.gnu.org/licenses/>. */ package org.structr.core.property; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.structr.api.Predicate; import org.structr.api.search.SortType; import org.structr.common.SecurityContext; import org.structr.common.error.FrameworkException; import org.structr.core.GraphObject; import org.structr.core.converter.PropertyConverter; import org.structr.core.script.Scripting; import org.structr.schema.action.ActionContext; /** * * */ public class FunctionProperty<T> extends Property<T> { private static final Logger logger = LoggerFactory.getLogger(FunctionProperty.class.getName()); public FunctionProperty(final String name) { super(name); } @Override public Property<T> indexed() { super.indexed(); super.passivelyIndexed(); return this; } @Override public Class relatedType() { return null; } @Override public T getProperty(final SecurityContext securityContext, final GraphObject obj, final boolean applyConverter) { return getProperty(securityContext, obj, applyConverter, null); } @Override public T getProperty(final SecurityContext securityContext, final GraphObject obj, final boolean applyConverter, final Predicate<GraphObject> predicate) { try { if (obj != null && readFunction != null) { return (T)Scripting.evaluate(new ActionContext(securityContext), obj, "${".concat(readFunction).concat("}"), "getProperty(" + jsonName + ")"); } else { logger.warn("Unable to evaluate function property {}, object was null.", jsonName()); } } catch (Throwable t) { logger.warn("Exception while evaluating read function in Function property \"{}\"", jsonName()); } return null; } @Override public boolean isCollection() { return false; } @Override public SortType getSortType() { return SortType.Default; } @Override public Class valueType() { return Object.class; } @Override public Object fixDatabaseProperty(Object value) { return value; } @Override public String typeName() { return "Object"; } @Override public PropertyConverter<T, ?> databaseConverter(SecurityContext securityContext) { return null; } @Override public PropertyConverter<T, ?> databaseConverter(SecurityContext securityContext, GraphObject entity) { return null; } @Override public PropertyConverter<?, T> inputConverter(SecurityContext securityContext) { return null; } @Override public Object setProperty(SecurityContext securityContext, GraphObject obj, T value) throws FrameworkException { try { final ActionContext ctx = new ActionContext(securityContext); ctx.setConstant("value", value); return (T)Scripting.evaluate(ctx, obj, "${".concat(writeFunction).concat("}"), "setProperty(" + jsonName + ")"); } catch (Throwable t) { logger.warn("Exception while evaluating write function in Function property \"{}\"", jsonName()); } return null; } @Override public Property<T> format(final String format) { this.readFunction = format; return this; } }