1 function ACL(backend_url, preset){
4 that.url = backend_url;
8 if (preset==undefined) preset = [];
9 that.allow_cid = (preset[0] || []);
10 that.allow_gid = (preset[1] || []);
11 that.deny_cid = (preset[2] || []);
12 that.deny_gid = (preset[3] || []);
14 that.nw = 4; //items per row. should be calulated from #acl-list.width
16 that.list_content = $("#acl-list-content");
17 that.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html());
18 that.showall = $("#acl-showall");
20 if (preset.length==0) that.showall.addClass("selected");
23 that.showall.click(that.on_showall);
24 $(".acl-button-show").live('click', that.on_button_show);
25 $(".acl-button-hide").live('click', that.on_button_hide);
26 $("#acl-search").keypress(that.on_search);
27 $("#acl-wrapper").parents("form").submit(that.on_submit);
33 ACL.prototype.on_submit = function(){
34 aclfileds = $("#acl-fields").html("");
35 $(that.allow_gid).each(function(i,v){
36 aclfileds.append("<input type='hidden' name='group_allow[]' value='"+v+"'>");
38 $(that.allow_cid).each(function(i,v){
39 aclfileds.append("<input type='hidden' name='contact_allow[]' value='"+v+"'>");
41 $(that.deny_gid).each(function(i,v){
42 aclfileds.append("<input type='hidden' name='group_deny[]' value='"+v+"'>");
44 $(that.deny_cid).each(function(i,v){
45 aclfileds.append("<input type='hidden' name='contact_deny[]' value='"+v+"'>");
49 ACL.prototype.search = function(){
50 var srcstr = $("#acl-search").val();
51 that.list_content.html("");
52 that.get(0,100, srcstr);
55 ACL.prototype.on_search = function(event){
56 if (that.kp_timer) clearTimeout(that.kp_timer);
57 that.kp_timer = setTimeout( that.search, 1000);
60 ACL.prototype.on_showall = function(event){
61 event.preventDefault()
62 event.stopPropagation();
64 if (that.showall.hasClass("selected")){
67 that.showall.addClass("selected");
79 ACL.prototype.on_button_show = function(event){
80 event.preventDefault()
81 event.stopImmediatePropagation()
82 event.stopPropagation();
84 /*that.showall.removeClass("selected");
85 $(this).siblings(".acl-button-hide").removeClass("selected");
86 $(this).toggleClass("selected");*/
88 that.set_allow($(this).parent().attr('id'));
92 ACL.prototype.on_button_hide = function(event){
93 event.preventDefault()
94 event.stopImmediatePropagation()
95 event.stopPropagation();
97 /*that.showall.removeClass("selected");
98 $(this).siblings(".acl-button-show").removeClass("selected");
99 $(this).toggleClass("selected");*/
101 that.set_deny($(this).parent().attr('id'));
106 ACL.prototype.set_allow = function(itemid){
108 id = parseInt(itemid.substr(1));
111 if (that.allow_gid.indexOf(id)<0){
112 that.allow_gid.push(id)
114 that.allow_gid.remove(id);
116 if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id);
119 if (that.allow_cid.indexOf(id)<0){
120 that.allow_cid.push(id)
122 that.allow_cid.remove(id);
124 if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id);
130 ACL.prototype.set_deny = function(itemid){
132 id = parseInt(itemid.substr(1));
135 if (that.deny_gid.indexOf(id)<0){
136 that.deny_gid.push(id)
138 that.deny_gid.remove(id);
140 if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id);
143 if (that.deny_cid.indexOf(id)<0){
144 that.deny_cid.push(id)
146 that.deny_cid.remove(id);
148 if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id);
154 ACL.prototype.update_view = function(){
155 if (that.allow_gid.length==0 && that.allow_cid.length==0 &&
156 that.deny_gid.length==0 && that.deny_cid.length==0){
157 that.showall.addClass("selected");
159 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
160 $('#jot-public').show();
161 $('.profile-jot-net input').attr('disabled', false);
162 if(typeof editor != 'undefined' && editor != false) {
163 $('#profile-jot-desc').html(ispublic);
167 that.showall.removeClass("selected");
169 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
170 $('#jot-public').hide();
171 $('.profile-jot-net input').attr('disabled', 'disabled');
172 $('#profile-jot-desc').html(' ');
175 $("#acl-list-content .acl-list-item").each(function(){
176 itemid = $(this).attr('id');
178 id = parseInt(itemid.substr(1));
180 btshow = $(this).children(".acl-button-show").removeClass("selected");
181 bthide = $(this).children(".acl-button-hide").removeClass("selected");
186 if (that.allow_gid.indexOf(id)>=0){
187 btshow.addClass("selected");
188 bthide.removeClass("selected");
191 if (that.deny_gid.indexOf(id)>=0){
192 btshow.removeClass("selected");
193 bthide.addClass("selected");
197 $(that.group_uids[id]).each(function(i,v){
198 $("#c"+v).removeClass("groupshow grouphide").addClass(uclass);
203 if (that.allow_cid.indexOf(id)>=0){
204 btshow.addClass("selected");
205 bthide.removeClass("selected");
207 if (that.deny_cid.indexOf(id)>=0){
208 btshow.removeClass("selected");
209 bthide.addClass("selected");
218 ACL.prototype.get = function(start,count, search){
230 success:that.populate
234 ACL.prototype.populate = function(data){
235 var height = Math.ceil(data.tot / that.nw) * 42;
236 that.list_content.height(height);
237 $(data.items).each(function(){
238 html = "<div class='acl-list-item {4} {5}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
239 html = html.format( this.photo, this.name, this.type, this.id, '', this.network, this.link );
240 if (this.uids!=undefined) that.group_uids[this.id] = this.uids;
242 that.list_content.append(html);