Skip to content

Commit

Permalink
Multi-language notificaitons + velocity templates in function library…
Browse files Browse the repository at this point in the history
… (untested)
  • Loading branch information
semancik committed Apr 19, 2018
1 parent 80f5308 commit 4d0eebf
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 0 deletions.
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.OrgType

(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 4d0eebf

Please sign in to comment.