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
1623eda4
Commit
1623eda4
authored
7 years ago
by
echicken
Browse files
Options
Downloads
Patches
Plain Diff
Preserve existing settings from modopts, if any.
Some error handling. Some prompting for settings.
parent
c03a17c9
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
mods/webv4-installer.js
+89
-36
89 additions, 36 deletions
mods/webv4-installer.js
with
89 additions
and
36 deletions
mods/webv4-installer.js
+
89
−
36
View file @
1623eda4
...
...
@@ -2,33 +2,62 @@ load('http.js');
function
download
(
url
,
target
)
{
const
http
=
new
HTTPRequest
();
const
zip
=
http
.
Get
(
url
);
try
{
const
zip
=
http
.
Get
(
url
);
}
catch
(
err
)
{
log
(
err
);
return
false
;
}
const
f
=
new
File
(
target
);
f
.
open
(
'
wb
'
);
f
.
write
(
zip
);
if
(
!
f
.
open
(
'
wb
'
)
)
return
false
;
if
(
!
f
.
write
(
zip
)
)
return
false
;
f
.
close
();
return
true
;
}
function
extract
(
file
,
target
)
{
if
(
!
file_exists
(
install_dir
))
mkdir
(
install_dir
);
system
.
exec
(
system
.
exec_dir
+
'
unzip -u
'
+
download_target
+
'
-d
'
+
install_dir
);
if
(
!
file_isdir
(
install_dir
))
{
if
(
!
mkdir
(
install_dir
))
return
false
;
}
return
system
.
exec
(
system
.
exec_dir
+
'
unzip -uqo
'
+
file
+
'
-d
'
+
target
)
==
0
;
}
function
update_sbbs_ini
(
root_directory
,
error_directory
)
{
file_backup
(
system
.
ctrl_dir
+
'
sbbs.ini
'
);
if
(
!
file_backup
(
system
.
ctrl_dir
+
'
sbbs.ini
'
)
)
return
false
;
const
f
=
new
File
(
system
.
ctrl_dir
+
'
sbbs.ini
'
);
f
.
open
(
'
r+
'
);
f
.
iniSetValue
(
'
Web
'
,
'
RootDirectory
'
,
root_directory
);
f
.
iniSetValue
(
'
Web
'
,
'
ErrorDirectory
'
,
error_directory
);
if
(
!
f
.
open
(
'
r+
'
)
)
return
false
;
if
(
!
f
.
iniSetValue
(
'
Web
'
,
'
RootDirectory
'
,
root_directory
)
)
return
false
;
if
(
!
f
.
iniSetValue
(
'
Web
'
,
'
ErrorDirectory
'
,
error_directory
)
)
return
false
;
f
.
close
();
return
true
;
}
function
update_modopts_ini
(
modopts
)
{
file_backup
(
system
.
ctrl_dir
+
'
modopts.ini
'
);
if
(
!
file_backup
(
system
.
ctrl_dir
+
'
modopts.ini
'
)
)
return
false
;
const
f
=
new
File
(
system
.
ctrl_dir
+
'
modopts.ini
'
);
f
.
open
(
'
r+
'
);
f
.
iniSetObject
(
'
web
'
,
modopts
);
if
(
!
f
.
open
(
'
r+
'
)
)
return
false
;
if
(
!
f
.
iniSetObject
(
'
web
'
,
modopts
)
)
return
false
;
f
.
close
();
return
true
;
}
function
get_modopts_ini
()
{
const
f
=
new
File
(
system
.
ctrl_dir
+
'
modopts.ini
'
);
if
(
!
f
.
open
(
'
r
'
))
return
false
;
const
ini
=
f
.
iniGetObject
(
'
web
'
);
f
.
close
();
return
ini
;
}
function
get_settings
(
modopts
)
{
writeln
(
'
---
'
);
var
i
;
i
=
prompt
(
'
Guest user alias [
'
+
modopts
.
guest
+
'
]
'
);
if
(
i
!=
''
)
modopts
.
guest
=
i
;
i
=
prompt
(
'
Path to ftelnet background .ans [
'
+
modopts
.
ftelnet_splash
+
'
]
'
);
if
(
i
!=
''
)
modopts
.
splash
=
i
;
writeln
(
'
---
'
);
return
modopts
;
}
const
zip_url
=
'
https://codeload.github.com/echicken/synchronet-web-v4/zip/master
'
;
...
...
@@ -37,27 +66,51 @@ const extract_dir = fullpath(system.exec_dir + '../web');
const
install_dir
=
fullpath
(
extract_dir
+
'
/synchronet-web-v4-master
'
);
const
root_directory
=
fullpath
(
system
.
exec_dir
+
'
../web/synchronet-web-v4-master/root
'
);
const
error_directory
=
fullpath
(
root_directory
+
'
/errors
'
);
const
modopts_web
=
{
guest
:
'
Guest
'
,
timeout
:
43200
,
inactivity
:
900
,
user_registration
:
true
,
minimum_password_length
:
6
,
maximum_telegram_length
:
800
,
web_directory
:
install_dir
,
ftelnet_splash
:
'
../text/synch.ans
'
,
keyboard_navigation
:
false
,
vote_functions
:
true
,
refresh_interval
:
60000
,
xtrn_blacklist
:
'
scfg,oneliner
'
,
layout_sidebar_off
:
false
,
layout_sidebar_left
:
false
,
layout_full_width
:
false
,
forum_extended_ascii
:
false
,
max_messages
:
0
};
download
(
zip_url
,
download_target
);
extract
(
download_target
,
extract_dir
);
update_sbbs_ini
(
root_directory
,
error_directory
);
update_modopts_ini
(
modopts_web
);
var
modopts_web
=
get_modopts_ini
();
if
(
!
modopts_web
)
{
modopts_web
=
{
guest
:
'
Guest
'
,
timeout
:
43200
,
inactivity
:
900
,
user_registration
:
true
,
minimum_password_length
:
6
,
maximum_telegram_length
:
800
,
web_directory
:
install_dir
,
ftelnet_splash
:
'
../text/synch.ans
'
,
keyboard_navigation
:
false
,
vote_functions
:
true
,
refresh_interval
:
60000
,
xtrn_blacklist
:
'
scfg,oneliner
'
,
layout_sidebar_off
:
false
,
layout_sidebar_left
:
false
,
layout_full_width
:
false
,
forum_extended_ascii
:
false
,
max_messages
:
0
};
}
writeln
(
'
Downloading
'
+
zip_url
+
'
to
'
+
download_target
+
'
...
'
);
if
(
!
download
(
zip_url
,
download_target
))
{
writeln
(
'
Download of
'
+
zip_url
+
'
failed. Exiting.
'
);
exit
();
}
writeln
(
'
Extracting
'
+
download_target
+
'
to
'
+
extract_dir
+
'
...
'
);
if
(
!
extract
(
download_target
,
extract_dir
))
{
writeln
(
'
Extraction of
'
+
download_target
+
'
failed. Exiting.
'
);
exit
();
}
writeln
(
'
Updating sbbs.ini ...
'
);
if
(
!
update_sbbs_ini
(
root_directory
,
error_directory
))
{
writeln
(
'
Failed to update sbbs.ini. Exiting.
'
);
exit
();
}
modopts_web
=
get_settings
(
modopts_web
);
writeln
(
'
Updating modopts.ini ...
'
);
if
(
!
update_modopts_ini
(
modopts_web
))
{
writeln
(
'
Failed to update modopts.ini. Exiting.
'
);
exit
();
}
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