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
df232466
Commit
df232466
authored
2 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Updated to use cfglib.js for SBBS v3.20+ compatibility
Fixes issue
#473
parent
72d0251f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/install-xtrn.js
+17
-17
17 additions, 17 deletions
exec/install-xtrn.js
with
17 additions
and
17 deletions
exec/install-xtrn.js
+
17
−
17
View file @
df232466
...
...
@@ -2,7 +2,7 @@
// This script parses a .ini file (default filename is install-xtrn.ini)
// and installs the external programs defined within into the Synchronet BBS
// configuration file: ctrl/xtrn.
cnf
. The programs defined within this file
// configuration file: ctrl/xtrn.
ini
. The programs defined within this file
// can by online programs (a.k.a. Doors), editors, or events.
//
// This script is intended for use by sysops using JSexec, for example:
...
...
@@ -96,7 +96,7 @@
"
use strict
"
;
const
REVISION
=
"
3.
18c
"
;
const
REVISION
=
"
3.
20a
"
;
const
ini_fname
=
"
install-xtrn.ini
"
;
load
(
"
sbbsdefs.js
"
);
...
...
@@ -114,7 +114,7 @@ function aborted()
return
false
;
}
function
install_xtrn_item
(
c
n
f
,
type
,
name
,
desc
,
item
,
cats
)
function
install_xtrn_item
(
cf
g
,
type
,
name
,
desc
,
item
,
cats
)
{
if
(
!
item
.
code
)
return
false
;
...
...
@@ -137,14 +137,14 @@ function install_xtrn_item(cnf, type, name, desc, item, cats)
return
-
1
;
}
if
(
find_code
(
c
n
f
[
type
],
item
.
code
)
>=
0
)
{
if
(
find_code
(
cf
g
[
type
],
item
.
code
)
>=
0
)
{
if
(
options
.
auto
||
deny
(
desc
+
"
(
"
+
item
.
code
+
"
) already exists, continue
"
))
return
false
;
}
while
(
!
item
.
code
&&
!
aborted
()
||
(
find_code
(
c
n
f
[
type
],
item
.
code
)
>=
0
||
(
find_code
(
cf
g
[
type
],
item
.
code
)
>=
0
&&
print
(
desc
+
"
Internal Code (
"
+
item
.
code
+
"
) already exists!
"
)))
item
.
code
=
js
.
global
.
prompt
(
desc
+
"
Internal code
"
);
...
...
@@ -166,7 +166,7 @@ function install_xtrn_item(cnf, type, name, desc, item, cats)
return
false
;
}
if
(
type
==
"
xtrn
"
)
{
if
(
type
==
"
prog
"
)
{
if
(
!
xtrn_area
.
sec_list
.
length
)
return
"
No external program sections have been created
"
;
...
...
@@ -207,9 +207,9 @@ function install_xtrn_item(cnf, type, name, desc, item, cats)
}
catch
(
e
)
{
return
e
;
}
c
n
f
[
type
].
push
(
item
);
cf
g
[
type
].
push
(
item
);
if
(
options
.
debug
)
print
(
JSON
.
stringify
(
c
n
f
[
type
],
null
,
4
));
print
(
JSON
.
stringify
(
cf
g
[
type
],
null
,
4
));
print
(
desc
+
"
(
"
+
item
.
name
+
"
) installed successfully
"
);
return
true
;
...
...
@@ -321,10 +321,10 @@ function install(ini_fname)
if
(
subs
.
length
)
print
(
"
Sub-categories:
"
+
subs
.
join
(
"
,
"
));
var
c
n
flib
=
load
({},
"
c
n
flib.js
"
);
var
xtrn_c
n
f
=
c
n
flib
.
read
(
system
.
ctrl_dir
+
"
xtrn.
cnf
"
);
if
(
!
xtrn_c
n
f
)
return
"
Failed to read
"
+
system
.
ctrl_dir
+
"
xtrn.
cnf
"
;
var
cf
g
lib
=
load
({},
"
cf
g
lib.js
"
);
var
xtrn_cf
g
=
cf
g
lib
.
read
(
system
.
ctrl_dir
+
"
xtrn.
ini
"
);
if
(
!
xtrn_cf
g
)
return
"
Failed to read
"
+
system
.
ctrl_dir
+
"
xtrn.
ini
"
;
var
startup_dir
=
ini_fname
.
substr
(
0
,
Math
.
max
(
ini_fname
.
lastIndexOf
(
"
/
"
),
ini_fname
.
lastIndexOf
(
"
\\
"
),
0
));
startup_dir
=
relpath
.
get
(
system
.
ctrl_dir
,
startup_dir
);
...
...
@@ -338,9 +338,9 @@ function install(ini_fname)
return
result
;
const
types
=
{
prog
:
{
desc
:
"
External Program
"
,
struct
:
"
xtrn
"
},
prog
:
{
desc
:
"
External Program
"
,
struct
:
"
prog
"
},
event
:
{
desc
:
"
External Timed Event
"
,
struct
:
"
event
"
},
editor
:
{
desc
:
"
External Editor
"
,
struct
:
"
x
edit
"
}
editor
:
{
desc
:
"
External Editor
"
,
struct
:
"
edit
or
"
}
};
var
done
=
false
;
...
...
@@ -350,7 +350,7 @@ function install(ini_fname)
var
item
=
list
[
i
];
if
(
item
.
startup_dir
===
undefined
)
item
.
startup_dir
=
startup_dir
;
var
result
=
install_xtrn_item
(
xtrn_c
n
f
,
types
[
t
].
struct
,
name
,
types
[
t
].
desc
,
item
,
cats
);
var
result
=
install_xtrn_item
(
xtrn_cf
g
,
types
[
t
].
struct
,
name
,
types
[
t
].
desc
,
item
,
cats
);
if
(
typeof
result
!==
'
boolean
'
)
return
result
;
if
(
result
===
true
)
...
...
@@ -459,8 +459,8 @@ function install(ini_fname)
}
if
(
installed
)
{
if
(
!
options
.
debug
&&
!
c
n
flib
.
write
(
system
.
ctrl_dir
+
"
xtrn.
cnf
"
,
undefined
,
xtrn_c
n
f
))
return
"
Failed to write
"
+
system
.
ctrl_dir
+
"
xtrn.
cnf
"
;
if
(
!
options
.
debug
&&
!
cf
g
lib
.
write
(
system
.
ctrl_dir
+
"
xtrn.
ini
"
,
undefined
,
xtrn_cf
g
))
return
"
Failed to write
"
+
system
.
ctrl_dir
+
"
xtrn.
ini
"
;
print
(
"
Installed
"
+
installed
+
"
items from
"
+
ini_fname
+
"
successfully
"
);
}
...
...
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