forked from friendica/friendica-addons
jappixmini: autosubscribe only when contacts list changed
This commit is contained in:
parent
9c7b38fb4a
commit
fb7f2b1122
|
@ -458,6 +458,7 @@ function jappixmini_script(&$a,&$s) {
|
||||||
$contacts[$address] = $name;
|
$contacts[$address] = $name;
|
||||||
}
|
}
|
||||||
$contacts_json = json_encode($contacts);
|
$contacts_json = json_encode($contacts);
|
||||||
|
$contacts_hash = sha1($contacts_json);
|
||||||
|
|
||||||
// get nickname
|
// get nickname
|
||||||
$r = q("SELECT `username` FROM `user` WHERE `uid`=$uid");
|
$r = q("SELECT `username` FROM `user` WHERE `uid`=$uid");
|
||||||
|
@ -466,7 +467,7 @@ function jappixmini_script(&$a,&$s) {
|
||||||
// add javascript to start Jappix Mini
|
// add javascript to start Jappix Mini
|
||||||
$a->page['htmlhead'] .= "<script type=\"text/javascript\">
|
$a->page['htmlhead'] .= "<script type=\"text/javascript\">
|
||||||
jQuery(document).ready(function() {
|
jQuery(document).ready(function() {
|
||||||
jappixmini_addon_start('$server', '$username', '$proxy', '$bosh', $encrypt, '$password', $nickname, $contacts_json, $autoapprove, $autosubscribe);
|
jappixmini_addon_start('$server', '$username', '$proxy', '$bosh', $encrypt, '$password', $nickname, $contacts_json, '$contacts_hash', $autoapprove, $autosubscribe);
|
||||||
});
|
});
|
||||||
</script>";
|
</script>";
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ function jappixmini_addon_decrypt_password(encrypted_password, callback) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function jappixmini_manage_roster(contacts, autoapprove, autosubscribe) {
|
function jappixmini_manage_roster(contacts, contacts_hash, autoapprove, autosubscribe) {
|
||||||
// listen for subscriptions
|
// listen for subscriptions
|
||||||
con.registerHandler('presence',function(presence){
|
con.registerHandler('presence',function(presence){
|
||||||
var type = presence.getType();
|
var type = presence.getType();
|
||||||
|
@ -137,6 +137,10 @@ function jappixmini_manage_roster(contacts, autoapprove, autosubscribe) {
|
||||||
// autosubscribe
|
// autosubscribe
|
||||||
if (!autosubscribe) return;
|
if (!autosubscribe) return;
|
||||||
|
|
||||||
|
stored_hash = getPersistent("jappix-mini", "contacts-hash");
|
||||||
|
contacts_changed = (stored_hash != contacts_hash); // stored_hash gets updated later if everything was successful
|
||||||
|
if (!contacts_changed) return;
|
||||||
|
|
||||||
console.log("Start autosubscribe.");
|
console.log("Start autosubscribe.");
|
||||||
|
|
||||||
var get_roster = new JSJaCIQ();
|
var get_roster = new JSJaCIQ();
|
||||||
|
@ -202,6 +206,8 @@ function jappixmini_manage_roster(contacts, autoapprove, autosubscribe) {
|
||||||
con.send(iq);
|
con.send(iq);
|
||||||
console.log("Added "+xid+" to roster.");
|
console.log("Added "+xid+" to roster.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setPersistent("jappix-mini", "contacts-hash", contacts_hash);
|
||||||
console.log("Autosubscribe done.");
|
console.log("Autosubscribe done.");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -217,7 +223,7 @@ function jappixmini_addon_subscribe() {
|
||||||
sendSubscribe(xid, "subscribe");
|
sendSubscribe(xid, "subscribe");
|
||||||
}
|
}
|
||||||
|
|
||||||
function jappixmini_addon_start(server, username, proxy, bosh, encrypted, password, nickname, contacts, autoapprove, autosubscribe) {
|
function jappixmini_addon_start(server, username, proxy, bosh, encrypted, password, nickname, contacts, contacts_hash, autoapprove, autosubscribe) {
|
||||||
handler = function(password){
|
handler = function(password){
|
||||||
// check if settings have changed, reinitialize jappix mini if this is the case
|
// check if settings have changed, reinitialize jappix mini if this is the case
|
||||||
settings_identifier = str_sha1(server);
|
settings_identifier = str_sha1(server);
|
||||||
|
@ -227,9 +233,13 @@ function jappixmini_addon_start(server, username, proxy, bosh, encrypted, passwo
|
||||||
settings_identifier += str_sha1(password);
|
settings_identifier += str_sha1(password);
|
||||||
settings_identifier += str_sha1(nickname);
|
settings_identifier += str_sha1(nickname);
|
||||||
|
|
||||||
saved_identifier = getDB("jappix-mini", "settings_identifier");
|
saved_identifier = getDB("jappix-mini", "settings-identifier");
|
||||||
if (saved_identifier != settings_identifier) removeDB('jappix-mini', 'dom');
|
if (saved_identifier != settings_identifier) {
|
||||||
setDB("jappix-mini", "settings_identifier", settings_identifier);
|
disconnectMini();
|
||||||
|
removeDB('jappix-mini', 'dom');
|
||||||
|
removePersistent("jappix-mini", "contacts-hash");
|
||||||
|
}
|
||||||
|
setDB("jappix-mini", "settings-identifier", settings_identifier);
|
||||||
|
|
||||||
// set HOST_BOSH
|
// set HOST_BOSH
|
||||||
if (proxy)
|
if (proxy)
|
||||||
|
@ -246,7 +256,7 @@ function jappixmini_addon_start(server, username, proxy, bosh, encrypted, passwo
|
||||||
priority = 101;
|
priority = 101;
|
||||||
presenceMini(null,null,priority);
|
presenceMini(null,null,priority);
|
||||||
|
|
||||||
jappixmini_manage_roster(contacts, autoapprove, autosubscribe)
|
jappixmini_manage_roster(contacts, contacts_hash, autoapprove, autosubscribe)
|
||||||
}
|
}
|
||||||
|
|
||||||
// decrypt password if necessary
|
// decrypt password if necessary
|
||||||
|
|
Loading…
Reference in a new issue