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.stopPropagation();
62 if (that.showall.hasClass("selected")){
65 that.showall.addClass("selected");
77 ACL.prototype.on_button_show = function(event){
78 event.stopPropagation();
80 /*that.showall.removeClass("selected");
81 $(this).siblings(".acl-button-hide").removeClass("selected");
82 $(this).toggleClass("selected");*/
84 that.set_allow($(this).parent().attr('id'));
88 ACL.prototype.on_button_hide = function(event){
89 event.stopPropagation();
91 /*that.showall.removeClass("selected");
92 $(this).siblings(".acl-button-show").removeClass("selected");
93 $(this).toggleClass("selected");*/
95 that.set_deny($(this).parent().attr('id'));
100 ACL.prototype.set_allow = function(itemid){
102 id = parseInt(itemid.substr(1));
105 if (that.allow_gid.indexOf(id)<0){
106 that.allow_gid.push(id)
108 that.allow_gid.remove(id);
110 if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id);
113 if (that.allow_cid.indexOf(id)<0){
114 that.allow_cid.push(id)
116 that.allow_cid.remove(id);
118 if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id);
124 ACL.prototype.set_deny = function(itemid){
126 id = parseInt(itemid.substr(1));
129 if (that.deny_gid.indexOf(id)<0){
130 that.deny_gid.push(id)
132 that.deny_gid.remove(id);
134 if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id);
137 if (that.deny_cid.indexOf(id)<0){
138 that.deny_cid.push(id)
140 that.deny_cid.remove(id);
142 if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id);
148 ACL.prototype.updateview = function(){
149 if (that.allow_gid.length==0 && that.allow_cid.length==0 &&
150 that.deny_gid.length==0 && that.deny_cid.length==0){
151 that.showall.addClass("selected");
153 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
154 $('#jot-public').show();
155 $('.profile-jot-net input').attr('disabled', false);
156 if(editor != false) {
157 $('#profile-jot-desc').html(ispublic);
161 that.showall.removeClass("selected");
163 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
164 $('#jot-public').hide();
165 $('.profile-jot-net input').attr('disabled', 'disabled');
166 $('#profile-jot-desc').html(' ');
169 $("#acl-list-content .acl-list-item").each(function(){
170 itemid = $(this).attr('id');
172 id = parseInt(itemid.substr(1));
174 btshow = $(this).children(".acl-button-show").removeClass("selected");
175 bthide = $(this).children(".acl-button-hide").removeClass("selected");
180 if (that.allow_gid.indexOf(id)>=0){
181 btshow.addClass("selected");
182 bthide.removeClass("selected");
185 if (that.deny_gid.indexOf(id)>=0){
186 btshow.removeClass("selected");
187 bthide.addClass("selected");
191 $(that.group_uids[id]).each(function(i,v){
192 $("#c"+v).removeClass("groupshow grouphide").addClass(uclass);
197 if (that.allow_cid.indexOf(id)>=0){
198 btshow.addClass("selected");
199 bthide.removeClass("selected");
201 if (that.deny_cid.indexOf(id)>=0){
202 btshow.removeClass("selected");
203 bthide.addClass("selected");
212 ACL.prototype.get = function(start,count, search){
224 success:that.populate
228 ACL.prototype.populate = function(data){
229 var height = Math.ceil(data.tot / that.nw) * 42;
230 that.list_content.height(height);
231 $(data.items).each(function(){
232 html = "<div class='acl-list-item {4} {5}' id='{2}{3}'>"+that.item_tpl+"</div>";
233 html = html.format( this.photo, this.name, this.type, this.id, '', this.network );
234 if (this.uids!=undefined) that.group_uids[this.id] = this.uids;
236 that.list_content.append(html);