Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Apr 19, 2018
2 parents d81653c + f80c5e6 commit 2b65837
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 4 deletions.
Expand Up @@ -31,9 +31,7 @@
import com.evolveum.midpoint.web.component.input.ExpressionValuePanel;
import com.evolveum.midpoint.web.component.util.VisibleEnableBehaviour;
import com.evolveum.midpoint.web.util.InfoTooltipBehavior;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ExpressionType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ShadowType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.*;
import com.evolveum.prism.xml.ns._public.types_3.ItemDeltaType;
import com.evolveum.prism.xml.ns._public.types_3.ObjectDeltaType;

Expand Down Expand Up @@ -261,7 +259,11 @@ public boolean isVisible() {
@Override
protected void populateItem(final ListItem<ValueWrapper> item) {
BasePanel panel;
if (item.getModelObject().getItem().getItemDefinition().getTypeName().equals(ExpressionType.COMPLEX_TYPE)){
ItemWrapper itemWrapper = item.getModelObject().getItem();
if (itemWrapper.getPath().containsName(AssignmentType.F_CONSTRUCTION) &&
itemWrapper.getPath().containsName(ConstructionType.F_ASSOCIATION) &&
itemWrapper.getPath().containsName(ResourceObjectAssociationType.F_OUTBOUND) &&
itemWrapper.getPath().containsName(MappingType.F_EXPRESSION)){
ExpressionWrapper expressionWrapper = (ExpressionWrapper)item.getModelObject().getItem();
panel = new ExpressionValuePanel("value", new PropertyModel(item.getModel(), "value.value"),
expressionWrapper.getConstruction(), pageBase);
Expand Down
61 changes: 61 additions & 0 deletions samples/objects/function-library-mail-templates.xml
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2018 Evolveum
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<functionLibrary oid="bc5d74e6-4317-11e8-9dec-8fd64e20fbe0"
xmlns='http://midpoint.evolveum.com/xml/ns/public/common/common-3'
xmlns:c='http://midpoint.evolveum.com/xml/ns/public/common/common-3'
xmlns:t='http://prism.evolveum.com/xml/ns/public/types-3'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<name>mailTemplates</name>
<description>Velocity mail templates for various languages</description>
<function>
<name>en</name>
<parameter>
<name>username</name>
<type>xsd:string</type>
</parameter>
<script>
<language>http://midpoint.evolveum.com/xml/ns/public/expression/language#velocity</language>
<code>Hello $username</code>
</script>
<returnType>xsd:string</returnType>
</function>
<function>
<name>sk</name>
<parameter>
<name>username</name>
<type>xsd:string</type>
</parameter>
<script>
<language>http://midpoint.evolveum.com/xml/ns/public/expression/language#velocity</language>
<code>Ahoj $username</code>
</script>
<returnType>xsd:string</returnType>
</function>
<function>
<name>default</name>
<parameter>
<name>username</name>
<type>xsd:string</type>
</parameter>
<script>
<language>http://midpoint.evolveum.com/xml/ns/public/expression/language#velocity</language>
<code>Ugh $username !!!</code>
</script>
<returnType>xsd:string</returnType>
</function>
</functionLibrary>
85 changes: 85 additions & 0 deletions samples/objects/system-configuration-multilanguage-notifier.xml
@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2018 Evolveum
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<systemConfiguration
xmlns='http://midpoint.evolveum.com/xml/ns/public/common/common-3'
xmlns:c='http://midpoint.evolveum.com/xml/ns/public/common/common-3'
xmlns:t='http://prism.evolveum.com/xml/ns/public/types-3'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<name>System Configuration</name>

<!-- ... -->

<notificationConfiguration>
<handler>
<generalNotifier>
<name>Welcome new user</name>
<expressionFilter>
<script>
<code>
import com.evolveum.midpoint.notifications.api.events.ModelEvent
import com.evolveum.midpoint.xml.ns._public.common.common_3.UserType

(event instanceof ModelEvent &amp;&amp; event.getFocusContext() != null &amp;&amp; UserType.class.isAssignableFrom(event.getFocusContext().getObjectTypeClass()) &amp;&amp; event.getFocusContext().isAdd()))
</code>
</script>
</expressionFilter>
<recipientExpression>
<value>iam@localhost</value>
</recipientExpression>
<subjectExpression>
<script>
<code>
return 'New user notification'
</code>
</script>
</subjectExpression>
<bodyExpression>
<script>
<code>
import com.evolveum.midpoint.notifications.api.events.ModelEvent;

focusContext = ((ModelEvent) event).getFocusContext();
objectNew = focusContext.getObjectNew();
username = basic.stringify(objectNew.getName());

language = objectNew.asObjectable().getPreferredLanguage();
if (!language) {
language = 'default'
}

templateParams = new HashMap()
templateParams.put("username", username)
return mailTemplates.execute(language, templateParams)
</code>
</script>
</bodyExpression>
<transport>mail</transport>
</generalNotifier>
</handler>
<!-- configurations suitable for testing - they redirect all notifications to log files; some more real configurations are show below -->
<mail>
<redirectToFile>mail-notifications.log</redirectToFile>
</mail>
<sms>
<redirectToFile>sms-notifications.log</redirectToFile>
</sms>
</notificationConfiguration>

<!-- ... -->

</systemConfiguration>

0 comments on commit 2b65837

Please sign in to comment.