mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-06 02:48:41 +00:00
116 lines
4.2 KiB
Bash
116 lines
4.2 KiB
Bash
|
#!/bin/bash
|
||
|
genRandStr(){
|
||
|
cat /dev/urandom | tr -dc [:alnum:] | head -c $1
|
||
|
}
|
||
|
#Set some vars
|
||
|
_database_host_=uoj-db
|
||
|
_database_password_=root
|
||
|
_judger_socket_port_=2333
|
||
|
_judger_socket_password_=_judger_socket_password_
|
||
|
|
||
|
getAptPackage(){
|
||
|
printf "\n\n==> Getting environment packages\n"
|
||
|
#Update apt sources and install
|
||
|
export DEBIAN_FRONTEND=noninteractive
|
||
|
dpkg -s gnupg 2>/dev/null || (apt-get update && apt-get install -y gnupg)
|
||
|
echo "deb http://ppa.launchpad.net/stesie/libv8/ubuntu bionic main" | tee /etc/apt/sources.list.d/stesie-libv8.list && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D858A0DF
|
||
|
apt-get update && apt-get install -y vim ntp zip unzip curl wget apache2 libapache2-mod-xsendfile libapache2-mod-php php php-dev php-pear php-zip php-mysql php-mbstring g++ cmake re2c libv8-7.5-dev libyaml-dev
|
||
|
#Install PHP extensions
|
||
|
printf "/opt/libv8-7.5\n\n" | pecl install v8js yaml
|
||
|
}
|
||
|
|
||
|
setLAMPConf(){
|
||
|
printf "\n\n==> Setting LAMP configs\n"
|
||
|
#Set Apache UOJ site conf
|
||
|
cat >/etc/apache2/sites-available/000-uoj.conf <<UOJEOF
|
||
|
<VirtualHost *:80>
|
||
|
#ServerName local_uoj.ac
|
||
|
ServerAdmin opensource@uoj.ac
|
||
|
DocumentRoot /var/www/uoj
|
||
|
|
||
|
SetEnvIf Request_URI "^/judge/.*$" judgelog
|
||
|
#LogLevel info ssl:warn
|
||
|
ErrorLog \${APACHE_LOG_DIR}/uoj_error.log
|
||
|
CustomLog \${APACHE_LOG_DIR}/uoj_judge.log common env=judgelog
|
||
|
CustomLog \${APACHE_LOG_DIR}/uoj_access.log combined env=!judgelog
|
||
|
|
||
|
XSendFile On
|
||
|
XSendFilePath /var/uoj_data
|
||
|
XSendFilePath /var/www/uoj/app/storage
|
||
|
XSendFilePath /opt/uoj/judger/uoj_judger/include
|
||
|
</VirtualHost>
|
||
|
UOJEOF
|
||
|
#Enable modules and make UOJ site conf enabled
|
||
|
a2ensite 000-uoj.conf && a2dissite 000-default.conf
|
||
|
a2enmod rewrite headers && sed -i -e '172s/AllowOverride None/AllowOverride All/' /etc/apache2/apache2.conf
|
||
|
#Create UOJ session save dir and make PHP extensions available
|
||
|
mkdir --mode=733 /var/lib/php/uoj_sessions && chmod +t /var/lib/php/uoj_sessions
|
||
|
sed -i -e '865a\extension=v8js.so\nextension=yaml.so' /etc/php/7.2/apache2/php.ini
|
||
|
}
|
||
|
|
||
|
setWebConf(){
|
||
|
printf "\n\n==> Setting web files\n"
|
||
|
#Set webroot path
|
||
|
ln -sf /opt/uoj/web /var/www/uoj
|
||
|
chown -R www-data /var/www/uoj/app/storage
|
||
|
#Set web config file
|
||
|
php -a <<UOJEOF
|
||
|
\$config = include '/var/www/uoj/app/.default-config.php';
|
||
|
\$config['database']['host']='$_database_host_';
|
||
|
\$config['database']['password']='$_database_password_';
|
||
|
\$config['judger']['socket']['port']='$_judger_socket_port_';
|
||
|
file_put_contents('/var/www/uoj/app/.config.php', "<?php\nreturn ".str_replace('\'_httpHost_\'','UOJContext::httpHost()',var_export(\$config, true)).";\n");
|
||
|
UOJEOF
|
||
|
#Prepare local sandbox
|
||
|
cd ../../judger/uoj_judger
|
||
|
cat >include/uoj_work_path.h <<UOJEOF
|
||
|
#define UOJ_WORK_PATH "/opt/uoj/judger/uoj_judger"
|
||
|
#define UOJ_JUDGER_BASESYSTEM_UBUNTU1804
|
||
|
#define UOJ_JUDGER_PYTHON3_VERSION "3.6"
|
||
|
#define UOJ_JUDGER_FPC_VERSION "3.0.4"
|
||
|
UOJEOF
|
||
|
make -j$(($(nproc) + 1)) && cd ../../install/web
|
||
|
}
|
||
|
|
||
|
initProgress(){
|
||
|
printf "\n\n==> Doing initial config and start service\n"
|
||
|
#Set uoj_data path
|
||
|
mkdir -p /var/uoj_data/upload
|
||
|
chown -R www-data:www-data /var/uoj_data
|
||
|
#Replace password placeholders
|
||
|
sed -i -e "s/salt0/$(genRandStr 32)/g" -e "s/salt1/$(genRandStr 16)/g" -e "s/salt2/$(genRandStr 16)/g" -e "s/salt3/$(genRandStr 16)/g" -e "s/_judger_socket_password_/$_judger_socket_password_/g" /var/www/uoj/app/.config.php
|
||
|
#Using cli upgrade to latest
|
||
|
php /var/www/uoj/app/cli.php upgrade:latest
|
||
|
#Start services
|
||
|
service ntp restart
|
||
|
service apache2 restart
|
||
|
#Touch SetupDone flag file
|
||
|
touch /var/uoj_data/.UOJSetupDone
|
||
|
printf "\n\n***Installation complete. Enjoy!***\n"
|
||
|
}
|
||
|
|
||
|
prepProgress(){
|
||
|
getAptPackage;setLAMPConf;setWebConf
|
||
|
}
|
||
|
|
||
|
if [ $# -le 0 ]; then
|
||
|
echo 'Installing UOJ System web...'
|
||
|
prepProgress;initProgress
|
||
|
fi
|
||
|
while [ $# -gt 0 ]; do
|
||
|
case "$1" in
|
||
|
-p | --prep)
|
||
|
echo 'Preparing UOJ System web environment...'
|
||
|
prepProgress
|
||
|
;;
|
||
|
-i | --init)
|
||
|
echo 'Initing UOJ System web...'
|
||
|
initProgress
|
||
|
;;
|
||
|
-? | --*)
|
||
|
echo "Illegal option $1"
|
||
|
;;
|
||
|
esac
|
||
|
shift $(( $#>0?1:0 ))
|
||
|
done
|