-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisupport-1.0.tm
102 lines (95 loc) · 3.18 KB
/
isupport-1.0.tm
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
package require hexchat
package provide dasbrain::isupport 1.0
namespace eval ::dasbrain::isupport {
if {![info exists support]} {
variable support [dict create]
}
if {![info exists hook_005]} {
variable hook_005 [::hexchat::hook_server 005 ::dasbrain::isupport::005]
}
namespace export isupport ircsplit
namespace ensemble create -command ::dasbrain::isupport::isupport -map {get iget isset isset}
}
proc ::dasbrain::isupport::ircsplit {str} {
set res {}
if {[string index $str 0] eq ":"} {
lappend res [string range $str 1 [set first [string first " " $str]]-1]
set str [string range $str 1+$first end]
} else {
lappend res {}
}
if {[set pos [string first " :" $str]] != -1} {
lappend res {*}[split [string range $str 0 ${pos}-1]]
lappend res [string range $str 2+$pos end]
} else {
lappend res {*}[split [string trimright $str]]
}
return $res
}
# :osmium.libera.chat 005 DasBrain WHOX FNC KNOCK SAFELIST ELIST=CTU CALLERID=g MONITOR=100 ETRACE CHANTYPES=# EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz :are supported by this server
proc ::dasbrain::isupport::005 {word word_eol} {
variable support
set toks [ircsplit [lindex $word_eol 1]]
set sid [::hexchat::prefs id]
foreach tok [lrange $toks 3 end-1] {
set eqidx [string first = $tok]
set value {}
if {$eqidx != -1} {
set value [string range $tok $eqidx+1 end]
set tok [string range $tok 0 $eqidx-1]
}
if {[string index $tok 0] eq {-}} {
dict unset support $sid [string range $tok 1 end]
} else {
dict set support $sid $tok $value
}
}
return $::hexchat::EAT_NONE
}
proc ::dasbrain::isupport::iget {args} {
variable support
return [dict get $support [::hexchat::prefs id] {*}$args]
}
proc ::dasbrain::isupport::isset {key} {
variable support
return [dict exists $support [::hexchat::prefs id] $key]
}
apply {{} {
variable support
set origctx [::hexchat::getcontext]
set cfields [::hexchat::list_fields channels]
set ctxidx [lsearch $cfields context]
set typeidx [lsearch $cfields type]
set flagsidx [lsearch $cfields flags]
set chanmodesidx [lsearch $cfields chanmodes]
set chantypesidx [lsearch $cfields chantypes]
set maxmodesidx [lsearch $cfields maxmodes]
set channelidx [lsearch $cfields channel]
set nickmodesidx [lsearch $cfields nickmodes]
set nickprefixidx [lsearch $cfields nickprefixes]
set ididx [lsearch $cfields id]
foreach chan [::hexchat::getlist channels] {
if {[lindex $chan $typeidx] == 1 && ([lindex $chan $flagsidx] & 8) != 0} {
::hexchat::setcontext [lindex $chan $ctxidx]
set defaults {
CHANMODES chanmodesidx
CHANTYPES chantypesidx
NETWORK channelidx
MODES maxmodesidx
}
set defaults [dict map {k v} $defaults {lindex $chan [set $v]}]
dict set defaults PREFIX ([lindex $chan $nickmodesidx])[lindex $chan $nickprefixidx]
if {([lindex $chan $flagsidx] & 16) != 0} {
dict set defaults WHOX {}
}
set id [lindex $chan $ididx]
dict for {k v} $defaults {
if {![dict exists $support $id $k]} {
dict set support $id $k $v
}
}
::hexchat::command "QUOTE VERSION"
}
}
::hexchat::setcontext $origctx
} ::dasbrain::isupport}