1 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
2 function ACL(backend_url, preset, automention, is_mobile){
4 this.url = backend_url;
5 this.automention = automention;
6 this.is_mobile = is_mobile;
11 if (preset == undefined) {
14 this.allow_cid = (preset[0] || []);
15 this.allow_gid = (preset[1] || []);
16 this.deny_cid = (preset[2] || []);
17 this.deny_gid = (preset[3] || []);
19 this.forumCache = null;
28 this.list_content = $("#acl-list-content");
29 this.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html());
30 this.showall = $("#acl-showall");
32 if (preset.length==0) {
33 this.showall.addClass("selected");
37 this.showall.click(this.on_showall.bind(this));
38 $(document).on("click", ".acl-button-show", this.on_button_show.bind(this));
39 $(document).on("click", ".acl-button-hide", this.on_button_hide.bind(this));
40 $("#acl-search").keypress(this.on_search.bind(this));
41 $("#acl-wrapper").parents("form").submit(this.on_submit.bind(this));
43 /* add/remove mentions */
44 this.element = $("#profile-jot-text");
45 this.htmlelm = this.element.get()[0];
48 ACL.prototype.remove_mention = function(id) {
49 if (!this.automention) {
52 var nick = this.data[id].nick;
53 var addr = this.data[id].addr;
56 var searchText = "!" + addr + " ";
58 var searchText = "!" + nick + "+" + id + " ";
61 var start = this.element.val().indexOf(searchText);
65 var end = start + searchText.length;
66 this.element.setSelection(start, end).replaceSelectedText('').collapseSelection(false);
69 ACL.prototype.add_mention = function(id) {
70 if (!this.automention) {
73 var nick = this.data[id].nick;
74 var addr = this.data[id].addr;
77 var searchText = "!" + addr + " ";
79 var searchText = "!" + nick + "+" + id + " ";
82 if (this.element.val().indexOf( searchText) >= 0 ) {
85 this.element.val(searchText + this.element.val()).trigger('change');
88 ACL.prototype.on_submit = function(){
89 var aclfields = $("#acl-fields").html("");
90 $(this.allow_gid).each(function(i,v){
91 aclfields.append("<input type='hidden' name='group_allow[]' value='"+v+"'>");
93 $(this.allow_cid).each(function(i,v){
94 aclfields.append("<input type='hidden' name='contact_allow[]' value='"+v+"'>");
96 $(this.deny_gid).each(function(i,v){
97 aclfields.append("<input type='hidden' name='group_deny[]' value='"+v+"'>");
99 $(this.deny_cid).each(function(i,v){
100 aclfields.append("<input type='hidden' name='contact_deny[]' value='"+v+"'>");
104 ACL.prototype.search = function(){
105 var srcstr = $("#acl-search").val();
106 this.list_content.html("");
107 this.get(0,100, srcstr);
110 ACL.prototype.on_search = function(event){
111 if (this.kp_timer) clearTimeout(this.kp_timer);
113 // Triggers an immediate search while preventing form submission
114 if (event.key === 'Enter') {
116 event.preventDefault();
118 this.kp_timer = setTimeout( this.search.bind(this), 500);
122 ACL.prototype.on_showall = function(event){
123 event.preventDefault()
124 event.stopPropagation();
126 if (this.showall.hasClass("selected")){
129 this.showall.addClass("selected");
141 ACL.prototype.on_button_show = function(event){
142 event.preventDefault()
143 event.stopImmediatePropagation()
144 event.stopPropagation();
146 this.set_allow($(event.target).parent().attr('id'));
151 ACL.prototype.on_button_hide = function(event){
152 event.preventDefault()
153 event.stopImmediatePropagation()
154 event.stopPropagation();
156 this.set_deny($(event.target).parent().attr('id'));
161 ACL.prototype.set_allow = function(itemid) {
163 id = parseInt(itemid.substr(1));
167 if (this.allow_gid.indexOf(id) < 0) {
168 this.allow_gid.push(id);
170 this.allow_gid.remove(id);
172 if (this.deny_gid.indexOf(id) >= 0) {
173 this.deny_gid.remove(id);
177 if (this.allow_cid.indexOf(id) < 0){
178 this.allow_cid.push(id);
179 if (this.data[id].forum == "1") {
180 // If we have select already a forum,
181 // we need to remove the old one (because friendica does
182 // allow only one forum as receiver).
183 if (this.forumCache !== null && this.forumCache !== id) {
184 this.deselectCid(this.forumCache);
186 // Update the forum cache.
187 this.forumCache = id;
188 this.add_mention(id);
191 this.allow_cid.remove(id);
192 if (this.data[id].forum == "1") {
193 this.remove_mention(id);
196 if (this.deny_cid.indexOf(id) >=0 ) {
197 this.deny_cid.remove(id);
204 ACL.prototype.set_deny = function(itemid){
206 id = parseInt(itemid.substr(1));
210 if (this.deny_gid.indexOf(id)<0){
211 this.deny_gid.push(id)
213 this.deny_gid.remove(id);
215 if (this.allow_gid.indexOf(id)>=0) this.allow_gid.remove(id);
218 if (this.data[id].forum=="1") this.remove_mention(id);
219 if (this.deny_cid.indexOf(id)<0){
220 this.deny_cid.push(id)
222 this.deny_cid.remove(id);
224 if (this.allow_cid.indexOf(id)>=0) this.allow_cid.remove(id);
230 ACL.prototype.is_show_all = function() {
231 return (this.allow_gid.length==0 && this.allow_cid.length==0 &&
232 this.deny_gid.length==0 && this.deny_cid.length==0);
235 ACL.prototype.update_view = function () {
236 if (this.is_show_all()) {
237 this.showall.addClass("selected");
239 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
240 $('#jot-public').show();
241 $('.profile-jot-net input[type=checkbox]').each(function() {
242 // Restores checkbox state if it had been saved
243 if ($(this).attr('data-checked') !== undefined) {
244 $(this).prop('checked', $(this).attr('data-checked') === 'true');
248 $('.profile-jot-net input').attr('disabled', false);
249 if (typeof editor != 'undefined' && editor != false) {
250 $('#profile-jot-desc').html(ispublic);
253 this.showall.removeClass("selected");
255 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
256 $('#jot-public').hide();
257 $('.profile-jot-net input[type=checkbox]').each(function() {
258 // Saves current checkbox state
260 .attr('data-checked', $(this).prop('checked'))
261 .prop('checked', false);
263 $('.profile-jot-net input').attr('disabled', 'disabled');
264 $('#profile-jot-desc').html(' ');
267 $("#acl-list-content .acl-list-item").each(function (index, element) {
268 $(this).removeClass("groupshow grouphide");
270 itemid = $(element).attr('id');
272 id = parseInt(itemid.substr(1));
274 btshow = $(element).children(".acl-button-show").removeClass("selected");
275 bthide = $(element).children(".acl-button-hide").removeClass("selected");
280 if (this.allow_gid.indexOf(id) >= 0) {
281 btshow.addClass("selected");
282 bthide.removeClass("selected");
283 uclass = "groupshow";
285 if (this.deny_gid.indexOf(id) >= 0) {
286 btshow.removeClass("selected");
287 bthide.addClass("selected");
288 uclass = "grouphide";
291 $(this.group_uids[id]).each(function (i, v) {
292 if (uclass == "grouphide")
293 $("#c" + v).removeClass("groupshow");
295 var cls = $("#c" + v).attr('class');
296 if (cls == undefined)
298 var hiding = cls.indexOf('grouphide');
300 $("#c" + v).addClass(uclass);
306 if (this.allow_cid.indexOf(id) >= 0) {
307 btshow.addClass("selected");
308 bthide.removeClass("selected");
310 if (this.deny_cid.indexOf(id) >= 0) {
311 btshow.removeClass("selected");
312 bthide.addClass("selected");
320 ACL.prototype.get = function(start,count, search){
332 success:this.populate.bind(this)
336 ACL.prototype.populate = function(data){
337 var height = Math.ceil(data.tot / this.nw) * 42;
338 this.list_content.height(height);
340 $(data.items).each(function(index, item) {
341 if (item.separator != undefined) {
342 html = "<hr class='clear'>";
344 html = "<div class='acl-list-item {4} {5} type{2}' title='{6}' id='{2}{3}'>"+this.item_tpl+"</div>";
345 html = html.format(item.photo, item.name, item.type, item.id, (item.forum=='1'?'forum':''), item.network, item.link);
346 if (item.uids != undefined) {
347 this.group_uids[item.id] = item.uids;
350 this.list_content.append(html);
351 this.data[item.id] = item;
353 $(".acl-list-item img[data-src]", this.list_content).each(function(i, el){
354 // Add src attribute for images with a data-src attribute
355 $(el).attr('src', $(el).data("src"));
362 * @brief Deselect previous selected contact.
364 * @param {int} id The contact ID.
367 ACL.prototype.deselectCid = function(id) {
368 if (this.allow_cid.indexOf(id) >= 0) {
369 this.allow_cid.remove(id);
371 if (this.deny_cid.indexOf(id) >=0 ) {
372 this.deny_cid.remove(id);
374 this.remove_mention(id);