Compare commits

..

No commits in common. "f312ff748e34641e455df743a4450257c5b27b19" and "db7b44db32f1db3cb712bf6b5650e2b16b63f908" have entirely different histories.

View file

@ -16,13 +16,12 @@ function onDeviceReadyPush() {
windows: {}
});
/*
* registra l'id univoco dell'installazione su xm.bus.pm
*/
push.on('registration', function(registration) {
console.log(JSON.stringify(registration));
var url = "https://xm.bus.pm/api/d/c?token=" + registration.registrationId + "&token_type=gcm&topic=xm24";
var url = "https://xm.bus.pm/api/d/c?device=" + registration.registrationId;
$.get(url, function( data ) {
console.log(JSON.stringify(data));
});
@ -33,36 +32,11 @@ function onDeviceReadyPush() {
*/
push.on('notification', function(data) {
console.log(JSON.stringify(data));
// alert(JSON.stringify(data));
if(data.additionalData.type === 'alarm')
{
/*
* QUESTA è una COMUNICAZIONE IMPORTANTE!
*/
$("body").pagecontainer("change", "#alert");
$("#alert-title").html(data.title);
$("#alert-message").html(data.message);
}
else
{
/*
* QUESTO è un SEMPLICE AGGIORNAMENTO!
*/
if(!empty(data.additionalData.url))
{
console.log('HO UN URL VALIDO '+data.additionalData.url);
/*
TODO: va aggiunto come si deve comportare l'app
*/
}
else {
console.log('NESSUN URL, DEVO VISUALIZZARE DA QUALCHE PARTE MESSAGGIO E TITOLO..');
/*
TODO: va aggiunto come si deve comportare l'app
*/
}
}
$("body").pagecontainer("change", "#alert");
$("#alert-title").html(data.title);
$("#alert-message").html(data.message);
});