-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource.js
699 lines (633 loc) · 30 KB
/
resource.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
/*
CardDavMATE - the open source CardDAV Web Client
Copyright (C) 2011-2015
Jan Mate <[email protected]>
Andrej Lezo <[email protected]>
Matej Mihalik <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function handleCardDAVError(isError, inputResource)
{
var collections='';
collections=globalResourceCardDAVList.collections;
for(var i=0; i<collections.length;i++)
{
if(collections[i].uid!=undefined)
{
var tmp=collections[i].accountUID.match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@([^/]+)(.*/)','i'));
var resource_href=tmp[1]+tmp[3]+tmp[4];
var resource_user=tmp[2];
if(inputResource.href==resource_href && inputResource.userAuth.userName==resource_user)
{
if(globalSettingsSaving =='addressbook' && isError)
{
var uidParts=(collections[i].uid).match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@(.*)'));
var checkHref = uidParts[1]+uidParts[3];
var isLoaded=false;
if(typeof globalCrossServerSettingsURL!='undefined'&&globalCrossServerSettingsURL!=null&globalCrossServerSettingsURL)
{
var uidParts=(collections[i].uid).match(RegExp('/([^/]+/[^/]+/)$'));
var tmpParts = uidParts[1].match('^(.*/)([^/]+)/$');
var checkHref3=decodeURIComponent(tmpParts[1])+tmpParts[2]+'/';
var found=false;
for(var l=0;l<globalSettings.loadedaddressbookcollections.value.length;l++)
{
var tmpParts2 = globalSettings.loadedaddressbookcollections.value[l].match('^(.*/)([^/]+)/([^/]+)/$');
var checkHref2=decodeURIComponent(tmpParts2[2])+'/'+tmpParts2[3]+'/';
if(checkHref3==checkHref2)
{
found=true;
break;
}
}
isLoaded=found;
}
else
isLoaded=globalSettings.loadedaddressbookcollections.value.indexOf(checkHref)!=-1;
if(isLoaded && collections[i].oldSyncToken=='')
{
var newObj = $.extend(collections[i],{makeLoaded:true});
globalResourceCardDAVList.insertResource(newObj, collections[i].resourceIndex, true);
CardDAVUpdateMainLoader(collections[i]);
}
}
if(isError)
$('#ResourceCardDAVList').find('[data-id="'+collections[i].uid+'"]').addClass('r_error');
else
$('#ResourceCardDAVList').find('[data-id="'+collections[i].uid+'"]').removeClass('r_error');
}
}
}
}
function unloadCardDAVCollection(unloadArray)
{
var collections = globalResourceCardDAVList.collections;
var unloadedColls=new Array();
var contactsToDelete=new Array();
var collRegex = new RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@([^/]+)(.*/)([^/]+/)([^/]*)','i');
for(var i=0;i<collections.length;i++)
{
if(collections[i].uid!=undefined)
{
var uidParts=(collections[i].uid).match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@(.*)'));
var checkHref = uidParts[1]+uidParts[3];
if(unloadArray.indexOf(checkHref)!=-1)
{
$('#AddressbookOverlay').children('.loaderInfo').text(localization[globalInterfaceLanguage].unloadingAddressbooks);
unloadedColls.push(collections[i].uid);
globalAddressbookList.vcard_groups[collections[i].uid] = new Array();
collections[i].someChanged=false;
collections[i].makeLoaded=false;
collections[i].syncToken='';
collections[i].oldSyncToken='';
$('#ResourceCardDAVList').find('input[data-id="'+collections[i].uid+'"]').prop('checked',false);
$('#ResourceCardDAVList').find('input[data-id="'+collections[i].uid+'"]').parent().parent().find('.group').each(function(){
$(this).find(':input').prop('checked',false);
});
globalAddressbookList.applyABFilter(collectionChBoxClick($('#ResourceCardDAVList').find('input[data-id="'+collections[i].uid+'"]').get(0), '#ResourceCardDAVList', '.resourceCardDAV_header', '.resourceCardDAV', '.contact_group', true), false);
}
}
}
var contactLoaded = globalAddressbookList.contactLoaded;
if((contactLoaded!=null && typeof globalAddressbookList.contacts_hash[contactLoaded.uid]!= 'undefined' && !globalAddressbookList.contacts_hash[contactLoaded.uid].show) || contactLoaded==null)
for(var contact in globalAddressbookList.contacts_hash)
if(globalAddressbookList.contacts_hash[contact].show)
{
globalAddressbookList.contactLoaded=contact;
break;
}
if(globalSettingsSaving=='addressbook' && !globalFirstHideLoader)
setTimeout(function(){hideUnloadedCardDAVCollectionsCallBack();},300);
}
function addLoadCardDAVCollection(loadingArray)
{
var collections = globalResourceCardDAVList.collections;
for(var i=0;i<collections.length;i++)
{
if(collections[i].uid!=undefined)
{
var uidParts=(collections[i].uid).match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@(.*)'));
var checkHref = uidParts[1]+uidParts[3];
if(loadingArray.indexOf(checkHref)!=-1 && !collections[i].makeLoaded)
{
var resDOMItem=$('#ResourceCardDAVList').find('.resourceCardDAV[data-id="'+jqueryEscapeSelector(collections[i].uid)+'"]');
// if the collection is re-inserted, certain data are still valid and we need to preserve these
collections[i].someChanged=true;
collections[i].makeLoaded=true;
var rex=vCard.pre['accountUidParts'];
var tmp=collections[i].accountUID.match(rex);
var resourceCalDAV_href=tmp[1]+tmp[3]+tmp[4];
var resourceCalDAV_user=tmp[2];
for(var j=0;j<globalAccountSettings.length;j++)
if(globalAccountSettings[j].href==resourceCalDAV_href && globalAccountSettings[j].userAuth.userName==resourceCalDAV_user && globalLoadedPrincipals.indexOf(resourceCalDAV_href)==-1)
{
globalLoadedPrincipals.push(globalAccountSettings[j].href);
break;
}
var resDOMHeader=resDOMItem.parent().prevUntil('.resourceCardDAV_header').last().prev();
if(!resDOMHeader.length)
resDOMHeader=resDOMItem.parent().prev();
resDOMHeader.css('display','block');
resDOMItem.css('display','');
var input=resDOMItem.find('input[type=checkbox]').not('.unloadCheck');
input.prop('checked',true).prop('indeterminate',false);
collectionChBoxClick(input.get(0), '#ResourceCardDAVList', '.resourceCardDAV_header', '.resourceCardDAV', '.contact_group', false);
collections[i].newlyAdded=true;
}
}
}
}
function CardDAVloadResources(resourceList, forceLoad)
{
if(forceLoad!=true && globalWindowFocus==false)
return false;
if(!(resourceList instanceof Array))
resourceList=[resourceList];
// i.pad((resourceList.length+'').length) is used for custom sorting
//for(var i=0;i<resourceList.length;i++)
var i=0;
CardDAVnetFindResource(resourceList[0], i.pad((resourceList.length+'').length), forceLoad, 0);
}
// ResourceCardDAVList Class
function ResourceCardDAVList()
{
this.collections=new Array();
// DONE
this.reset=function()
{
this.collections.splice(0,this.collections.length);
}
// DONE
// resource header value
this.getHeaderValue=function(inputResource)
{
var re=new RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@([^/]+).*/([^/]*)/','i');
var tmp=inputResource.accountUID.match(re);
var tmp_host=tmp[3]; // hostname [%H]
var tmp_host_wo_port=tmp[3].replace(RegExp(':[0-9]+$'),''); // hostname without port [%h]
var tmp_domain=tmp_host_wo_port.replace(RegExp('^[^.]+\\.'), ''); // domain name [%D]
var tmp_domain_min=tmp_host_wo_port.match(RegExp('^([^.]+\\.)*?((?:[^.]+\\.)?[^.]+)$'))[2]; // domain name min. (only 1 or 2 level domain string) [%d]
var tmp_principal=decodeURIComponent(tmp[4]); // principal username [%P]
var tmp_principal_wo_domain=decodeURIComponent(tmp[4]).replace(RegExp('(@.*)?$'),''); // principal username without @domain.com [%p]
var tmp_user=inputResource.userAuth.userName; // login name [%U]
var tmp_user_wo_domain=inputResource.userAuth.userName.replace(RegExp('@.*$'),''); // login name without @domain.com [%u]
if(typeof inputResource.hrefLabel!='string' || inputResource.hrefLabel=='' || (inputResource.hrefLabel=='%x' && inputResource.headervalue==''))
inputResource.hrefLabel='%d/%p [%u]';
var result=inputResource.hrefLabel;
result=result.replace(RegExp('%H', 'g'), tmp_host);
result=result.replace(RegExp('%h', 'g'), tmp_host_wo_port);
result=result.replace(RegExp('%D', 'g'), tmp_domain);
result=result.replace(RegExp('%d', 'g'), tmp_domain_min);
result=result.replace(RegExp('%P', 'g'), tmp_principal);
result=result.replace(RegExp('%p', 'g'), tmp_principal_wo_domain);
result=result.replace(RegExp('%U', 'g'), tmp_user);
result=result.replace(RegExp('%u', 'g'), tmp_user_wo_domain);
result=result.replace(RegExp('%x', 'g'), inputResource.headervalue);
inputResource.hrefLabel=result;
return result;
}
// DONE
this.getSortKey=function(inputResource, forHeader, inputResourceIndex)
{
var re=new RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@([^/]+)(.*/)([^/]+/)([^/]+/)([^/]*)','i');
var tmp=inputResource.uid.match(re);
var out='';
// custom sorting (instead of alphabetical)
if(globalSettings.resourcealphabetsorting.value!=true)
out+=inputResourceIndex.pad(String(globalAccountSettings.length).length);
out+=tmp[1]+tmp[3]+'/'+(inputResource.hrefLabel==undefined || inputResource.hrefLabel==null ? tmp[5] : inputResource.hrefLabel)+' '+inputResource.userAuth.userName;
if(forHeader==false)
out+=' '+inputResource.displayvalue;
return out;
}
// DONE
// Resource list is not sorted, instead "insert sort" is performed (todo: add collection hash)
this.insertResource=function(inputCollection, inputCollectionIndex)
{
var makeActive=false;
var makeChecked=false;
var makeIndeterminate=false;
var makeContactGroups=[];
var nameChanged=false;
// do not insert entry with duplicate UID
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].uid!=undefined && this.collections[i].uid==inputCollection.uid) // already loaded
{
// no visual interface change needed
if(this.collections[i].color==inputCollection.color && this.collections[i].displayvalue==inputCollection.displayvalue && this.collections[i].permissions.read_only==inputCollection.permissions.read_only && this.collections[i].headervalue==inputCollection.headervalue)
{
// if the collection is re-inserted, certain data are still valid and we need to preserve these
this.collections[i]=$.extend(inputCollection, {sortkey: this.collections[i].sortkey, newlyAdded: this.collections[i].newlyAdded, syncToken: this.collections[i].syncToken, oldSyncToken: this.collections[i].oldSyncToken, forceSyncPROPFIND: this.collections[i].forceSyncPROPFIND, loaded: this.collections[i].loaded});
return 0;
}
else // visual change => we need to remove and reinsert it
{
nameChanged=true;
makeActive=$('#ResourceCardDAVList').find('[data-id='+jqueryEscapeSelector(inputCollection.uid)+']').hasClass('resourceCardDAV_selected');
makeChecked=$('#ResourceCardDAVList').find('[data-id='+jqueryEscapeSelector(inputCollection.uid)+']').find('input[type=checkbox]').not('.unloadCheck').prop('checked');
makeIndeterminate=$('#ResourceCardDAVList').find('[data-id='+jqueryEscapeSelector(inputCollection.uid)+']').find('input[type=checkbox]').not('.unloadCheck').prop('indeterminate');
// here get the list of vcard groups with the current state (we need to re-add them to the interface)
$('#ResourceCardDAVList').find('.group[data-id^='+jqueryEscapeSelector(inputCollection.uid)+']').not('[data-id='+jqueryEscapeSelector(inputCollection.uid)+']').each(
function(index, element)
{
makeContactGroups.push({uid: $(element).attr('data-id'), isActive: $(element).hasClass('resourceCardDAV_selected'), isChecked: $(element).find('input[type=checkbox]').prop('checked')});
}
);
// the collection name is changed and must be moved to correct place (we first remove it and then reinsert)
this.removeResource(inputCollection.uid, false);
break;
}
}
if(!globalCardDAVInitLoad&&!nameChanged)
{
var uidParts=inputCollection.uid.match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@(.*)'));
var checkHref = uidParts[1]+uidParts[3];
var isLoaded=false;
if(typeof globalCrossServerSettingsURL!='undefined'&&globalCrossServerSettingsURL!=null&globalCrossServerSettingsURL)
{
var uidParts=inputCollection.uid.match(RegExp('/([^/]+/[^/]+/)$'));
var tmpParts = uidParts[1].match('^(.*/)([^/]+)/$');
var checkHref3=decodeURIComponent(tmpParts[1])+tmpParts[2]+'/';
var found=false;
for(var l=0;l<globalSettings.loadedaddressbookcollections.value.length;l++)
{
var tmpParts2 = globalSettings.loadedaddressbookcollections.value[l].match('^(.*/)([^/]+)/([^/]+)/$');
var checkHref2=decodeURIComponent(tmpParts2[2])+'/'+tmpParts2[3]+'/';
if(checkHref3==checkHref2)
{
found=true;
break;
}
}
isLoaded=found;
}
else
isLoaded=(globalSettings.loadedaddressbookcollections.value.indexOf(checkHref)!=-1);
// if(!isLoaded)
// globalSettings.loadedaddressbookcollections.value.push(checkHref);
if(!isLoaded)
{
inputCollection.makeLoaded=false;
inputCollection.newlyAdded=false;
}
else
{
inputCollection.makeLoaded=true;
inputCollection.newlyAdded=true;
}
inputCollection.oldSyncToken = '';
inputCollection.someChanged=false;
makeChecked=true;
}
var oldHrefLabel = inputCollection.hrefLabel;
var headerValue = this.getHeaderValue(inputCollection);
// get sort key for the collection
inputCollection.sortkey=this.getSortKey(inputCollection, false, inputCollectionIndex);
// find the index where to insert the new resource O(n*log(n))
var insertIndex=0;
var low=0;
var high=this.collections.length-1;
if(this.collections.length>0)
while(low<high)
{
insertIndex=low+Math.round((high-low)/2);
var result=(cmp_str=this.collections[insertIndex].sortkey).customCompare(inputCollection.sortkey,globalSortAlphabet,1,false);
if(result==-1)
{
if(insertIndex+1==this.collections.length-1 && typeof this.collections[insertIndex+1]!='undefined' && (cmp_str=this.collections[insertIndex+1].sortkey).customCompare(inputCollection.sortkey,globalSortAlphabet,1,false)==-1)
{
insertIndex+=2;
break;
}
else
low=++insertIndex;
}
else if(result==1)
{
if((cmp_str=this.collections[insertIndex-1].sortkey).customCompare(inputCollection.sortkey,globalSortAlphabet,1,false)==-1)
break;
else
high=--insertIndex;
}
}
// create the header
var headerObject={headerOnly: true, sortkey: this.getSortKey(inputCollection, true, inputCollectionIndex), displayvalue: (oldHrefLabel=='%x' ? headerValue.replace(RegExp('^[^#]+#'),'') : headerValue)};
// check for header existence
var headerMiss=1;
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].headerOnly!=undefined && this.collections[i].headerOnly==true && this.collections[i].displayvalue==headerObject.displayvalue)
{headerMiss=0; break;}
// if header not exists
if(headerMiss)
{
// insert header
this.collections.splice(insertIndex, 0, headerObject);
// insert header to the interface
var newElement=globalTranslCardDAVListHeader.clone();
newElement.append(headerObject.displayvalue);
newElement.find('input[type=checkbox]').click(function(){globalAddressbookList.applyABFilter(resourceChBoxClick(this, '#ResourceCardDAVList', '.resourceCardDAV_header', true), false);});
$('#ResourceCardDAVList').children().eq(insertIndex).after(newElement);
}
// insert the resource
if(!nameChanged)
globalAddressbookList.vcard_groups[inputCollection.uid] = new Array();
this.collections.splice(insertIndex+headerMiss, 0, inputCollection);
// insert the resource to the interface
var newElement=globalTranslCardDAVListItem.clone();
// the onclick event is disabled until the last drag&drop operation is completed
newElement.find('.resourceCardDAV').click(function(e){
if(globalAddressbookCollectionsLoading)
return true;
if(e.shiftKey) {
var uid = $(this).attr('data-id');
$('#ResourceCardDAVList').find('.resourceCardDAV:visible').children('input[type="checkbox"]').each(function(){
var currentUid = $(this).attr('data-id');
if(currentUid===uid)
$(this).prop({'checked':true, 'indeterminate':false});
else
$(this).prop({'checked':false, 'indeterminate':false}).attr('data-ind', 'true');
collectionChBoxClick(this, '#ResourceCardDAVList', '.resourceCardDAV_header', '.resourceCardDAV', '.contact_group', false);
});
globalAddressbookList.applyABFilter([uid], false);
}
globalResourceCardDAVList.resourceOrGroupClick(this.getAttribute('data-id'));
});
newElement.find('.resourceCardDAV').attr('data-id', inputCollection.uid);
if(inputCollection.permissions.read_only)
newElement.find('.resourceCardDAV').addClass('resourceCardDAV_ro');
if(globalCardDAVInitLoad)
newElement.find('.resourceCardDAV').addClass('r_operate');
newElement.find('.resourceCardDAVColor').css('background-color',inputCollection.color);
if(typeof globalAddrColorPropertyXmlns== 'undefined' || globalAddrColorPropertyXmlns== null || globalAddrColorPropertyXmlns==='' || globalAddrColorPropertyXmlns!==false)
bindColorPickerClick(newElement.find('.resourceCardDAVColor'));
newElement.find('.resourceCardDAV').find('input[type=checkbox]').attr({'data-id': inputCollection.uid, 'onclick':'if(globalAddressbookList.contactToReload!=null){if(globalAddressbookList.contactToReload.uid.indexOf("'+inputCollection.uid+'")==0){hideNotVisibleMessage()}}var evt=arguments[0];evt.stopPropagation(); if($(this).parents(\':eq(2)\').find(\'[class^="r_"]\').length>0) return false; else { globalAddressbookList.applyABFilter(collectionChBoxClick(this, \'#ResourceCardDAVList\', \'.resourceCardDAV_header\', \'.resourceCardDAV\', \'.contact_group\', true), false); }'});
newElement.find('.resourceCardDAV').append(inputCollection.displayvalue);
newElement.find('.resourceCardDAV').attr('title',inputCollection.displayvalue);
$('#ResourceCardDAVList').children().eq(insertIndex+headerMiss).after(newElement);
if(inputCollection.makeLoaded)
{
var resDOMHeader=newElement.prevUntil('.resourceCardDAV_header').last().prev();
if(!resDOMHeader.length)
resDOMHeader=newElement.prev();
resDOMHeader.css('display','block');
var rex=vCard.pre['accountUidParts'];
var tmp=inputCollection.accountUID.match(rex);
var resourceCalDAV_href=tmp[1]+tmp[3]+tmp[4];
var resourceCalDAV_user=tmp[2];
for(var i=0;i<globalAccountSettings.length;i++)
if(globalAccountSettings[i].href==resourceCalDAV_href && globalAccountSettings[i].userAuth.userName==resourceCalDAV_user && globalLoadedPrincipals.indexOf(resourceCalDAV_href)==-1)
{
globalLoadedPrincipals.push(globalAccountSettings[i].href);
break;
}
}
else
newElement.css('display','none');
// make the area droppable if the collection is not read-only
if(!inputCollection.permissions.read_only && (typeof globalDisableDragAndDrop=='undefined' || globalDisableDragAndDrop!=true))
$('#ResourceCardDAVList').children().eq(insertIndex+headerMiss+1).find('.resourceCardDAV').droppable({
accept: '.ablist_item',
tolerance: 'pointer',
hoverClass: 'resourceCardDAV_dropped_to',
drop: function(event, ui){
// animate the clone of the dropped (draggable) element
var tmp=ui.helper.clone();
tmp.appendTo('body').animate({opacity: 0, color: 'transparent', height: 0, width: 0, fontSize: 0, lineHeight: 0, paddingLeft: 0, paddingRight: 0}, 750, function(){tmp.remove()});
// disallow to drag the original dropped element until the processing is finished
ui.draggable.draggable('option', 'disabled', true);
// animate the original dropped element
ui.draggable.animate({opacity: 0.3}, 750);
// disallow to drop any new element until the processing is finished
$(this).droppable('option', 'disabled', true);
// show the loader icon
$(this).addClass('r_operate');
// moving contact between different collections in the same resource
if($(this).attr('data-id').replace(RegExp('[^/]+/$'),'')==ui.draggable.attr('data-id').replace(RegExp('[^/]+/[^/]+$'),''))
{
var tmp2=globalAddressbookList.getContactByUID(ui.draggable.attr('data-id'));
// here we generate the destination for MOVE (we don't use the old vCard file name to minimalize the possible conflict situations)
var tmp3=($(this).attr('data-id')+hex_sha256(tmp2.vcard+(new Date().getTime()))+'.vcf').match(RegExp('^(https?://)([^@/]+(?:@[^@/]+)?)@([^/]+)(.*/)([^/]+/)([^/]*)','i'));
tmp2.moveDestUID=$(this).attr('data-id');
tmp2.moveDest=tmp3[1]+tmp3[3]+tmp3[4]+tmp3[5]+tmp3[6];
// we need to store the ui object references for error handling in the GUI
tmp2.uiObjects={contact: ui.draggable, resource: $(this).attr('data-id')};
lockAndPerformToCollection(tmp2, globalRefAddContact.attr('data-filter-url'), 'MOVE');
}
// inter-resource contact "move" (put + delete)
else
{
var tmp2=globalAddressbookList.getContactByUID(ui.draggable.attr('data-id'));
// here we generate the destination for MOVE (we don't use the old vCard file name to minimalize the possible conflict situations)
tmp2.newAccountUID=globalResourceCardDAVList.getCollectionByUID($(this).attr('data-id')).accountUID;
tmp2.newUid=$(this).attr('data-id');
// we need to store the ui object references for error handling in the GUI
tmp2.uiObjects={contact: ui.draggable, resource: $(this).attr('data-id')};
lockAndPerformToCollection(tmp2, globalRefAddContact.attr('data-filter-url'), 'IRM_DELETE');
}
}
});
// restore the active state (we do not need to call this.resourceOrGroupClick() here, because we re-activate the "old active item")
if(makeActive)
{
$('#ResourceCardDAVList').find('.resourceCardDAV_item').find('.resourceCardDAV').removeClass('resourceCardDAV_selected');
$('#ResourceCardDAVList').children().eq(insertIndex+headerMiss+1).find('.resourceCardDAV').addClass('resourceCardDAV_selected');
}
// restore the checked state
if(makeChecked)
$('#ResourceCardDAVList').children().eq(insertIndex+headerMiss+1).find('.resourceCardDAV').find('input[type=checkbox]').prop('checked', true);
// restore the indeterminate state
if(makeIndeterminate)
$('#ResourceCardDAVList').children().eq(insertIndex+headerMiss+1).find('.resourceCardDAV').find('input[type=checkbox]').prop('indeterminate', true);
if(!globalCardDAVInitLoad)
collectionChBoxClick(newElement.find('input[type=checkbox]').get(0), '#ResourceCardDAVList', '.resourceCardDAV_header', '.resourceCardDAV', null, false);
// restore contact groups
if(makeContactGroups.length>0)
for(var i=0;i<makeContactGroups.length;i++)
{
globalAddressbookList.insertContactGroup(globalAddressbookList.getContactGroupByUID(makeContactGroups[i].uid), false, true);
$('#ResourceCardDAVList').find('.group[data-id='+jqueryEscapeSelector(makeContactGroups[i].uid)+']').find('input[type=checkbox]').prop('checked', makeContactGroups[i].isChecked);
if(makeContactGroups[i].isActive)
$('#ResourceCardDAVList').find('.group[data-id='+jqueryEscapeSelector(makeContactGroups[i].uid)+']').addClass('resourceCardDAV_selected');
}
}
// DONE
this.removeResource=function(inputCollectionUID, activateNextIfNeeded)
{
var nextCandidateToActive=null;
for(var i=this.collections.length-1;i>=0;i--)
if(this.collections[i].uid==inputCollectionUID)
{
var uidRemoved=this.collections[i].uid;
var item=$('#ResourceCardDAVList').find('.resourceCardDAV[data-id^="'+jqueryEscapeSelector(this.collections[i].uid)+'"]');
var item_prev=item.parent().prev();
var item_was_selected=item.hasClass('resourceCardDAV_selected');
if(activateNextIfNeeded && item_was_selected)
{
// select the nearest candidate to load
if((i+1)<=(this.collections.length-1))
{
if(this.collections[i+1].headerOnly!=true)
nextCandidateToActive=this.collections[i+1];
else if((i+2)<=(this.collections.length-1))
nextCandidateToActive=this.collections[i+2];
}
if(nextCandidateToActive==null && (i-1)>0)
{
if(this.collections[i-1].headerOnly!=true)
nextCandidateToActive=this.collections[i-1];
else if((i-2)>0)
nextCandidateToActive=this.collections[i-2];
}
}
// remove the item
item.parent().remove();
this.collections.splice(i,1);
// if the next item is undefined or is header, and the previous item is header, then delete the header
if((this.collections[i]==undefined || this.collections[i].headerOnly==true) && this.collections[i-1].headerOnly==true)
{
item_prev.remove();
this.collections.splice(--i,1);
}
// make another resource active
if(activateNextIfNeeded && nextCandidateToActive!=null)
this.resourceOrGroupClick(nextCandidateToActive.uid);
break;
}
}
// DONE
this.removeOldResources=function(inputUidBase, inputTimestamp)
{
for(var i=this.collections.length-1;i>=0;i--)
if(this.collections[i].timestamp!=undefined && this.collections[i].uid.indexOf(inputUidBase)==0 && this.collections[i].timestamp<inputTimestamp)
{
var uidRemoved=this.collections[i].uid;
var item=$('#ResourceCardDAVList').find('.resourceCardDAV[data-id^="'+jqueryEscapeSelector(this.collections[i].uid)+'"]');
var item_header=item.parent().prevUntil('.resourceCardDAV_header').last().prev();
if(!item_header.length)
item_header=item.parent().prev();
// remove the item
item.parent().remove();
this.collections.splice(i,1);
//remove contacts from addressbook
var contactsToRemove = new Array();
for(var c=0;c<globalAddressbookList.contacts.length; c++)
{
if(typeof globalAddressbookList.contacts[c].uid!='undefined'&&globalAddressbookList.contacts[c].uid.replace(RegExp('/[^/]*$',''),'/')==uidRemoved)
contactsToRemove.push(globalAddressbookList.contacts[c].uid);
}
globalAddressbookList.removeContact(contactsToRemove);
// if (next item undefined or is header) and previous item is header delete the header
if((this.collections[i]==undefined || this.collections[i].headerOnly==true) && i>0 && this.collections[i-1].headerOnly==true)
{
item_header.remove();
this.collections.splice(--i,1);
}
else
{
var firstVisibleCollection=null;
for(var vi=i-1;vi>0;vi--)
{
if(this.collections[vi].headerOnly==true)
break;
if(this.collections[vi].makeLoaded)
{
firstVisibleCollection=this.collections[vi];
break;
}
}
if(firstVisibleCollection==null)
{
for(var vi=i;vi<this.collections.length;vi++)
{
if(this.collections[vi].headerOnly==true)
break;
if(this.collections[vi].makeLoaded)
{
firstVisibleCollection=this.collections[vi];
break;
}
}
}
if(firstVisibleCollection==null)
item_header.css('display','none');
else
{
var triggerInput=$('#ResourceCalDAVList').find('.resourceCardDAV[data-id^="'+jqueryEscapeSelector(firstVisibleCollection.uid)+'"]').find('input[type=checkbox]');
collectionChBoxClick(triggerInput.get(0), '#ResourceCardDAVList', '.resourceCardDAV_header', '.resourceCardDAV', null, false);
}
}
}
};
this.resourceOrGroupClick=function(inputUID)
{
// console.log('click na: '+inputUID);
var tmp=inputUID.match(RegExp('(^.*/)(.*)'),'');
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].uid!=undefined && this.collections[i].uid==tmp[1])
{
// YYY check this
this.collections[i].filterUID=inputUID;
if(this.collections[i].permissions.read_only==true)
globalRefAddContact.addClass('element_no_display');
else
globalRefAddContact.removeClass('element_no_display');
globalRefAddContact.attr('data-url', this.collections[i].uid.replace(RegExp('[^/]+$'),''));
globalRefAddContact.attr('data-filter-url',this.collections[i].filterUID); // Set the current addressbook filter uid
globalRefAddContact.attr('data-account-uid',this.collections[i].accountUID);
globalRefAddContact.attr('data-color',this.collections[i].color);
// Make the selected collection active
if(!globalCardDAVInitLoad)
{
if(typeof(globalContactsABChange)=='function')
globalContactsABChange(this.collections[i].uid);
$('#ResourceCardDAVList').find('.resourceCardDAV_item').find('.resourceCardDAV_selected').removeClass('resourceCardDAV_selected');
$('#ResourceCardDAVList').find('[data-id='+jqueryEscapeSelector(this.collections[i].uid)+']').addClass('resourceCardDAV_selected');
if(this.collections[i].filterUID[this.collections[i].filterUID.length-1]!='/')
$('#ResourceCardDAVList').find('[data-id='+jqueryEscapeSelector(this.collections[i].filterUID)+']').addClass('resourceCardDAV_selected');
}
}
};
/*
this.loadAddressbookByUID=function(inputUID)
{
// Show the progress loader ...
if(this.collections[i].loaded==undefined || this.collections[i].loaded==false)
{
this.collections[i].loaded=true; // otazka ci to dat sem alebo tam kre sa to realne nacita (ak to bude na druhom mieste, tak sa mozes stat ze user klikne vela krat a bude vela paralelnych loadov)
}
}
*/
this.getCollectionByUID=function(inputUID)
{
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].uid==inputUID)
return this.collections[i];
return null;
};
this.setCollectionFlagByUID=function(inputUID, inputFlagName, inputFlagValue)
{
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].uid==inputUID)
{
this.collections[i][inputFlagName]=inputFlagValue;
return this.collections[i];
}
return null;
};
this.getCollectionPrivByUID=function(inputUID)
{
for(var i=0;i<this.collections.length;i++)
if(this.collections[i].uid!=undefined && this.collections[i].uid==inputUID)
return this.collections[i].permissions.read_only;
return null;
};
}