/usr/lib/sbnc/scripts/partyline.tcl is in sbnc-tcl 1.2-25.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # shroudBNC - an object-oriented framework for IRC
# Copyright (C) 2005 Gunnar Beutner
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
internalbind client sbnc:partyline
internalbind attach sbnc:partyattach
internalbind detach sbnc:partydetach
internalbind usrdelete sbnc:partysync
internalbind server sbnc:partychantypes 005
set ::partyline [list &partyline &test]
proc sbnc:partyline_add {channel} {
if {[lsearch -exact $::partyline $channel] == -1} {
lappend ::partyline $channel
}
if {![info exists ::partytopic($channel)] || ![info exists ::partyts($channel)] || ![info exists ::partywho($channel)]} {
set ::partytopic($channel) "shroudBNC Partyline"
set ::partyts($channel) [unixtime]
set ::partywho($channel) "-sBNC"
}
}
foreach chan $::partyline {
sbnc:partyline_add $chan
}
# work around some weird "feature" in mirc, which sends a /part for channels when the channel's prefix isn't in CHANTYPES
proc sbnc:partychantypes {client params} {
if {[lindex $params 1] != 5} { return }
set toks [lrange $params 3 end-1]
set i 0
while {$i < [llength $toks]} {
set tok [split [lindex $toks $i] "="]
if {[string equal -nocase [lindex $tok 0] "CHANTYPES"]} {
if {[string first "&" [lindex $tok 1]] == -1} {
set chantypes "[lindex $tok 1]&"
setisupport CHANTYPES $chantypes
putclient ":[join [lrange $params 0 2]] [join [lrange [lreplace $params $i $i "CHANTYPES=$chantypes"] 3 end-1]] :[lindex $params end]"
haltoutput
}
}
incr i
}
}
proc sbnc:partyline {client parameters} {
global botnick botname server partyline partytopic partyts partywho
set thisctx [getctx 1]
if {[lsearch -exact [string tolower $partyline] [string tolower [lindex $parameters 1]]] == -1} { return }
haltoutput
set cmd [lindex $parameters 0]
set chan [string tolower [lindex $parameters 1]]
set serv [lindex [split $server ":"] 0]
set chans [split [string tolower [getbncuser $client tag partyline]] ","]
if {[string equal -nocase "join" $cmd]} {
if {[lsearch $chans $chan] == -1} {
lappend chans $chan
setbncuser $client tag partyline [join $chans ","]
set oldctx [getctx 1]
setctx [getctx]
putclient ":$botname JOIN $chan"
setctx $oldctx
sbnc:partyline $client "NAMES $chan"
sbnc:partyline $client "TOPIC $chan"
sbnc:bcpartybutone $thisctx ":\$$client!$client@sbnc JOIN $chan"
}
}
if {[string equal -nocase "part" $cmd]} {
set idx [lsearch $chans $chan]
if {$idx != -1} {
setbncuser $client tag partyline [join [lreplace $chans $idx $idx] ","]
set oldctx [getctx]
setctx [getctx 0]
putclient ":$botname PART $chan"
setctx $oldctx
sbnc:bcpartybutone $thisctx ":\$$client!$client@sbnc PART $chan"
}
}
if {[string equal -nocase "names" $cmd]} {
set idents ""
foreach user [bncuserlist] {
if {[lsearch [split [string tolower [getbncuser $user tag partyline]] ","] $chan] != -1 && [getbncuser $user hasclient]} {
lappend idents "\$$user"
}
}
putclient ":$serv 353 $botnick @ $chan :[join $idents]"
putclient ":$serv 366 $botnick $chan :End of /NAMES list."
}
if {[string equal -nocase "mode" $cmd]} {
if {[llength $parameters] < 3} {
putclient ":$serv 324 $botnick $chan +n"
putclient ":$serv 329 $botnick $chan 0"
} elseif {[lindex $parameters 2] == "+b"} {
putclient ":$serv 368 $botnick $chan :End of Channel Ban List"
} else {
putclient ":$serv 482 $botnick $chan :You can't change modes on $chan"
}
}
if {[string equal -nocase "topic" $cmd]} {
if {[llength $parameters] < 3} {
putclient ":$serv 332 $botnick $chan :$partytopic($chan)"
putclient ":$serv 333 $botnick $chan $partywho($chan) $partyts($chan)"
} else {
set partytopic($chan) [lindex $parameters 2]
set partyts($chan) [unixtime]
set partywho($chan) "\$$client"
sbnc:bcparty ":\$$client!$client@sbnc TOPIC $chan :$partytopic($chan)"
}
}
if {[string equal -nocase "kick" $cmd]} {
if {[llength $parameters] < 3} {
putclient ":$serv 461 $botnick KICK :Not enough parameters"
} else {
putclient ":$serv 482 $botnick $chan :You can't kick users from $chan"
}
}
if {[string equal -nocase "privmsg" $cmd]} {
if {[llength $parameters] < 3} {
putclient ":$serv 461 $botnick PRIVMSG :Not enough parameters"
} else {
sbnc:bcpartybutone $thisctx ":\$$client!$client@sbnc PRIVMSG $chan :[lindex $parameters 2]"
}
}
}
proc sbnc:bcparty {text} {
set chan [lindex [split $text] 2]
foreach user [bncuserlist] {
set chans [split [string tolower [getbncuser $user tag partyline]] ","]
if {[lsearch $chans $chan] != -1} {
setctx $user
putclient "$text"
}
}
}
proc sbnc:bcpartybutone {clientctx text} {
set chan [string tolower [lindex [split $text] 2]]
setctx $clientctx
set clientname [getctx]
foreach user [bncuserlist] {
set chans [split [string tolower [getbncuser $user tag partyline]] ","]
if {[lsearch $chans $chan] == -1} {
continue
}
if {[string equal -nocase $clientname $user]} {
foreach session [getbncuser $clientname sessions] {
if {![string equal -nocase $clientctx $session]} {
setctx $session
putclient $text
}
}
} else {
setctx $user
putclient "$text"
}
}
}
proc sbnc:partyattach {client} {
global botnick botname partyline
set chans [split [string tolower [getbncuser $client tag partyline]] ","]
set thisctx [getctx 1]
foreach chan $partyline {
if {[lsearch $chans [string tolower $chan]] != -1} {
setctx $thisctx
putclient ":$botname JOIN $chan"
sbnc:partyline $client "NAMES $chan"
sbnc:partyline $client "TOPIC $chan"
if {[getbncuser $client clientcount] == 1} {
sbnc:bcpartybutone $thisctx ":\$$client!$client@sbnc JOIN $chan"
}
}
}
}
proc sbnc:partydetach {client} {
global partyline
set chans [split [string tolower [getbncuser $client tag partyline]] ","]
set thisctx [getctx 1]
foreach chan $partyline {
if {[lsearch $chans $chan] != -1 && [getbncuser $client clientcount] == 0} {
sbnc:bcpartybutone $thisctx ":\$$client!$client@sbnc PART $chan :Leaving"
}
}
}
proc sbnc:partysync {client} {
global partyline
set chans [split [string tolower [getbncuser $client tag partyline]] ","]
foreach chan $partyline {
if {[lsearch $chans [string tolower $chan]] != -1} {
sbnc:bcparty ":\$$client!$client@sbnc PART $chan :Removing user"
}
}
}
|