Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
28ffe1d4
Commit
28ffe1d4
authored
3 years ago
by
Randy Sommerfeld
Browse files
Options
Downloads
Patches
Plain Diff
Clean up LIST
parent
88f2a13d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
exec/load/ircd/core.js
+27
-25
27 additions, 25 deletions
exec/load/ircd/core.js
exec/load/ircd/user.js
+4
-3
4 additions, 3 deletions
exec/load/ircd/user.js
with
31 additions
and
28 deletions
exec/load/ircd/core.js
+
27
−
25
View file @
28ffe1d4
...
...
@@ -657,29 +657,31 @@ function IRCClient_numeric321() {
this
.
numeric
(
"
321
"
,
"
Channel :Users Name
"
);
}
function
IRCClient_numeric322
(
chan
,
show_
modes
)
{
var
channel_name
;
function
IRCClient_numeric322
(
chan
,
modes
)
{
var
channel_name
,
tmp
;
var
disp_topic
=
""
;
var
is_onchan
=
this
.
channels
[
chan
.
nam
.
toUpperCase
()];
if
(
show_modes
)
{
var
chanm
=
chan
.
chanmode
()
disp_topic
+=
"
[
"
+
chanm
.
slice
(
0
,
chanm
.
length
-
1
)
+
"
]
"
if
(
modes
&
LIST_DISPLAY_CHAN_MODES
)
{
tmp
=
chan
.
chanmode
();
disp_topic
+=
format
(
"
[%s]
"
,
tmp
.
slice
(
0
,
tmp
.
length
-
1
));
}
else
if
(
modes
&
LIST_DISPLAY_CHAN_TS
)
{
disp_topic
+=
format
(
"
[%lu]
"
,
chan
.
created
);
}
if
((
chan
.
mode
&
CHANMODE_PRIVATE
)
&&
!
(
this
.
mode
&
USERMODE_OPER
)
&&
!
is_onchan
)
{
if
((
chan
.
mode
&
CHANMODE_PRIVATE
)
&&
!
(
this
.
mode
&
USERMODE_OPER
)
&&
!
is_onchan
)
{
channel_name
=
"
*
"
;
}
else
{
channel_name
=
chan
.
nam
;
if
(
disp_topic
)
disp_topic
+=
"
"
;
disp_topic
+=
chan
.
topic
;
}
if
(
!
(
chan
.
mode
&
CHANMODE_SECRET
)
||
(
this
.
mode
&
USERMODE_OPER
)
||
is_onchan
)
this
.
numeric
(
322
,
channel_name
+
"
"
+
true_array_len
(
chan
.
users
)
+
"
:
"
+
disp_topic
);
if
(
!
(
chan
.
mode
&
CHANMODE_SECRET
)
||
(
this
.
mode
&
USERMODE_OPER
)
||
is_onchan
)
{
this
.
numeric
(
322
,
format
(
"
%s %d :%s
"
,
channel_name
,
true_array_len
(
chan
.
users
),
disp_topic
));
}
}
function
IRCClient_numeric331
(
chan
)
{
...
...
@@ -2192,9 +2194,8 @@ function IRCClient_do_basic_list(mask) {
return
;
}
/* So, the user wants to go the hard way... */
function
IRCClient_do_complex_list
(
cmd
)
{
var
i
,
l
;
var
i
,
l
,
tmp
;
var
add
=
true
;
var
arg
=
0
;
var
list
=
new
List
();
...
...
@@ -2232,13 +2233,13 @@ function IRCClient_do_complex_list(cmd) {
if
(
cmd
[
arg
])
{
list
.
tweak_mode
(
LIST_MODES
,
true
);
if
(
!
add
)
{
var
tmp_mode
=
""
;
tmp
=
""
;
if
((
cmd
[
arg
][
0
]
!=
"
+
"
)
||
(
cmd
[
arg
][
0
]
!=
"
-
"
)
)
tmp
_mode
+=
"
+
"
;
tmp
_mode
+=
cmd
[
arg
].
replace
(
/
[
-
]
/g
,
"
"
);
tmp
_mode
=
tmp
_mode
.
replace
(
/
[
+
]
/g
,
"
-
"
);
list
.
Modes
=
tmp
_mode
.
replace
(
/
[
]
/g
,
"
+
"
);
tmp
+=
"
+
"
;
tmp
+=
cmd
[
arg
].
replace
(
/
[
-
]
/g
,
"
"
);
tmp
=
tmp
.
replace
(
/
[
+
]
/g
,
"
-
"
);
list
.
Modes
=
tmp
.
replace
(
/
[
]
/g
,
"
+
"
);
}
else
{
list
.
Modes
=
cmd
[
arg
];
}
...
...
@@ -2268,6 +2269,9 @@ function IRCClient_do_complex_list(cmd) {
case
"
M
"
:
list
.
tweak_mode
(
LIST_DISPLAY_CHAN_MODES
,
add
);
break
;
case
"
T
"
:
list
.
tweak_mode
(
LIST_DISPLAY_CHAN_TS
,
add
);
break
;
default
:
break
;
}
...
...
@@ -2409,10 +2413,7 @@ function IRCClient_do_complex_list(cmd) {
continue
;
}
if
(
list
.
add_flags
&
LIST_DISPLAY_CHAN_MODES
)
this
.
numeric322
(
Channels
[
i
],
true
);
else
this
.
numeric322
(
Channels
[
i
]);
this
.
numeric322
(
Channels
[
i
],
list
.
add_flags
);
}
}
...
...
@@ -2455,7 +2456,8 @@ function IRCClient_do_list_usage() {
this
.
numeric
(
334
,
"
:o <topc>: Match against channel's <topic>, wildcards allowed.
"
);
this
.
numeric
(
334
,
"
:p <num> : Chans with more or equal to (+) members, or (-) less than.
"
);
this
.
numeric
(
334
,
"
:t <time>: Only channels whose topics were created <time> mins ago.
"
);
this
.
numeric
(
334
,
"
:M : Show channel's mode in front of the list topic.
"
);
this
.
numeric
(
334
,
"
:M : Prefix topic with the current channel mode.
"
);
this
.
numeric
(
334
,
"
:T : Prefix topic with channel's creation date in Unix epoch.
"
);
/* No "end of" numeric for this. */
}
...
...
This diff is collapsed.
Click to expand it.
exec/load/ircd/user.js
+
4
−
3
View file @
28ffe1d4
...
...
@@ -116,6 +116,7 @@ const LIST_TOPIC =(1<<3); /* o */
const
LIST_PEOPLE
=
(
1
<<
4
);
/* p */
const
LIST_TOPICAGE
=
(
1
<<
5
);
/* t */
const
LIST_DISPLAY_CHAN_MODES
=
(
1
<<
6
);
/* M */
const
LIST_DISPLAY_CHAN_TS
=
(
1
<<
7
);
/* T */
function
IRC_User
(
id
)
{
this
.
local
=
true
;
/* are we a local socket? */
...
...
@@ -830,15 +831,15 @@ function User_Work(cmdline) {
this
.
do_links
(
p
[
0
]);
break
;
case
"
LIST
"
:
if
(
!
p
[
0
])
{
if
(
!
p
[
0
]
||
p
[
0
][
0
].
toUpperCase
()
==
"
A
"
)
{
this
.
do_basic_list
(
"
*
"
);
break
;
}
if
(
p
[
0
]
==
"
?
"
||
p
[
0
].
toUpperCase
()
==
"
H
ELP
"
)
{
if
(
p
[
0
]
[
0
]
==
"
?
"
||
p
[
0
]
[
0
]
.
toUpperCase
()
==
"
H
"
)
{
this
.
do_list_usage
();
break
;
}
if
(
!
p
[
1
]
&&
(
p
[
0
][
0
]
!=
"
+
"
)
&&
(
p
[
0
][
0
]
!=
"
-
"
)
)
{
if
(
p
[
0
][
0
]
!=
"
+
"
&&
p
[
0
][
0
]
!=
"
-
"
)
{
this
.
do_basic_list
(
p
[
0
]);
break
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment