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
39588d33
Commit
39588d33
authored
14 years ago
by
cyan
Browse files
Options
Downloads
Patches
Plain Diff
* Just synchronizing in some updates.
parent
d74f85cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
exec/load/ircbot_commands.js
+46
-15
46 additions, 15 deletions
exec/load/ircbot_commands.js
exec/load/ircbot_functions.js
+13
-4
13 additions, 4 deletions
exec/load/ircbot_functions.js
with
59 additions
and
19 deletions
exec/load/ircbot_commands.js
+
46
−
15
View file @
39588d33
...
...
@@ -46,12 +46,13 @@ Bot_Commands["WHOIS"].command = function (target,onick,ouh,srv,lvl,cmd) {
var
usr
=
new
User
(
system
.
matchuser
(
cmd
[
1
]));
if
(
usr
.
number
>
0
)
{
srv
.
o
(
target
,
usr
.
alias
+
"
has an access level of
"
+
usr
.
security
.
level
+
"
.
"
);
+
usr
.
security
.
level
+
"
.
(UID:
"
+
usr
.
number
+
"
)
"
);
if
(
masks
[
usr
.
number
])
srv
.
o
(
target
,
"
Masks:
"
+
masks
[
usr
.
number
].
join
(
"
"
));
else
srv
.
o
(
target
,
usr
.
alias
+
"
has no IRC masks defined.
"
);
srv
.
o
(
target
,
usr
.
alias
+
"
last signed on
"
+
usr
.
laston_date
+
"
via
"
srv
.
o
(
target
,
usr
.
alias
+
"
last signed on
"
+
strftime
(
"
%m/%d/%Y %H:%M
"
,
usr
.
stats
.
laston_date
)
+
"
via
"
+
usr
.
connection
+
"
.
"
);
}
else
{
srv
.
o
(
target
,
"
I have no such user in my database.
"
);
...
...
@@ -306,15 +307,34 @@ Bot_Commands["IDENT"].command = function (target,onick,ouh,srv,lvl,cmd) {
Bot_Commands
[
"
EVAL
"
]
=
new
Bot_Command
(
0
,
true
,
false
);
Bot_Commands
[
"
EVAL
"
].
command
=
function
(
target
,
onick
,
ouh
,
srv
,
lvl
,
cmd
)
{
var
query
=
""
;
var
usr
=
new
User
(
system
.
matchuser
(
onick
));
if
(
usr
.
number
)
{
var
uid_str
=
format
(
"
%04u
"
,
usr
.
number
);
var
user_js
=
"
/home/bbs/data/user/
"
+
uid_str
+
"
.eval.js
"
;
if
(
file_exists
(
user_js
))
{
var
user_file
=
new
File
(
user_js
);
if
(
user_file
.
open
(
'
r+
'
))
{
var
str
;
while
((
str
=
user_file
.
readln
())
!=
null
)
{
query
+=
str
;
}
user_file
.
close
();
}
}
}
cmd
.
shift
();
var
query
=
cmd
.
join
(
"
"
);
query
+
=
cmd
.
join
(
"
"
);
js
.
branch_limit
=
1000
;
// protection
js
.
branch_counter
=
0
;
// reset
try
{
srv
.
o
(
target
,
strip_ctrl
(
js
.
eval
(
query
)));
}
catch
(
e
)
{
srv
.
o
(
target
,
"
ERROR:
"
+
e
);
}
var
result
=
js
.
eval
(
query
);
if
(
result
)
result
=
strip_ctrl
(
result
.
toString
().
slice
(
0
,
512
));
else
if
(
result
==
undefined
)
result
=
system
.
popen
(
"
tail -1 /home/bbs/log/ircbot/stderr
"
);
srv
.
o
(
target
,
result
);
js
.
branch_limit
=
0
;
// protection off
return
;
}
...
...
@@ -543,23 +563,20 @@ Bot_Commands["QUOTE"] = new Bot_Command(0,false,false);
Bot_Commands
[
"
QUOTE
"
].
command
=
function
(
target
,
onick
,
ouh
,
srv
,
lvl
,
cmd
)
{
if
(
cmd
[
1
])
{
cmd
.
shift
();
var
searched_quotes
=
new
Array
();
var
searched_quotes
=
new
Object
();
var
search_params
=
cmd
.
join
(
"
"
);
var
lucky_number
;
var
found_a_quote
=
false
;
while
(
searched_quotes
.
length
<
quotes
.
length
)
{
while
(
true_array_len
(
searched_quotes
)
<
quotes
.
length
)
{
lucky_number
=
random
(
quotes
.
length
);
if
(
!
searched_quotes
[
lucky_number
])
{
if
(
quotes
[
lucky_number
].
toUpperCase
().
match
(
search_params
.
toUpperCase
()))
{
srv
.
o
(
target
,
quotes
[
lucky_number
]);
found_a_quote
=
true
;
break
;
return
;
}
searched_quotes
[
lucky_number
]
=
true
;
}
}
if
(
!
found_a_quote
)
srv
.
o
(
target
,
"
Couldn't find a quote that matches your criteria.
"
);
srv
.
o
(
target
,
"
Couldn't find a quote that matches your criteria.
"
);
return
;
}
srv
.
o
(
target
,
quotes
[
random
(
quotes
.
length
)]);
...
...
@@ -593,3 +610,17 @@ Bot_Commands["EXEC"].command = function (target,onick,ouh,srv,lvl,cmd) {
return
;
}
Bot_Commands
[
"
SAY
"
]
=
new
Bot_Command
(
80
,
true
,
false
);
Bot_Commands
[
"
SAY
"
].
command
=
function
(
target
,
onick
,
ouh
,
srv
,
lvl
,
cmd
)
{
cmd
.
shift
();
var
say_target
=
cmd
.
shift
();
if
(
(
say_target
[
0
]
!=
"
#
"
)
&&
(
say_target
[
0
]
!=
"
&
"
)
&&
(
lvl
<
99
)
)
{
srv
.
o
(
target
,
"
Can only 'say' to a channel when access level < 99.
"
);
return
;
}
var
query
=
cmd
.
join
(
"
"
);
srv
.
o
(
say_target
,
strip_ctrl
(
query
));
return
;
}
This diff is collapsed.
Click to expand it.
exec/load/ircbot_functions.js
+
13
−
4
View file @
39588d33
...
...
@@ -193,8 +193,9 @@ function save_everything() {
for
(
m
in
masks
)
{
var
uid_str
=
format
(
"
%04u
"
,
m
);
var
us_file
=
new
File
(
"
/home/bbs/data/user/
"
+
uid_str
+
"
.ircbot.ini
"
);
if
(
us_file
.
open
(
"
r+
"
))
{
var
us_filename
=
"
/home/bbs/data/user/
"
+
uid_str
+
"
.ircbot.ini
"
;
var
us_file
=
new
File
(
us_filename
);
if
(
us_file
.
open
(
file_exists
(
us_filename
)
?
'
r+
'
:
'
w+
'
))
{
us_file
.
iniSetValue
(
null
,
"
masks
"
,
masks
[
m
].
join
(
"
,
"
));
us_file
.
close
();
}
...
...
@@ -241,7 +242,7 @@ function Server_Bot_Access(nick,uh) {
function
Server_writeout
(
str
)
{
log
(
"
-->
"
+
this
.
host
+
"
:
"
+
str
);
this
.
sock
.
write
(
str
+
"
\r\n
"
);
this
.
sock
.
write
(
str
.
slice
(
0
,
512
)
+
"
\r\n
"
);
}
function
Server_target_out
(
target
,
str
)
{
...
...
@@ -251,6 +252,14 @@ function Server_target_out(target,str) {
}
var
outstr
=
"
PRIVMSG
"
+
target
+
"
:
"
+
str
;
log
(
"
-->
"
+
this
.
host
+
"
:
"
+
outstr
);
this
.
sock
.
write
(
outstr
+
"
\r\n
"
);
this
.
sock
.
write
(
outstr
.
slice
(
0
,
512
)
+
"
\r\n
"
);
}
function
true_array_len
(
my_array
)
{
var
counter
=
0
;
for
(
i
in
my_array
)
{
counter
++
;
}
return
counter
;
}
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