#!/bin/bash genRandStr(){ cat /dev/urandom | tr -dc [:alnum:] | head -c $1 } #Set some vars _database_password_=root _judger_socket_port_=2333 _judger_socket_password_=$(genRandStr 32) _main_judger_password_=$(genRandStr 32) _svn_ourroot_password_=$(genRandStr 32) _svn_certroot_password_=$(genRandStr 32) getAptPackage(){ echo -e "\n\n==> Getting environment packages" #Set MySQL root password export DEBIAN_FRONTEND=noninteractive debconf-set-selections <<< "mysql-server mysql-server/root_password password $_database_password_" && debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $_database_password_" #Update apt sources and install echo "deb http://ppa.launchpad.net/pinepain/libv8/ubuntu artful main" | tee -a /etc/apt/sources.list.d/pinepain-libv8.list && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 60C60AA4 apt-get update && apt-get install -y vim ntp zip unzip curl wget subversion apache2 libapache2-mod-xsendfile libapache2-mod-php php php-dev php-pear php-zip php-mysql php-mbstring mysql-server cmake fp-compiler re2c libv8-6.6-dev libyaml-dev python python3 python-requests #Install PHP extensions cp -a /opt/libv8*/* /usr && echo -e "\n\n" | pecl install v8js yaml } getOracleJDK(){ echo -e "\n\n==> Getting JDK runtime files" #Add judger user useradd -m local_main_judger && usermod -a -G www-data local_main_judger #Set Oracle JDK do not track usage mkdir -p /etc/oracle/java/ && echo 'com.oracle.usagetracker.track.last.usage=false' >/etc/oracle/java/usagetracker.properties #Get newest jdk dist file JDK_MIRROR_LINK=https://build.funtoo.org/distfiles/oracle-java/ #Deprecated #JDK_CNMIRROR_LINK=http://funtoo.neu.edu.cn/funtoo/distfiles/oracle-java/ curl -s ${JDK_MIRROR_LINK} | grep -oP '>jdk-[7,8].*-linux-x64.tar' | sed -e 's/[\",>]//g' -e 's/-linux-x64.tar//g' >jdkdist.list wget ${JDK_MIRROR_LINK}$(sed -n '1p' jdkdist.list)-linux-x64.tar.gz && wget ${JDK_MIRROR_LINK}$(sed -n '$p' jdkdist.list)-linux-x64.tar.gz #Change jdk and other environment version to faq.php sed -i -e 's/Ubuntu Linux 14.04 LTS x64/Ubuntu Linux 18.04 LTS x64/' \ -e 's/g++ 4.8.4/g++ 7.3.0/' -e 's/gcc 4.8.4/gcc 7.3.0/' -e 's/fpc 2.6.2/fpc 3.0.4/' -e 's/Python 2.7和3.4/Python 2.7和3.6/' \ -e "s/jdk-7u76/$(sed -n '1p' jdkdist.list)/g" -e "s/jdk-8u31/$(sed -n '$p' jdkdist.list)/g" ../../uoj/1/app/controllers/faq.php #Move jdk file to judge user root chown local_main_judger jdkdist.list jdk-*-linux-x64.tar.gz mv jdkdist.list jdk-*-linux-x64.tar.gz /home/local_main_judger/ } setLAMPConf(){ echo -e "\n\n==> Setting LAMP configs" #Set Apache UOJ site conf cat >/etc/apache2/sites-available/000-uoj.conf < #ServerName local_uoj.ac ServerAdmin opensource@uoj.ac DocumentRoot /var/www/uoj #LogLevel info ssl:warn ErrorLog \${APACHE_LOG_DIR}/uoj_error.log CustomLog \${APACHE_LOG_DIR}/uoj_access.log combined XSendFile On XSendFilePath /var/uoj_data XSendFilePath /var/www/uoj/app/storage XSendFilePath /home/local_main_judger/judge_client/uoj_judger/include 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 #Set MySQL user directory and connection config usermod -d /var/lib/mysql/ mysql cat >/etc/mysql/mysql.conf.d/uoj_mysqld.cnf < Setting SVN server" #Make SVN work dir mkdir /var/svn && svnserve -d -r /var/svn mkdir /var/svn/problem && chown www-data /var/svn/problem -R svnadmin create /var/svn/uoj && svnadmin create /var/svn/judge_client #Set SVN server config file and password db sed -i -e 's/# store-plaintext-passwords = no/store-plaintext-passwords = yes/g' /etc/subversion/servers sed -i -e 's/# anon-access/anon-access/g' -e 's/# auth-access/auth-access/g' -e 's/# password-db/password-db/g' /var/svn/uoj/conf/svnserve.conf rm -r /var/svn/judge_client/conf/passwd && ln -s /var/svn/uoj/conf/passwd /var/svn/judge_client/conf/passwd cat /var/svn/uoj/conf/svnserve.conf >/var/svn/judge_client/conf/svnserve.conf cat >/var/svn/uoj/conf/passwd </var/svn/uoj/hooks/post-commit </var/svn/judge_client/hooks/post-commit </var/svn/problem/new_problem.sh <\$path/conf/svnserve.conf <\$path/conf/passwd <\$path/hooks/post-commit </var/svn/problem/post-commit.sh < Setting web files" #Commit web source file svn co svn://127.0.0.1/uoj --username root --password $_svn_certroot_password_ mv ../../uoj/1 uoj/1 && cd uoj svn add 1 && svn ci -m "Installtion commit" --username root --password $_svn_certroot_password_ cd .. && rm uoj /var/www/uoj -r #Set webroot path ln -s /var/svn/uoj/cur/uoj/1 /var/www/uoj chown www-data /var/www/uoj/app/storage -R #Set web config file php -a < Setting judge_client files" #Commit judge_client source file svn co svn://127.0.0.1/judge_client --username root --password $_svn_certroot_password_ mv ../../judge_client/1 judge_client/1 && cd judge_client svn add 1 && svn ci -m "Installation commit" --username root --password $_svn_certroot_password_ cd .. && rm judge_client -r #Set uoj_data path mkdir /var/uoj_data chown www-data /var/uoj_data -R && chgrp www-data /var/uoj_data -R #Compile judge_client and set runtime su local_main_judger <uoj_judger/include/uoj_work_path.h </home/local_main_judger/judge_client/.conf.json < Ending progress and start service" #Using cli upgrade to latest php /var/www/uoj/app/cli.php upgrade:latest #Start services service ntp restart service mysql restart service apache2 restart su local_main_judger -c '~/judge_client/judge_client start' #Set SetupDone flag file echo 'Congratulations!' > /var/svn/.UOJSetupDone echo -e "\n\n***Installation complete. Enjoy!***" } if [ $# -le 0 ] ;then echo 'Installing UOJ System bundle...' getAptPackage getOracleJDK setLAMPConf setSVNServe setWebConf setJudgeConf endUpProgress fi while [ $# -gt 0 ]; do case "$1" in -e) ;& --environment) echo 'Setting UOJ System bundle environment...' getAptPackage getOracleJDK setLAMPConf ;; -c) ;& --config) echo 'Configuring UOJ System bundle...' setSVNServe setWebConf setJudgeConf endUpProgress ;; -?) ;& --*) echo "Illegal option $1" ;; esac shift $(( $#>0?1:0 )) done