streams/view/js/acl.js

404 lines
11 KiB
JavaScript
Raw Normal View History

2016-08-03 19:16:57 +00:00
function ACL(backend_url) {
2011-07-19 14:17:58 +00:00
that = this;
2011-07-19 14:17:58 +00:00
that.url = backend_url;
2011-07-19 14:17:58 +00:00
that.kp_timer = null;
2016-08-03 19:16:57 +00:00
that.self = [];
that.allow_cid = [];
that.allow_gid = [];
that.deny_cid = [];
that.deny_gid = [];
2011-07-19 14:17:58 +00:00
that.group_uids = [];
that.info = $("#acl-info");
that.list = $("#acl-list");
2011-07-19 14:17:58 +00:00
that.list_content = $("#acl-list-content");
2016-05-04 13:55:32 +00:00
that.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html());
that.showall = $("#acl-showall");
that.onlyme = $("#acl-onlyme");
2016-05-04 13:55:32 +00:00
that.showlimited = $("#acl-showlimited");
that.acl_select = $("#acl-select");
// set the initial ACL lists in case the enclosing form gets submitted before the ajax loader completes.
2016-08-03 19:16:57 +00:00
//that.on_submit();
2011-07-19 14:17:58 +00:00
/*events*/
$(document).ready(function() {
that.acl_select.change(function(event) {
var option = that.acl_select.val();
if(option == 'public') { // public
that.on_showall(event);
}
if(option == 'onlyme') { // limited to one self
that.on_onlyme(event);
}
if(option == 'limited') { // limited to custom selection
that.on_showlimited(event);
}
});
2016-08-03 19:16:57 +00:00
$(document).on('focus', '.acl-form', that.get_form_data);
$(document).on('click', '.acl-form', that.get_form_data);
$(document).on('click', '.acl-form-trigger', that.get_form_data);
2016-08-03 19:16:57 +00:00
$(document).on('click','.acl-button-show',that.on_button_show);
$(document).on('click','.acl-button-hide',that.on_button_hide);
$("#acl-search").keypress(that.on_search);
/* startup! */
that.get(0,15000);
2016-08-03 19:16:57 +00:00
//that.on_submit();
});
2011-07-19 14:17:58 +00:00
}
2016-08-05 11:20:03 +00:00
ACL.prototype.get_form_data = function(event, form_id) {
2016-08-03 19:16:57 +00:00
2016-08-03 21:57:41 +00:00
form_id = $(this).data('form_id');
that.form_id = $('#' + form_id);
2016-08-03 19:16:57 +00:00
2016-08-03 21:57:41 +00:00
console.log(form_id);
2016-08-03 19:16:57 +00:00
that.allow_cid = (that.form_id.data('allow_cid') || []);
that.allow_gid = (that.form_id.data('allow_gid') || []);
that.deny_cid = (that.form_id.data('deny_cid') || []);
that.deny_gid = (that.form_id.data('deny_gid') || []);
2016-08-03 19:16:57 +00:00
that.update_view();
that.on_submit();
}
// no longer called only on submit - call to update whenever a change occurs to the acl list.
ACL.prototype.on_submit = function() {
2016-08-03 19:16:57 +00:00
$('.acl-field').remove();
$(that.allow_gid).each(function(i,v) {
that.form_id.append("<input class='acl-field' type='hidden' name='group_allow[]' value='"+v+"'>");
2011-07-19 14:17:58 +00:00
});
$(that.allow_cid).each(function(i,v) {
that.form_id.append("<input class='acl-field' type='hidden' name='contact_allow[]' value='"+v+"'>");
2011-07-19 14:17:58 +00:00
});
$(that.deny_gid).each(function(i,v) {
that.form_id.append("<input class='acl-field' type='hidden' name='group_deny[]' value='"+v+"'>");
2011-07-19 14:17:58 +00:00
});
$(that.deny_cid).each(function(i,v) {
that.form_id.append("<input class='acl-field' type='hidden' name='contact_deny[]' value='"+v+"'>");
});
//areYouSure jquery plugin: recheck the form here
$('form').trigger('checkform.areYouSure');
};
ACL.prototype.search = function() {
2011-07-19 14:17:58 +00:00
var srcstr = $("#acl-search").val();
that.list_content.html("");
2015-11-18 04:44:57 +00:00
that.get(0, 15000, srcstr);
};
2011-07-19 14:17:58 +00:00
ACL.prototype.on_search = function(event) {
if (that.kp_timer) {
clearTimeout(that.kp_timer);
}
2011-07-19 14:17:58 +00:00
that.kp_timer = setTimeout( that.search, 1000);
};
2011-07-19 14:17:58 +00:00
ACL.prototype.on_onlyme = function(event) {
// preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton
event.stopPropagation();
that.allow_cid = [that.self[0]];
that.allow_gid = [];
that.deny_cid = [];
that.deny_gid = [];
2016-08-03 19:16:57 +00:00
that.update_view(event.target.value);
that.on_submit();
return true; // return true so that state changes from update_view() will be applied
};
ACL.prototype.on_showall = function(event) {
2016-05-04 13:55:32 +00:00
// preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton
2011-07-19 14:17:58 +00:00
event.stopPropagation();
2011-07-19 14:17:58 +00:00
that.allow_cid = [];
that.allow_gid = [];
that.deny_cid = [];
that.deny_gid = [];
that.update_view(event.target.value);
that.on_submit();
2016-05-04 13:55:32 +00:00
return true; // return true so that state changes from update_view() will be applied
};
2011-07-19 14:17:58 +00:00
2016-05-04 13:55:32 +00:00
ACL.prototype.on_showlimited = function(event) {
// preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton
2016-05-04 13:55:32 +00:00
event.stopPropagation();
2016-08-03 19:16:57 +00:00
if(that.allow_cid.length === 0 && that.allow_gid.length === 0 && that.deny_cid.length === 0 && that.deny_gid.length === 0) {
that.allow_cid = [that.self[0]];
}
2016-08-03 19:16:57 +00:00
that.allow_cid = (that.allow_cid || []);
that.allow_gid = (that.allow_gid || []);
that.deny_cid = (that.deny_cid || []);
that.deny_gid = (that.deny_gid || []);
that.update_view(event.target.value);
that.on_submit();
return true; // return true so that state changes from update_view() will be applied
2016-05-04 13:55:32 +00:00
}
ACL.prototype.on_selectall = function(event) {
event.preventDefault();
event.stopPropagation();
/* This function has not yet been completed. */
/* The goal is to select all ACL "show" entries with one action. */
$('.acl-button-show').each(function(){});
if (that.showall.hasClass("btn-warning")) {
return false;
}
that.showall.removeClass("btn-default").addClass("btn-warning");
that.allow_cid = [];
that.allow_gid = [];
that.deny_cid = [];
that.deny_gid = [];
that.update_view();
that.on_submit();
return false;
};
ACL.prototype.on_button_show = function(event) {
event.preventDefault();
event.stopImmediatePropagation();
2011-07-19 14:17:58 +00:00
event.stopPropagation();
if(!$(this).parent().hasClass("grouphide")) {
that.set_allow($(this).parent().attr('id'));
that.on_submit();
}
2011-07-19 14:17:58 +00:00
return false;
};
ACL.prototype.on_button_hide = function(event) {
event.preventDefault();
event.stopImmediatePropagation();
2011-07-19 14:17:58 +00:00
event.stopPropagation();
that.set_deny($(this).parent().attr('id'));
that.on_submit();
2011-07-19 14:17:58 +00:00
return false;
};
2011-07-19 14:17:58 +00:00
ACL.prototype.set_allow = function(itemid) {
2011-07-19 14:17:58 +00:00
type = itemid[0];
id = itemid.substr(1);
switch(type) {
2011-07-19 14:17:58 +00:00
case "g":
if (that.allow_gid.indexOf(id)<0) {
that.allow_gid.push(id);
2011-07-19 14:17:58 +00:00
}else {
that.allow_gid.remove(id);
}
if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id);
break;
case "c":
if (that.allow_cid.indexOf(id)<0) {
that.allow_cid.push(id);
2011-07-19 14:17:58 +00:00
} else {
that.allow_cid.remove(id);
}
if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id);
2011-07-19 14:17:58 +00:00
break;
}
2011-09-15 09:05:09 +00:00
that.update_view();
};
2011-07-19 14:17:58 +00:00
ACL.prototype.set_deny = function(itemid) {
2011-07-19 14:17:58 +00:00
type = itemid[0];
id = itemid.substr(1);
switch(type) {
2011-07-19 14:17:58 +00:00
case "g":
if (that.deny_gid.indexOf(id)<0) {
that.deny_gid.push(id);
2011-07-19 14:17:58 +00:00
} else {
that.deny_gid.remove(id);
}
if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id);
break;
case "c":
if (that.deny_cid.indexOf(id)<0) {
that.deny_cid.push(id);
2011-07-19 14:17:58 +00:00
} else {
that.deny_cid.remove(id);
}
if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id);
break;
}
2011-09-15 09:05:09 +00:00
that.update_view();
};
2011-07-19 14:17:58 +00:00
2016-08-03 19:16:57 +00:00
ACL.prototype.update_select = function(set) {
that.showall.prop('selected', set === 'public');
that.onlyme.prop('selected', set === 'onlyme');
that.showlimited.prop('selected', set === 'limited');
2016-05-04 13:55:32 +00:00
};
ACL.prototype.update_view = function(value) {
if(that.form_id) {
2016-08-03 19:16:57 +00:00
console.log(that.form_id);
that.form_id.data('allow_cid', that.allow_cid);
that.form_id.data('allow_gid', that.allow_gid);
that.form_id.data('deny_cid', that.deny_cid);
that.form_id.data('deny_gid', that.deny_gid);
console.log(that.form_id.data('allow_cid'));
console.log(that.form_id.data('allow_gid'));
console.log(that.form_id.data('deny_cid'));
console.log(that.form_id.data('deny_gid'));
}
2016-08-03 19:16:57 +00:00
if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0) {
that.list.hide(); //hide acl-list
that.info.show(); //show acl-info
that.update_select('public');
/* jot acl */
$('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock');
$('.profile-jot-net input').attr('disabled', false);
2016-05-04 13:55:32 +00:00
}
// if value != 'onlyme' we should fall through this one
else if (that.allow_gid.length === 0 && that.allow_cid.length === 1 && that.allow_cid[0] === that.self[0] && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') {
that.list.hide(); //hide acl-list
that.info.hide(); //show acl-info
that.update_select('onlyme');
/* jot acl */
$('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock');
$('.profile-jot-net input').attr('disabled', 'disabled');
}
else {
that.list.show(); //show acl-list
that.info.hide(); //hide acl-info
that.update_select('limited');
2016-05-04 13:55:32 +00:00
/* jot acl */
2016-05-04 13:55:32 +00:00
$('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock');
$('.profile-jot-net input').attr('disabled', 'disabled');
2011-07-19 14:17:58 +00:00
}
$("#acl-list-content .acl-list-item").each(function() {
2011-12-21 03:11:46 +00:00
$(this).removeClass("groupshow grouphide");
});
$("#acl-list-content .acl-list-item").each(function() {
2011-07-19 14:17:58 +00:00
itemid = $(this).attr('id');
type = itemid[0];
id = itemid.substr(1);
2014-04-11 14:06:39 +00:00
btshow = $(this).children(".acl-button-show").removeClass("btn-success").addClass("btn-default");
bthide = $(this).children(".acl-button-hide").removeClass("btn-danger").addClass("btn-default");
switch(type) {
2011-07-19 14:17:58 +00:00
case "g":
var uclass = "";
if (that.allow_gid.indexOf(id)>=0) {
2014-04-11 14:06:39 +00:00
btshow.removeClass("btn-default").addClass("btn-success");
bthide.removeClass("btn-danger").addClass("btn-default");
2011-07-19 14:17:58 +00:00
uclass="groupshow";
}
if (that.deny_gid.indexOf(id)>=0) {
2014-04-11 14:06:39 +00:00
btshow.removeClass("btn-success").addClass("btn-default");
bthide.removeClass("btn-default").addClass("btn-danger");
uclass = "grouphide";
2011-07-19 14:17:58 +00:00
}
$(that.group_uids[id]).each(function(i, v) {
2011-12-21 03:11:46 +00:00
if(uclass == "grouphide")
// we need attr selection here because the id can include an @ (diaspora/friendica xchans)
$('[id="c' + v + '"]').removeClass("groupshow");
if(uclass !== "") {
var cls = $('[id="c' + v + '"]').attr('class');
if( cls === undefined)
return true;
var hiding = cls.indexOf('grouphide');
if(hiding == -1)
$('[id="c' + v + '"]').addClass(uclass);
}
2011-07-19 14:17:58 +00:00
});
break;
case "c":
if (that.allow_cid.indexOf(id)>=0){
if(!$(this).hasClass("grouphide") ) {
btshow.removeClass("btn-default").addClass("btn-success");
bthide.removeClass("btn-danger").addClass("btn-default");
}
2011-07-19 14:17:58 +00:00
}
if (that.deny_cid.indexOf(id)>=0){
2014-04-11 14:06:39 +00:00
btshow.removeClass("btn-success").addClass("btn-default");
bthide.removeClass("btn-default").addClass("btn-danger");
$(this).removeClass("groupshow");
}
2011-07-19 14:17:58 +00:00
}
});
};
2011-07-19 14:17:58 +00:00
ACL.prototype.get = function(start, count, search) {
2011-07-19 14:17:58 +00:00
var postdata = {
start: start,
count: count,
search: search,
};
2011-07-19 14:17:58 +00:00
$.ajax({
type: 'POST',
2011-07-19 14:17:58 +00:00
url: that.url,
data: postdata,
dataType: 'json',
success: that.populate
2011-07-19 14:17:58 +00:00
});
};
2011-07-19 14:17:58 +00:00
ACL.prototype.populate = function(data) {
2011-07-19 14:17:58 +00:00
$(data.items).each(function(){
html = "<div class='acl-list-item {4} {7} {5}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable);
if (this.uids !== undefined) that.group_uids[this.xid] = this.uids;
if (this.self === 'abook-self') that.self[0] = this.xid;
2011-07-19 14:17:58 +00:00
//console.log(html);
that.list_content.append(html);
});
$("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) {
// Replace data-src attribute with src attribute for every image
$(el).attr('src', $(el).data("src"));
$(el).removeAttr("data-src");
});
2016-08-05 11:20:03 +00:00
//that.update_view();
};