1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/app/javascripts/httpreply.js
titoko@titoko.fr 979b376609 update 1.0.1
2014-03-12 14:52:47 +01:00

70 lines
No EOL
1.6 KiB
JavaScript

/*
Jappix - An open social platform
These are the http-reply JS scripts for Jappix
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
*/
// Bundle
var HTTPReply = (function () {
/**
* Alias of this
* @private
*/
var self = {};
/**
* Replies to a HTTP request
* @public
* @param {string} value
* @param {object} xml
* @return {undefined}
*/
self.go = function(value, xml) {
try {
// We parse the xml content
var from = Common.fullXID(Common.getStanzaFrom(xml));
var confirm = $(xml.getNode()).find('confirm');
var xmlns = confirm.attr('xmlns');
var id = confirm.attr('id');
var method = confirm.attr('method');
var url = confirm.attr('url');
// We generate the reply message
var aMsg = new JSJaCMessage();
aMsg.setTo(from);
// If "no"
if(value == 'no') {
aMsg.setType('error');
aMsg.appendNode('error', {'code': '401', 'type': 'auth'});
}
// We set the confirm node
aMsg.appendNode('confirm', {'xmlns': xmlns, 'url': url, 'id': id, 'method': method});
// We send the message
con.send(aMsg, Errors.handleReply);
Console.info('Replying HTTP auth request: ' + from);
} catch(e) {
Console.error('HTTPReply.go', e);
}
};
/**
* Return class scope
*/
return self;
})();