<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Feb 24, 2014 at 2:10 PM, Miguel Lemos <span dir="ltr">&lt;<a href="mailto:miguel21op@gmail.com" target="_blank">miguel21op@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><br></div>If the app is running in the foreground, I can control what the 
notification shows or does next, because I can use the parameters I sent previously in 
the message to decide if I show it or not, or  what I&#39;m going to do 
according to  the data retrieved, before it triggers to the screen. Example:<br><br>function onNotification(e) {<br><br>      tit =  <a href="http://e.payload.at" target="_blank">e.payload.at</a>;<br>      notif= e.payload.av;<br>

      ent =  e.payload.en;<br>      url=   e.payload.ul;<br><br>    if (e.foreground) {<br>
          if (ent==entID){ // a given condition<br>            navigator.notification.<div>confirm(<br>            notif, <br>            onConfirmDo, <br>            tit, <br>            &#39;OK&#39;  <br>        );<br>

            function onConfirmDo(button){<br>
                    if(button == &quot;1&quot; &amp;&amp; url){<br>                     openInside(url+&#39;&amp;imei=&#39;+imei);<br>                    }<br>             }<br>            <br>          }<br>      }<br>    else {   <br>


            if (e.coldstart) {<br>                //<br>            }<br>            else {<br>                //<br>            }<br>    }<br>}</div><br>Of course in many cases this is not a effective solution, because I
 should filter the message before she leaves the server. For instance: I
 want to show a notification to all my customers under 40 y.o. According to this:<br>
<br><a href="http://aerogear.org/docs/specs/aerogear-server-push/" target="_blank">http://aerogear.org/docs/specs/aerogear-server-push/</a><br><br>...I can use &quot;alias&quot;, &quot;categories&quot;, etc., to perform such segmentation; 
but I don&#39;t know how to send / store (?)  that information into the server.<br></div></div></div></div></blockquote><div><br></div><div><br></div><div><br></div><div>Your backend knows:</div><div>- the age</div><div>
- the username</div><div><br></div><div>Now, when a device registers use the username as the alias value. Using an alias on _device registration_ (E.g. username or an email address) is already part of the Cordova example: <a href="https://github.com/aerogear/aerogear-pushplugin-cordova#sample-example">https://github.com/aerogear/aerogear-pushplugin-cordova#sample-example</a></div>
<div><br></div><div><br></div><div>Now the sending part:</div><div>Your sever can do the query &quot;select all usernames under 40 years&quot;, where you get a list of usernames. Use these queried usernames as part of the SEND, like shown here:</div>
<div><div><a href="https://github.com/aerogear/aerogear-unifiedpush-server#sender">https://github.com/aerogear/aerogear-unifiedpush-server#sender</a><br></div><div><br></div><div>Or a bit more detailed our message spec:<br>
</div><div><a href="http://aerogear.org/docs/specs/aerogear-push-messages/">http://aerogear.org/docs/specs/aerogear-push-messages/</a></div><div><br></div><div><br></div></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div dir="ltr"><div><div><div><br></div>Another issue related to this one: is there some way I have to control over the alert on the notification 
tray? That is: make it show only if a given criteria is matched?<br></div></div></div></blockquote><div><br></div><div><br></div><div><div>No for apple. if &#39;alert&#39; is included, the OS displays the message. However, you should be able to send messages without an alert. Parse the details of the message and if you like (e.g. some rules are true), notify the user.</div>
<div><br></div><div>-Matthias</div><div><br></div></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div dir="ltr"><div><div><br></div>Thanks<span class=""><font color="#888888"><br><br></font></span></div><span class=""><font color="#888888">Miguel<br><div><div><div><br><br>
<br></div></div></div></font></span></div>
<br>_______________________________________________<br>
aerogear-dev mailing list<br>
<a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br>Matthias Wessendorf <br>
<br>blog: <a href="http://matthiaswessendorf.wordpress.com/" target="_blank">http://matthiaswessendorf.wordpress.com/</a><br>sessions: <a href="http://www.slideshare.net/mwessendorf" target="_blank">http://www.slideshare.net/mwessendorf</a><br>
twitter: <a href="http://twitter.com/mwessendorf" target="_blank">http://twitter.com/mwessendorf</a>
</div></div>