gnu-social/plugins/OStatus/js/ostatus.js

103 lines
3.3 KiB
JavaScript
Raw Normal View History

SN.C.S.StatusNetInstance = 'StatusNetInstance';
SN.U.StatusNetInstance = {
Set: function(value) {
$.cookie(
SN.C.S.StatusNetInstance,
JSON.stringify(value),
{
path: '/',
expires: SN.U.GetFullYear(2029, 0, 1)
});
},
Get: function() {
var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
if (cookieValue !== null) {
return JSON.parse(cookieValue);
}
return null;
},
Delete: function() {
$.cookie(SN.C.S.StatusNetInstance, null);
}
};
SN.Init.OStatusCookie = function() {
if (SN.U.StatusNetInstance.Get() === null) {
SN.C.I.OStatusProfile = SN.C.I.OStatusProfile || null;
SN.U.StatusNetInstance.Set({profile: SN.C.I.OStatusProfile});
}
};
SN.U.DialogBox = {
Subscribe: function(a) {
2010-02-22 16:05:43 +00:00
var f = a.parent().find('.form_settings');
if (f.length > 0) {
f.show();
}
else {
2010-02-22 16:05:43 +00:00
a[0].href = (a[0].href.match(/[\\?]/) == null) ? a[0].href+'?' : a[0].href+'&';
$.ajax({
type: 'GET',
dataType: 'xml',
2010-02-22 16:05:43 +00:00
url: a[0].href+'ajax=1',
beforeSend: function(formData) {
a.addClass('processing');
},
error: function (xhr, textStatus, errorThrown) {
alert(errorThrown || textStatus);
},
success: function(data, textStatus, xhr) {
if (typeof($('form', data)[0]) != 'undefined') {
a.after(document._importNode($('form', data)[0], true));
2010-02-22 16:05:43 +00:00
var form = a.parent().find('.form_settings');
form
.addClass('dialogbox')
.append('<button class="close">&#215;</button>');
form
.find('.submit')
.addClass('submit_dialogbox')
.removeClass('submit')
.bind('click', function() {
form.addClass('processing');
});
form.find('button.close').click(function(){
form.hide();
return false;
});
2010-02-22 16:05:43 +00:00
form.find('#profile').focus();
if (form.attr('id') == 'form_ostatus_connect') {
SN.Init.OStatusCookie();
form.find('#profile').val(SN.U.StatusNetInstance.Get().profile)
form.find("[type=submit]").bind('click', function() {
SN.U.StatusNetInstance.Set({profile: form.find('#profile').val()});
return true;
});
}
}
a.removeClass('processing');
}
});
}
},
};
SN.Init.Subscribe = function() {
2010-02-22 16:05:43 +00:00
$('.entity_subscribe .entity_remote_subscribe').live('click', function() { SN.U.DialogBox.Subscribe($(this)); return false; });
};
$(document).ready(function() {
2010-02-22 16:05:43 +00:00
SN.Init.Subscribe();
});