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 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
|
# $Id: privacy.tcl,v 1.16 2006/04/27 20:29:35 aleksey Exp $
#
# Privacy lists support (RFC 3921, section 10)
#
namespace eval privacy {
variable options
array set req_messages \
[list ignore [::msgcat::mc "Requesting ignore list: %s"] \
invisible [::msgcat::mc "Requesting invisible list: %s"] \
visible [::msgcat::mc "Requesting visible list: %s"]]
array set send_messages \
[list ignore [::msgcat::mc "Sending ignore list: %s"] \
invisible [::msgcat::mc "Sending invisible list: %s"] \
visible [::msgcat::mc "Sending visible list: %s"]]
array set edit_messages \
[list ignore [::msgcat::mc "Edit ignore list"] \
invisible [::msgcat::mc "Edit invisible list"] \
visible [::msgcat::mc "Edit visible list"]]
array set menu_messages \
[list ignore [::msgcat::mc "Ignore list"] \
invisible [::msgcat::mc "Invisible list"] \
visible [::msgcat::mc "Visible list"]]
custom::defgroup Privacy \
[::msgcat::mc "Blocking communication (XMPP privacy lists) options."] \
-group Tkabber
custom::defvar options(activate_at_startup) 1 \
[::msgcat::mc "Activate visible/invisible/ignore lists before sending\
initial presence."] \
-type boolean -group Privacy
}
###############################################################################
#
# Manual rules editing block
#
proc privacy::request_lists {args} {
foreach {opt val} $args {
switch -- $opt {
-connection { set connid $val }
}
}
if {![info exists connid]} {
set connid [jlib::route ""]
}
jlib::send_iq get \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)]] \
-command [list [namespace current]::open_dialog $connid] \
-connection $connid
}
proc privacy::on_destroy_dialog {w W} {
variable data
if {$w != $W} return
catch { array unset data }
}
proc privacy::open_dialog {connid res child} {
if {![cequal $res OK]} {
MessageDlg .privacy_err -aspect 50000 -icon error \
-message [format [::msgcat::mc "Requesting privacy rules: %s"] \
[error_to_string $child]] \
-type user -buttons ok -default 0 -cancel 0
return
}
set w .privacy
if {[winfo exists $w]} {
destroy $w
}
Dialog $w -title [::msgcat::mc "Privacy lists"] \
-modal none -separator 1 -anchor e \
-default 0 -cancel 1
bind $w <Destroy> [list [namespace current]::on_destroy_dialog $w %W]
$w add -text [::msgcat::mc "Send"] \
-command [list [namespace current]::send_lists $connid $w]
$w add -text [::msgcat::mc "Cancel"] -command [list destroy $w]
set f [$w getframe]
set hf [frame $w.hf]
pack $hf -side bottom
set tools [frame $f.tools]
pack $tools -side bottom -fill x -padx 1m
set sw [ScrolledWindow $w.sw -scrollbar vertical]
set sf [ScrollableFrame $w.fields -constrainedwidth yes]
pack $sw -side bottom -expand yes -fill both -in $f -pady 1m -padx 1m
set lf [$sf getframe]
$sw setwidget $sf
set addlist [button $tools.addlist \
-text [::msgcat::mc "Add list"] \
-command [list [namespace current]::add_list \
$connid $tools $lf "" {}]]
pack $addlist -side right -padx 1m
set default [radiobutton $tools.default \
-text [::msgcat::mc "No default list"] \
-variable [namespace current]::data(default) \
-value ""]
pack $default -side left -padx 1m
set active [radiobutton $tools.active \
-text [::msgcat::mc "No active list"] \
-variable [namespace current]::data(active) \
-value ""]
pack $active -side left -padx 1m
jlib::wrapper:splitxml $child tag vars isempty chdata children
fill_lists $connid $hf $lf $children
$w draw
}
proc privacy::fill_lists {connid hf f items} {
variable data
grid [label $f.n -text [::msgcat::mc "List name"] -width 20] \
-row 0 -column 0 -sticky we -padx 1m
grid [label $f.d -text [::msgcat::mc "Default"]] \
-row 0 -column 1 -sticky we -padx 1m
grid [label $f.a -text [::msgcat::mc "Active"]] \
-row 0 -column 2 -sticky we -padx 1m
grid columnconfigure $f 0 -weight 1
grid columnconfigure $f 1 -weight 1
grid columnconfigure $f 2 -weight 1
grid columnconfigure $f 3 -weight 1
grid columnconfigure $f 4 -weight 1
set data(active) ""
set data(default) ""
set data(nlists) 0
set i 0
foreach item $items {
jlib::wrapper:splitxml $item tag vars isempty chdata children
switch -- x$tag {
xdefault {
set data(default) [jlib::wrapper:getattr $vars name]
}
xactive {
set data(active) [jlib::wrapper:getattr $vars name]
}
xlist {
set name [jlib::wrapper:getattr $vars name]
add_list $connid $hf $f $name $children
}
}
}
}
proc privacy::remove_list {lf ln} {
variable data
destroy $lf.name$ln
destroy $lf.active$ln
destroy $lf.default$ln
destroy $lf.edit$ln
destroy $lf.remove$ln
set data(nitems,$ln) 0
set data(newname,$ln) ""
}
proc privacy::::on_change_list_name {lf i args} {
variable data
set name $data(newname,$i)
if {$data(default) == $data(name,$i)} {
set data(default) $name
}
if {$data(active) == $data(name,$i)} {
set data(active) $name
}
if {[winfo exists $lf.default$i] && [winfo exists $lf.active$i]} {
$lf.default$i configure -value $name
$lf.active$i configure -value $name
}
if {$name != ""} {
set data(name,$i) $name
}
}
proc privacy::add_list {connid hf lf name children} {
variable data
set i $data(nlists)
if {$name == ""} {
set name "list$i"
send_new_list $connid $name
}
set data(name,$i) $name
set data(newname,$i) $name
trace variable [namespace current]::data(newname,$i) w \
[list [namespace current]::on_change_list_name $lf $i]
set lname [label $lf.name$i \
-text $name \
-textvariable [namespace current]::data(name,$i)]
set default [radiobutton $lf.default$i \
-variable [namespace current]::data(default) \
-value $name]
set active [radiobutton $lf.active$i \
-variable [namespace current]::data(active) \
-value $name]
set remove [button $lf.remove$i \
-text [::msgcat::mc "Remove list"] \
-command [list [namespace current]::remove_list $lf $i]]
set edit [button $lf.edit$i \
-text [::msgcat::mc "Edit list"] \
-command [list [namespace current]::edit_list $connid $lf $i]]
set row [expr {$i + 1}]
grid $lname -row $row -column 0 -stick w -padx 1m
grid $default -row $row -column 1 -stick we -padx 1m
grid $active -row $row -column 2 -stick we -padx 1m
grid $edit -row $row -column 3 -stick we -padx 1m
grid $remove -row $row -column 4 -stick we -padx 1m
update idletasks
$hf configure \
-width [expr {[winfo reqwidth $lf] + [winfo pixels $lf 1c]}]
incr data(nlists)
}
proc privacy::edit_list {connid lf ln} {
variable data
set name $data(name,$ln)
jlib::send_iq get \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name $name]]]] \
-command [list [namespace current]::edit_list_dialog $connid $ln $name] \
-connection $connid
}
proc privacy::edit_list_dialog {connid ln name res child} {
if {![cequal $res OK]} {
MessageDlg .privacy_list_err -aspect 50000 -icon error \
-message [format [::msgcat::mc "Requesting privacy list: %s"] \
[error_to_string $child]] \
-type user -buttons ok -default 0 -cancel 0
set child [jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name $name]]]]
}
set w .privacy_list
if {[winfo exists $w]} {
destroy $w
}
Dialog $w -title [::msgcat::mc "Edit privacy list"] \
-separator 1 -anchor e \
-default 0 -cancel 1
$w add -text [::msgcat::mc "Send"] \
-command [list [namespace current]::send_list $connid $ln $w]
$w add -text [::msgcat::mc "Cancel"] -command [list destroy $w]
set f [$w getframe]
set tools [frame $f.tools]
pack $tools -side bottom -fill x
set hf [frame $w.hf]
pack $hf -side bottom
set sw [ScrolledWindow $w.sw -scrollbar vertical]
set sf [ScrollableFrame $w.fields -constrainedwidth yes]
set lf [$sf getframe]
pack $sw -side top -expand yes -fill both -in $f -pady 1m
$sw setwidget $sf
set additem [button $tools.aditem \
-text [::msgcat::mc "Add item"] \
-command \
[list [namespace current]::add_item \
$lf.items "none" "" "allow" 1 1 1 1]]
pack $additem -side right -padx 1m
jlib::wrapper:splitxml $child tag vars isempty chdata children
fill_edit_lists $lf $children
update idletasks
$hf configure \
-width [expr {[winfo reqwidth $lf] + [winfo pixels $lf 1c]}]
$w draw
}
proc privacy::fill_edit_lists {f items} {
variable data
foreach item $items {
if {$item != ""} {
jlib::wrapper:splitxml $item tag vars isempty chdata children
if {$tag == "list"} {
set name [jlib::wrapper:getattr $vars name]
fill_edit_list $f $name $children
break
}
}
}
}
proc privacy::compare {item1 item2} {
jlib::wrapper:splitxml $item1 tag vars isempty chdata children
set order1 [jlib::wrapper:getattr $vars order]
jlib::wrapper:splitxml $item2 tag vars isempty chdata children
set order2 [jlib::wrapper:getattr $vars order]
return [expr {$order1 > $order2}]
}
proc privacy::fill_edit_list {fr name items} {
variable data
set data(listname) $name
set data(listnewname) $name
set fname [frame $fr.name]
pack $fname -side top -fill x
label $fname.lname -text [string trimright [::msgcat::mc "Name: "]]
entry $fname.name \
-textvariable [namespace current]::data(listnewname)
pack $fname.lname -side left -anchor w
pack $fname.name -side left -fill x -expand yes
set f [frame $fr.items]
pack $f -side top -fill both -expand yes
label $f.ltype -text [::msgcat::mc "Type"]
label $f.lvalue -text [::msgcat::mc "Value"]
label $f.laction -text [::msgcat::mc "Action"]
label $f.lmessage -text [::msgcat::mc "Message"]
label $f.lpresencein -text [::msgcat::mc "Presence-in"]
label $f.lpresenceout -text [::msgcat::mc "Presence-out"]
label $f.liq -text [::msgcat::mc "IQ"]
grid $f.ltype -row 0 -column 0 -sticky we -padx 0.5m
grid $f.lvalue -row 0 -column 1 -sticky we -padx 0.5m
grid $f.laction -row 0 -column 2 -sticky we -padx 0.5m
grid $f.lmessage -row 0 -column 3 -sticky we -padx 0.5m
grid $f.lpresencein -row 0 -column 4 -sticky we -padx 0.5m
grid $f.lpresenceout -row 0 -column 5 -sticky we -padx 0.5m
grid $f.liq -row 0 -column 6 -sticky we -padx 0.5m
grid columnconfig $f 1 -weight 1
set data(listnitems) 0
foreach item [lsort -command [namespace current]::compare $items] {
jlib::wrapper:splitxml $item tag vars isempty chdata children
set type [jlib::wrapper:getattr $vars type]
if {$type == ""} {
set type none
}
set value [jlib::wrapper:getattr $vars value]
set action [jlib::wrapper:getattr $vars action]
set all 1
array set tmp [list message 0 presence-in 0 presence-out 0 iq 0]
foreach child $children {
jlib::wrapper:splitxml $child tag1 vars1 isempty1 chdata1 children1
switch -- $tag1 {
message -
presence-in -
presence-out -
iq {
set tmp($tag1) 1
set all 0
}
}
}
if {$all} {
array set tmp [list message 1 presence-in 1 presence-out 1 iq 1]
}
add_item $f $type $value $action \
$tmp(message) $tmp(presence-in) $tmp(presence-out) $tmp(iq)
}
}
proc privacy::add_item {f type value action message presencein presenceout iq} {
variable data
set i $data(listnitems)
entry $f.value$i \
-textvariable [namespace current]::data(value,$i)
ComboBox $f.type$i \
-values {none jid group subscription} \
-editable no \
-width 12 \
-textvariable [namespace current]::data(type,$i)
ComboBox $f.action$i \
-values {allow deny} \
-editable no \
-width 5 \
-textvariable [namespace current]::data(action,$i)
checkbutton $f.message$i \
-variable [namespace current]::data(message,$i) \
-command [list [namespace current]::update_checkbuttons $i]
checkbutton $f.presencein$i \
-variable [namespace current]::data(presencein,$i) \
-command [list [namespace current]::update_checkbuttons $i]
checkbutton $f.presenceout$i \
-variable [namespace current]::data(presenceout,$i) \
-command [list [namespace current]::update_checkbuttons $i]
checkbutton $f.iq$i \
-variable [namespace current]::data(iq,$i) \
-command [list [namespace current]::update_checkbuttons $i]
button $f.moveup$i -text [::msgcat::mc "Up"] \
-command [list [namespace current]::move_item_up $f $i]
button $f.movedown$i -text [::msgcat::mc "Down"] \
-command [list [namespace current]::move_item_down $f $i]
button $f.remove$i -text [::msgcat::mc "Remove"] \
-command [list [namespace current]::remove_item $f $i]
set data(type,$i) $type
set data(value,$i) $value
set data(action,$i) $action
set data(message,$i) $message
set data(presencein,$i) $presencein
set data(presenceout,$i) $presenceout
set data(iq,$i) $iq
set row [expr {$i + 1}]
grid $f.type$i -row $row -column 0 -sticky ew -padx 0.5m
grid $f.value$i -row $row -column 1 -sticky ew -padx 0.5m
grid $f.action$i -row $row -column 2 -sticky ew -padx 0.5m
grid $f.message$i -row $row -column 3 -sticky ew -padx 0.5m
grid $f.presencein$i -row $row -column 4 -sticky ew -padx 0.5m
grid $f.presenceout$i -row $row -column 5 -sticky ew -padx 0.5m
grid $f.iq$i -row $row -column 6 -sticky ew -padx 0.5m
grid $f.moveup$i -row $row -column 7 -sticky ew -padx 0.5m
grid $f.movedown$i -row $row -column 8 -sticky ew -padx 0.5m
grid $f.remove$i -row $row -column 9 -sticky ew -padx 0.5m
incr data(listnitems)
update_button_states $f
}
proc privacy::update_checkbuttons {i} {
variable data
if {!$data(message,$i) && !$data(presencein,$i) && \
!$data(presenceout,$i) && !$data(iq,$i)} {
set data(message,$i) 1
set data(presencein,$i) 1
set data(presenceout,$i) 1
set data(iq,$i) 1
}
}
proc privacy::update_button_states {f} {
variable data
set numrows 0
set row 0
for {set i 0} {$i < $data(listnitems)} {incr i} {
if {$data(type,$i) != "remove"} {
$f.remove$i configure -state normal
incr numrows
set row $i
}
}
if {$numrows == 1} {
$f.remove$row configure -state disabled
}
}
proc privacy::move_item_up {f i} {
variable data
set j $i
incr j -1
while {$j >= 0 && $data(type,$j) == "remove"} {
incr j -1
}
if {$j >= 0} {
switch_items $f $i $j
}
}
proc privacy::move_item_down {f i} {
variable data
set j $i
incr j 1
while {$j < $data(listnitems) && $data(type,$j) == "remove"} {
incr j 1
}
if {$j < $data(listnitems)} {
switch_items $f $i $j
}
}
proc privacy::switch_items {f i j} {
variable data
set type $data(type,$i)
set value $data(value,$i)
set action $data(action,$i)
set message $data(message,$i)
set presencein $data(presencein,$i)
set presenceout $data(presenceout,$i)
set iq $data(iq,$i)
set data(type,$i) $data(type,$j)
set data(value,$i) $data(value,$j)
set data(action,$i) $data(action,$j)
set data(message,$i) $data(message,$j)
set data(presencein,$i) $data(presencein,$j)
set data(presenceout,$i) $data(presenceout,$j)
set data(iq,$i) $data(iq,$j)
set data(type,$j) $type
set data(value,$j) $value
set data(action,$j) $action
set data(message,$j) $message
set data(presencein,$j) $presencein
set data(presenceout,$j) $presenceout
set data(iq,$j) $iq
}
proc privacy::remove_item {f i} {
variable data
destroy $f.type$i
destroy $f.value$i
destroy $f.action$i
destroy $f.message$i
destroy $f.presencein$i
destroy $f.presenceout$i
destroy $f.iq$i
destroy $f.moveup$i
destroy $f.movedown$i
destroy $f.remove$i
set data(type,$i) remove
set data(value,$i) ""
set data(action,$i) allow
update_button_states $f
}
proc privacy::send_list_iq {name items args} {
set cmd jlib::noop
foreach {opt val} $args {
switch -- $opt {
-command { set cmd $val }
-connection { set connid $val }
}
}
if {![info exists connid]} {
set connid [jlib::route ""]
}
jlib::send_iq set \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name $name] \
-subtags $items]]] \
-command $cmd \
-connection $connid
}
proc privacy::send_new_list {connid name} {
send_list_iq $name \
[list [jlib::wrapper:createtag item \
-vars [list action allow order 0]]] \
-connection $connid
}
proc privacy::send_list {connid ln w} {
variable data
set name $data(listnewname)
send_list_iq $name [list_items] -connection $connid
if {$name != $data(listname)} {
if {$data(default) == $data(listname)} {
send_default_or_active_list $name default -connection $connid
}
send_list_iq $data(listname) {} -connection $connid
set data(newname,$ln) $name
}
destroy $w
}
proc privacy::send_lists {connid w} {
variable data
for {set i 0} {$i < $data(nlists)} {incr i} {
if {$data(newname,$i) == ""} {
send_list_iq $data(name,$i) {} -connection $connid
}
}
send_default_or_active_list $data(active) active -connection $connid
send_default_or_active_list $data(default) default -connection $connid
destroy $w
}
proc privacy::list_items {} {
variable data
set items {}
for {set i 0} {$i < $data(listnitems)} {incr i} {
if {$data(type,$i) == "remove"} continue
set vars [list action $data(action,$i) order $i]
if {$data(type,$i) != "none"} {
lappend vars type $data(type,$i) value $data(value,$i)
}
set children {}
if {$data(message,$i)} {
lappend children [jlib::wrapper:createtag message]
}
if {$data(presencein,$i)} {
lappend children [jlib::wrapper:createtag presence-in]
}
if {$data(presenceout,$i)} {
lappend children [jlib::wrapper:createtag presence-out]
}
if {$data(iq,$i)} {
lappend children [jlib::wrapper:createtag iq]
}
if {[llength $children] == 4} {
set children {}
}
lappend items [jlib::wrapper:createtag item \
-vars $vars \
-subtags $children]
}
return $items
}
###############################################################################
proc privacy::send_default_or_active_list {name tag args} {
set cmd jlib::noop
foreach {opt val} $args {
switch -- $opt {
-command { set cmd $val }
-connection { set connid $val }
}
}
if {![info exists connid]} {
set connid [jlib::route ""]
}
if {$name != ""} {
set vars [list name $name]
} else {
set vars {}
}
jlib::send_iq set \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag $tag \
-vars $vars]]] \
-command $cmd \
-connection $connid
}
###############################################################################
#
# Visible, invisible, ignore list block
#
proc privacy::edit_special_list {name args} {
foreach {opt val} $args {
switch -- $opt {
-connection { set connid $val }
}
}
if {![info exists connid]} {
set connid [jlib::route ""]
}
jlib::send_iq get \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name "$name-list"]]]] \
-command [list [namespace current]::edit_special_list_dialog $connid $name] \
-connection $connid
}
proc privacy::edit_special_list_dialog {connid name res child} {
variable req_messages
variable edit_messages
if {![cequal $res OK]} {
if {[error_type_condition $child] != {cancel item-not-found}} {
MessageDlg .privacy_list_err -aspect 50000 -icon error \
-message [format $req_messages($name) [error_to_string $child]] \
-type user -buttons ok -default 0 -cancel 0
return
}
set child [jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name "$name-list"]]]]
}
set w .privacy_list
if {[winfo exists $w]} {
destroy $w
}
Dialog $w -title $edit_messages($name) \
-modal none -separator 1 -anchor e \
-default 0 -cancel 1
$w add -text [::msgcat::mc "Send"] \
-command [list [namespace current]::edit_special_list_enddialog \
$connid $w $name]
$w add -text [::msgcat::mc "Cancel"] -command [list destroy $w]
set f [$w getframe]
set tools [frame $f.tools]
pack $tools -side bottom -fill x
set sw [ScrolledWindow $w.sw]
set lf [listbox $w.fields]
pack $sw -side top -expand yes -fill both -in $f -pady 1m -padx 1m
$sw setwidget $lf
bind $lf <3> [list [namespace current]::select_and_popup_menu %W %x %y]
set addentry [entry $tools.addentry]
set additem [button $tools.additem \
-text [::msgcat::mc "Add JID"] \
-command \
[list [namespace current]::add_special_jid_entry $lf $addentry]]
pack $additem -side right -padx 1m
pack $addentry -side left -padx 1m -fill x -expand yes
jlib::wrapper:splitxml $child tag vars isempty chdata children
fill_edit_special_lists $lf $children
#update idletasks
#$tools configure -width [winfo reqwidth $lf]
DropSite::register $lf -dropcmd [list [namespace current]::dropcmd] \
-droptypes {JID}
$w draw
}
proc privacy::edit_special_list_enddialog {connid w name} {
send_special_list $connid $name [$w.fields get 0 end]
destroy $w
}
proc privacy::send_special_list {connid name items} {
variable special_list
variable cboxes
if {![info exists special_list($connid,$name)]} {
set special_list($connid,$name) {}
}
set newitems {}
foreach jid $items {
if {[lsearch -exact $special_list($connid,$name) $jid] < 0} {
lappend newitems $jid
}
}
set olditems {}
foreach jid $special_list($connid,$name) {
if {[lsearch -exact $items $jid] < 0} {
lappend olditems $jid
}
}
switch -- $name {
ignore {
set children {}
set action deny
foreach jid $newitems {
send_custom_presence $jid unavailable -connection $connid
}
set postitems $olditems
}
invisible {
set children [list [jlib::wrapper:createtag presence-out]]
set action deny
foreach jid $newitems {
send_custom_presence $jid unavailable -connection $connid
}
set postitems $olditems
}
visible {
# TODO: invisibility
set children [list [jlib::wrapper:createtag presence-out]]
set action allow
set postitems $newitems
}
}
set items1 {}
set i 0
foreach item $items {
lappend items1 [jlib::wrapper:createtag item \
-vars [list type jid \
value $item \
action $action \
order $i] \
-subtags $children]
incr i
}
send_list_iq "$name-list" $items1 \
-command [list [namespace current]::update_tkabber_lists \
$connid $name $items $postitems] \
-connection $connid
}
proc privacy::update_tkabber_lists {connid name items postitems res child} {
global userstatus textstatus statusdesc
variable send_messages
variable special_list
variable cboxes
# Workaround for servers without privacy list support/push
if {$res == "OK"} {
set special_list($connid,$name) $items
}
array unset cboxes $connid,$name,*
foreach jid $special_list($connid,$name) {
set cboxes($connid,$name,$jid) 1
}
if {$res != "OK"} {
MessageDlg .privacy_list_err -aspect 50000 -icon error \
-message [format $send_messages($name) [error_to_string $child]] \
-type user -buttons ok -default 0 -cancel 0
return
}
switch -- $name {
ignore {
join_lists $connid "i-am-visible-list" {ignore-list invisible-list} \
{allow {}}
join_lists $connid "i-am-invisible-list" {ignore-list visible-list} \
[list deny [list [jlib::wrapper:createtag presence-out]]]
}
invisible {
join_lists $connid "i-am-visible-list" {ignore-list invisible-list} \
[list allow [list]]
}
visible {
join_lists $connid "i-am-invisible-list" {ignore-list visible-list} \
[list deny [list [jlib::wrapper:createtag presence-out]]]
}
}
# TODO: wait for iq reply before sending presence?
if {$userstatus == "invisible"} {
set status available
} else {
set status $userstatus
}
if {$textstatus == ""} {
set tstatus $statusdesc($status)
} else {
set tstatus $textstatus
}
foreach jid $postitems {
send_presence $status -to $jid -stat $tstatus -connection $connid
}
}
proc privacy::join_lists {connid name lists fallback args} {
variable litems
set items {}
set i 0
foreach ln $lists {
jlib::send_iq get \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name $ln]]]] \
-command [list [namespace current]::get_items] \
-connection $connid
vwait [namespace current]::litems
foreach item $litems {
jlib::wrapper:splitxml $item tag vars isempty chdata children
catch { array unset tmp }
array set tmp $vars
set tmp(order) $i
lappend items [jlib::wrapper:createtag $tag \
-vars [array get tmp] \
-subtags $children]
incr i
}
}
lappend items [jlib::wrapper:createtag item \
-vars [list action [lindex $fallback 0] order $i] \
-subtags [lindex $fallback 1]]
eval { send_list_iq $name $items -connection $connid } $args
}
proc privacy::get_items {res child} {
variable litems
if {$res != "OK"} {
set litems {}
return
}
jlib::wrapper:splitxml $child tag vars isempty chdata children
jlib::wrapper:splitxml [lindex $children 0] tag vars isempty chdata children
if {$tag == "list"} {
set litems $children
} else {
set litems {}
}
}
proc privacy::dropcmd {target source X Y op type data} {
add_special_jid $target [lindex $data 0]
}
proc privacy::select_and_popup_menu {f x y} {
set index [$f index @$x,$y]
$f selection clear 0 end
$f selection set $index
if {[winfo exists [set m .privacy_list_popupmenu]]} {
destroy $m
}
menu $m -tearoff 0
$m add command -label [::msgcat::mc "Remove from list"] \
-command [list $f delete $index]
tk_popup $m [winfo pointerx .] [winfo pointery .]
}
proc privacy::fill_edit_special_lists {f items} {
foreach item $items {
if {$item != ""} {
jlib::wrapper:splitxml $item tag vars isempty chdata children
if {$tag == "list"} {
set name [jlib::wrapper:getattr $vars name]
fill_edit_special_list $f $name $children
break
}
}
}
}
proc privacy::fill_edit_special_list {fr name items} {
set values {}
foreach item $items {
jlib::wrapper:splitxml $item tag vars isempty chdata children
set type [jlib::wrapper:getattr $vars type]
if {$type != "jid"} {
continue
}
lappend values [jlib::wrapper:getattr $vars value]
}
eval [list $fr insert end] [lrmdups [lsort -dictionary $values]]
}
proc privacy::add_special_jid_entry {f entry} {
set item [$entry get]
$entry delete 0 end
add_special_jid $f $item
}
proc privacy::add_special_jid {f item} {
set values [$f get 0 end]
lappend values $item
set values [lrmdups [lsort -dictionary $values]]
set index [lsearch -exact $values $item]
$f delete 0 end
eval [list $f insert end] $values
$f selection set $index
}
###############################################################################
#
# During connect try to activate "i-am-visible-list" privacy list
# If it's not found then create and activate it
# If activation or creation fails then terminate connect with error message
#
proc privacy::activate_privacy_list {depth connid} {
variable options
variable answer
if {!$options(activate_at_startup)} return
set_status [::msgcat::mc "Waiting for activating privacy list"]
debugmsg privacy "requested privacy list activation"
send_default_or_active_list "i-am-visible-list" active \
-command [list [namespace current]::get_answer $connid] \
-connection $connid
vwait [namespace current]::answer($connid,res)
switch -- $answer($connid,res) {
"OK" {
set_status [::msgcat::mc "Privacy list is activated"]
}
"ERR" {
switch -- [lindex $answer($connid,error) 1] {
feature-not-implemented {
# Privacy lists aren't implemented
# Give up
set_status \
[::msgcat::mc "Privacy lists are not implemented"]
}
service-unavailable -
recipient-unavailable {
# Privacy lists are unavailable
# Give up
set_status \
[::msgcat::mc "Privacy lists are unavailable"]
}
item-not-found {
if {$depth >= 1} {
# After successfully (!) created list it
# mustn't be possible
# TODO: error message
return
}
# There's no "i-am-visible-list" privacy list
# Create it
set_status \
[::msgcat::mc "Creating default privacy list"]
join_lists $connid "i-am-visible-list" \
{ignore-list invisible-list} \
[list allow [list]] \
-command [list [namespace current]::get_answer \
$connid]
vwait [namespace current]::answer($connid,res)
switch -- $answer($connid,res) {
"OK" {
# Activate newly created list
return [activate_privacy_list [expr {$depth + 1}] \
$connid]
}
"ERR" {
# Disconnect with error message
set_status \
[::msgcat::mc "Privacy list is not created"]
NonmodalMessageDlg .privacy_list_error$connid \
-aspect 50000 -icon error \
-title [::msgcat::mc "Privacy lists error"] \
-message [format \
[::msgcat::mc \
"Creating default privacy list failed:\
%s\n\nTry to reconnect. If problem\
persists, you may want to disable privacy\
list activation at start"] \
$answer($connid,errormsg)]
logout $connid
clear_answer $connid
# Break connected_hook
return stop
}
default {
# "DISCONNECT"
set_status \
[::msgcat::mc "Privacy list is not created"]
clear_answer $connid
# Break connected_hook
return stop
}
}
}
default {
# Something wrong
# Disconnect with error message
set_status \
[::msgcat::mc "Privacy list is not activated"]
NonmodalMessageDlg .privacy_list_error$connid \
-aspect 50000 -icon error \
-title [::msgcat::mc "Privacy lists error"] \
-message [format \
[::msgcat::mc \
"Activating privacy list failed:\
%s\n\nTry to reconnect. If problem\
persists, you may want to disable privacy\
list activation at start"] \
$answer($connid,errormsg)]
logout $connid
clear_answer $connid
# Break connected_hook
return stop
}
}
}
default {
# "DISCONNECT"
set_status [::msgcat::mc "Privacy list is not activated"]
clear_answer $connid
# Break connected_hook
return stop
}
}
clear_answer $connid
}
hook::add connected_hook \
[list [namespace current]::privacy::activate_privacy_list 0] 5
proc privacy::get_answer {connid res child} {
variable answer
debugmsg privacy "got privacy list answer $connid $res $child"
if {$res == "ERR"} {
set answer($connid,error) [error_type_condition $child]
set answer($connid,errormsg) [error_to_string $child]
}
set answer($connid,res) $res
}
proc privacy::clear_answer {connid} {
variable answer
array unset answer $connid,*
}
###############################################################################
proc privacy::create_menu {m connid jid} {
variable menu_messages
variable special_list
variable cboxes
set rjid [roster::find_jid $connid $jid]
if {$rjid == ""} {
set rjid [node_and_server_from_jid $jid]
}
set mm [menu $m.privacy_menu -tearoff 0]
foreach name {invisible ignore} {
if {![info exists special_list($connid,$name)]} {
set special_list($connid,$name) {}
}
if {[lsearch -exact $special_list($connid,$name) $rjid] >= 0} {
set cboxes($connid,$name,$rjid) 1
}
$mm add checkbutton -label $menu_messages($name) \
-variable [namespace current]::cboxes($connid,$name,$rjid) \
-command [list [namespace current]::add_to_special_list \
$connid $name $rjid]
}
$m add cascad -label [::msgcat::mc "Privacy rules"] -menu $mm
}
hook::add chat_create_user_menu_hook \
[namespace current]::privacy::create_menu 79
hook::add roster_service_popup_menu_hook \
[namespace current]::privacy::create_menu 79
hook::add roster_jid_popup_menu_hook \
[namespace current]::privacy::create_menu 79
###############################################################################
proc privacy::add_to_special_list {connid name jid} {
variable special_list
variable cboxes
if {![info exists special_list($connid,$name)]} {
set special_list($connid,$name) {}
}
set idx [lsearch -exact $special_list($connid,$name) $jid]
if {[info exists cboxes($connid,$name,$jid)] && \
($cboxes($connid,$name,$jid) && $idx < 0)} {
send_special_list $connid $name \
[linsert $special_list($connid,$name) 0 $jid]
return
}
if {![info exists cboxes($connid,$name,$jid)] || \
(!$cboxes($connid,$name,$jid) && $idx >= 0)} {
send_special_list $connid $name \
[lreplace $special_list($connid,$name) $idx $idx]
return
}
}
###############################################################################
proc privacy::process_iq {connid from child} {
if {$from != "" && \
!([string equal -nocase $from [jlib::connection_server $connid]] || \
[string equal -nocase $from [jlib::connection_bare_jid $connid]] || \
[string equal -nocase $from [jlib::connection_jid $connid]])} {
return {error cancel not-allowed}
}
jlib::wrapper:splitxml $child tag vars isempty chdata children
foreach ch $children {
jlib::wrapper:splitxml $ch tag1 vars1 isempty1 chdata1 children1
switch -- $tag1 {
list {
switch -- [jlib::wrapper:getattr $vars1 name] {
invisible-list {
reload_special_list $connid invisible
}
visible-list {
reload_special_list $connid visible
}
ignore-list {
reload_special_list $connid ignore
}
}
}
}
}
return {result {}}
}
iq::register_handler set query $::NS(privacy) \
[namespace current]::privacy::process_iq
###############################################################################
proc privacy::clear_list_vars {connid} {
variable special_list
variable cboxes
if {$connid == ""} {
catch { array unset special_list * }
catch { array unset cboxes * }
} else {
catch { array unset special_list $connid,* }
catch { array unset cboxes $connid,* }
}
}
hook::add disconnected_hook [namespace current]::privacy::clear_list_vars
###############################################################################
proc privacy::get_list_vars {connid} {
foreach name {invisible visible ignore} {
reload_special_list $connid $name
}
}
hook::add connected_hook [namespace current]::privacy::get_list_vars
###############################################################################
proc privacy::reload_special_list {connid name} {
jlib::send_iq get \
[jlib::wrapper:createtag query \
-vars [list xmlns $::NS(privacy)] \
-subtags [list [jlib::wrapper:createtag list \
-vars [list name "$name-list"]]]] \
-command [list [namespace current]::store_special_list $connid $name] \
-connection $connid
}
proc privacy::store_special_list {connid name res child} {
variable special_list
variable cboxes
set special_list($connid,$name) {}
array unset cboxes $connid,$name,*
if {$res != "OK"} return
jlib::wrapper:splitxml $child tag vars isempty chdata children
jlib::wrapper:splitxml [lindex $children 0] tag vars isempty chdata children
if {$tag != "list"} return
foreach item $children {
jlib::wrapper:splitxml $item tag1 vars1 isempty1 chdata1 children1
if {[jlib::wrapper:getattr $vars1 type] == "jid" && \
[set jid [jlib::wrapper:getattr $vars1 value]] != ""} {
lappend special_list($connid,$name) $jid
set cboxes($connid,$name,$jid) 1
}
}
}
###############################################################################
|