2016-07-03 17:13:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
|
|
|
# Gogs functions
|
|
|
|
#
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2016 Bob Mottram <bob@robotics.uk.to>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-10-15 19:37:29 +02:00
|
|
|
VARIANTS='developer'
|
2016-07-06 17:47:55 +02:00
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
GOGS_USERNAME='gogs'
|
|
|
|
GOGS_VERSION='0.9.97'
|
|
|
|
|
2016-07-03 17:13:34 +02:00
|
|
|
GIT_DOMAIN_NAME=
|
|
|
|
GIT_CODE=
|
|
|
|
GIT_ONION_PORT=8090
|
|
|
|
GIT_ADMIN_PASSWORD=
|
2016-09-28 17:11:31 +02:00
|
|
|
GOGS_BIN=
|
2016-09-24 17:48:26 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
gogs_variables=(ONION_ONLY
|
|
|
|
GOGS_COMMIT
|
|
|
|
GIT_ADMIN_PASSWORD
|
|
|
|
GIT_DOMAIN_NAME
|
|
|
|
GIT_CODE
|
|
|
|
GIT_ONION_PORT
|
|
|
|
MY_USERNAME
|
|
|
|
GOGS_VERSION
|
|
|
|
DDNS_PROVIDER
|
|
|
|
ARCHITECTURE)
|
|
|
|
|
2016-09-30 12:34:39 +02:00
|
|
|
function install_interactive_gogs {
|
2016-09-30 20:22:10 +02:00
|
|
|
if [[ $ONION_ONLY != "no" ]]; then
|
|
|
|
GIT_DOMAIN_NAME='git.local'
|
2016-10-15 19:35:04 +02:00
|
|
|
write_config_param "GIT_DOMAIN_NAME" "$GIT_DOMAIN_NAME"
|
2016-09-30 20:22:10 +02:00
|
|
|
else
|
2016-10-15 19:35:04 +02:00
|
|
|
function_check interactive_site_details
|
|
|
|
interactive_site_details git
|
2016-09-30 20:22:10 +02:00
|
|
|
fi
|
2016-10-10 20:11:33 +02:00
|
|
|
APP_INSTALLED=1
|
2016-09-30 12:34:39 +02:00
|
|
|
}
|
|
|
|
|
2016-09-25 12:20:41 +02:00
|
|
|
function change_password_gogs {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
function gogs_parameters {
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == *"386" || ${ARCHITECTURE} == *"686" ]]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
CURR_ARCH=386
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == *"amd64" || ${ARCHITECTURE} == "x86_64" ]]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
CURR_ARCH=amd64
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == *"arm"* ]]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
CURR_ARCH=arm
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! ${CURR_ARCH} ]; then
|
2016-09-28 17:06:27 +02:00
|
|
|
echo $'No architecture specified'
|
|
|
|
ARCHITECTURE=$(uname -m)
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == "arm"* ]]; then
|
2016-09-28 17:06:27 +02:00
|
|
|
CURR_ARCH=arm
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == "amd"* || ${ARCHITECTURE} == "x86_64" ]]; then
|
2016-09-28 17:06:27 +02:00
|
|
|
CURR_ARCH=amd64
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ARCHITECTURE} == *"386" || ${ARCHITECTURE} == *"686" ]]; then
|
2016-09-28 17:06:27 +02:00
|
|
|
CURR_ARCH=386
|
|
|
|
fi
|
2016-09-24 17:48:26 +02:00
|
|
|
fi
|
|
|
|
|
2016-09-28 16:56:53 +02:00
|
|
|
GOGS_BIN="https://github.com/gogits/gogs/releases/download/v${GOGS_VERSION}/linux_${CURR_ARCH}.tar.gz"
|
2016-09-24 17:48:26 +02:00
|
|
|
}
|
2016-07-03 17:13:34 +02:00
|
|
|
|
2016-07-25 21:31:20 +02:00
|
|
|
function get_mariadb_git_admin_password {
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ -f /home/${MY_USERNAME}/README ]; then
|
|
|
|
if grep -q "Gogs admin user password" /home/${MY_USERNAME}/README; then
|
|
|
|
GIT_ADMIN_PASSWORD=$(cat /home/${MY_USERNAME}/README | grep "Gogs admin user password" | awk -F ':' '{print $2}' | sed 's/^ *//')
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
fi
|
2016-07-25 21:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function gogs_create_database {
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check get_mariadb_git_admin_password
|
|
|
|
get_mariadb_git_admin_password
|
2016-10-05 23:33:41 +02:00
|
|
|
|
|
|
|
if [ ! ${GIT_ADMIN_PASSWORD} ]; then
|
|
|
|
if [ -f ${IMAGE_PASSWORD_FILE} ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
GIT_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
|
|
|
|
else
|
|
|
|
GIT_ADMIN_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ ! $GIT_ADMIN_PASSWORD ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
function_check create_database
|
|
|
|
create_database gogs "$GOGS_ADMIN_PASSWORD"
|
2016-07-25 21:31:20 +02:00
|
|
|
}
|
|
|
|
|
2016-07-09 12:36:12 +02:00
|
|
|
function reconfigure_gogs {
|
2016-08-27 12:52:01 +02:00
|
|
|
echo -n ''
|
2016-07-09 12:36:12 +02:00
|
|
|
}
|
|
|
|
|
2016-07-06 16:01:28 +02:00
|
|
|
function upgrade_gogs {
|
2016-10-02 21:43:39 +02:00
|
|
|
if ! grep -q "gogs version:" $COMPLETION_FILE; then
|
2016-09-24 17:48:26 +02:00
|
|
|
return
|
|
|
|
fi
|
2016-07-06 16:40:09 +02:00
|
|
|
|
2016-10-16 20:50:56 +02:00
|
|
|
CURR_GOGS_VERSION=$(get_completion_param "gogs version")
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ "${CURR_GOGS_VERSION}" == "${GOGS_VERSION}" ]]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
gogs_parameters
|
|
|
|
|
|
|
|
if [ ! -d ${INSTALL_DIR} ]; then
|
|
|
|
mkdir -p ${INSTALL_DIR}
|
|
|
|
fi
|
|
|
|
cd ${INSTALL_DIR}
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ -d ${INSTALL_DIR}/gogs ]; then
|
|
|
|
rm -rf ${INSTALL_DIR}/gogs
|
2016-09-28 18:41:11 +02:00
|
|
|
fi
|
2016-09-28 18:25:02 +02:00
|
|
|
GOGS_FILE=linux_${CURR_ARCH}.tar.gz
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
2016-09-28 17:19:33 +02:00
|
|
|
wget ${GOGS_BIN}
|
2016-09-28 18:25:02 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
2016-09-28 18:25:02 +02:00
|
|
|
GOGS_FILE=linux_${CURR_ARCH}.zip
|
|
|
|
GOGS_BIN="https://github.com/gogits/gogs/releases/download/v${GOGS_VERSION}/${GOGS_FILE}"
|
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
|
|
|
wget ${GOGS_BIN}
|
|
|
|
fi
|
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
2016-09-28 17:19:33 +02:00
|
|
|
exit 37836
|
|
|
|
else
|
2016-09-28 18:09:10 +02:00
|
|
|
apt-get -y install unzip
|
2016-09-28 18:45:46 +02:00
|
|
|
unzip -o ${GOGS_FILE}
|
2016-09-28 17:19:33 +02:00
|
|
|
fi
|
|
|
|
else
|
2016-09-28 18:25:02 +02:00
|
|
|
tar -xzf ${INSTALL_DIR}/${GOGS_FILE}
|
2016-09-24 17:48:26 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d ${INSTALL_DIR}/gogs ]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
exit 37823
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
rm -rf /home/${GOGS_USERNAME}/*
|
|
|
|
cp -r ${INSTALL_DIR}/gogs/* /home/${GOGS_USERNAME}
|
2016-09-28 18:25:02 +02:00
|
|
|
if [ -f ${GOGS_FILE} ]; then
|
|
|
|
rm ${GOGS_FILE}
|
2016-09-28 18:14:03 +02:00
|
|
|
fi
|
2016-09-24 17:48:26 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
sed -i "s|gogs version.*|gogs version:$GOGS_VERSION|g" ${COMPLETION_FILE}
|
2016-09-24 17:48:26 +02:00
|
|
|
systemctl restart gogs
|
2016-07-06 16:01:28 +02:00
|
|
|
}
|
|
|
|
|
2016-07-06 15:55:09 +02:00
|
|
|
function backup_local_gogs {
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q "gogs domain" ${COMPLETION_FILE}; then
|
2016-08-27 12:52:01 +02:00
|
|
|
return
|
|
|
|
fi
|
2016-07-09 00:01:37 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/gogs-repositories ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
return
|
|
|
|
fi
|
2016-07-07 12:33:45 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Backing up gogs"
|
2016-07-07 12:33:45 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check backup_database_to_usb
|
|
|
|
backup_database_to_usb gogs
|
2016-07-07 12:33:45 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check backup_directory_to_usb
|
2016-10-05 23:33:41 +02:00
|
|
|
backup_directory_to_usb /home/${GOGS_USERNAME}/custom gogs
|
|
|
|
backup_directory_to_usb /home/${GOGS_USERNAME}/gogs-repositories gogsrepos
|
|
|
|
backup_directory_to_usb /home/${GOGS_USERNAME}/.ssh gogsssh
|
2016-07-09 00:01:37 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Gogs backup complete"
|
2016-07-09 00:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function restore_local_gogs {
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q "gogs domain" ${COMPLETION_FILE}; then
|
2016-08-27 12:52:01 +02:00
|
|
|
return
|
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/gogs-repositories ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ${#GIT_DOMAIN_NAME} -gt 2 ]; then
|
|
|
|
function_check gogs_create_database
|
|
|
|
gogs_create_database
|
|
|
|
|
|
|
|
function_check restore_database
|
|
|
|
restore_database gogs ${GIT_DOMAIN_NAME}
|
|
|
|
temp_restore_dir=/root/tempgogs
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ -d ${USB_MOUNT}/backup/gogs ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Restoring Gogs settings"
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/custom ]; then
|
|
|
|
mkdir -p /home/${GOGS_USERNAME}/custom
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r ${temp_restore_dir}/home/${GOGS_USERNAME}/custom/* /home/${GOGS_USERNAME}/custom
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
function_check set_user_permissions
|
|
|
|
set_user_permissions
|
|
|
|
function_check backup_unmount_drive
|
|
|
|
backup_unmount_drive
|
|
|
|
exit 981
|
|
|
|
fi
|
|
|
|
echo $"Restoring Gogs repos"
|
|
|
|
function_check restore_directory_from_usb
|
|
|
|
restore_directory_from_usb ${temp_restore_dir}repos gogsrepos
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r ${temp_restore_dir}repos/home/${GOGS_USERNAME}/gogs-repositories/* /home/${GOGS_USERNAME}/gogs-repositories/
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
function_check set_user_permissions
|
|
|
|
set_user_permissions
|
|
|
|
function_check backup_unmount_drive
|
|
|
|
backup_unmount_drive
|
|
|
|
exit 67574
|
|
|
|
fi
|
|
|
|
echo $"Restoring Gogs authorized_keys"
|
|
|
|
function_check restore_directory_from_usb
|
|
|
|
restore_directory_from_usb ${temp_restore_dir}ssh gogsssh
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/.ssh ]; then
|
|
|
|
mkdir /home/${GOGS_USERNAME}/.ssh
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r ${temp_restore_dir}ssh/home/${GOGS_USERNAME}/.ssh/* /home/${GOGS_USERNAME}/.ssh/
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
function_check set_user_permissions
|
|
|
|
set_user_permissions
|
|
|
|
function_check backup_unmount_drive
|
|
|
|
backup_unmount_drive
|
|
|
|
exit 8463
|
|
|
|
fi
|
|
|
|
rm -rf ${temp_restore_dir}
|
|
|
|
rm -rf ${temp_restore_dir}repos
|
|
|
|
rm -rf ${temp_restore_dir}ssh
|
2016-10-05 23:33:41 +02:00
|
|
|
chown -R ${GOGS_USERNAME}:${GOGS_USERNAME} /home/${GOGS_USERNAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
fi
|
2016-07-06 15:55:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function backup_remote_gogs {
|
2016-09-24 17:48:26 +02:00
|
|
|
if [ -d /home/$GOGS_USERNAME ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check suspend_site
|
|
|
|
suspend_site ${GIT_DOMAIN_NAME}
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check backup_database_to_friend
|
2016-09-24 17:48:26 +02:00
|
|
|
backup_database_to_friend $GOGS_USERNAME
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Obtaining Gogs settings backup"
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check backup_directory_to_friend
|
2016-09-24 17:48:26 +02:00
|
|
|
backup_directory_to_friend /home/$GOGS_USERNAME/custom gogs
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Obtaining Gogs repos backup"
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
mv /home/$GOGS_USERNAME/gogs-repositories/*.git /home/$GOGS_USERNAME/gogs-repositories/bob
|
|
|
|
backup_directory_to_friend /home/$GOGS_USERNAME/gogs-repositories gogsrepos
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Obtaining Gogs authorized_keys backup"
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
backup_directory_to_friend /home/$GOGS_USERNAME/.ssh gogsssh
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check restart_site
|
|
|
|
restart_site
|
2016-07-09 22:26:27 +02:00
|
|
|
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Gogs backup complete"
|
|
|
|
fi
|
2016-07-04 22:02:22 +02:00
|
|
|
}
|
|
|
|
|
2016-07-09 00:01:37 +02:00
|
|
|
function restore_remote_gogs {
|
2016-10-02 13:22:33 +02:00
|
|
|
if grep -q "gogs domain" $COMPLETION_FILE; then
|
2016-10-16 20:50:56 +02:00
|
|
|
GIT_DOMAIN_NAME=$(get_completion_param "gogs domain")
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
function_check gogs_create_database
|
|
|
|
gogs_create_database
|
|
|
|
|
|
|
|
function_check restore_database_from_friend
|
2016-10-05 23:33:41 +02:00
|
|
|
restore_database_from_friend gogs ${GIT_DOMAIN_NAME}
|
|
|
|
if [ -d ${SERVER_DIRECTORY}/backup/gogs ]; then
|
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/custom ]; then
|
|
|
|
mkdir -p /home/${GOGS_USERNAME}/custom
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r /root/tempgogs/home/${GOGS_USERNAME}/custom/* /home/${GOGS_USERNAME}/custom/
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
exit 58852
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
echo $"Restoring Gogs repos"
|
|
|
|
restore_directory_from_friend /root/tempgogsrepos gogsrepos
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r /root/tempgogsrepos/home/${GOGS_USERNAME}/gogs-repositories/* /home/${GOGS_USERNAME}/gogs-repositories/
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
exit 7649
|
|
|
|
fi
|
|
|
|
echo $"Restoring Gogs authorized_keys"
|
|
|
|
restore_directory_from_friend /root/tempgogsssh gogsssh
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /home/${GOGS_USERNAME}/.ssh ]; then
|
|
|
|
mkdir /home/${GOGS_USERNAME}/.ssh
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
cp -r /root/tempgogsssh/home/${GOGS_USERNAME}/.ssh/* /home/${GOGS_USERNAME}/.ssh/
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
exit 74239
|
|
|
|
fi
|
|
|
|
rm -rf /root/tempgogs
|
|
|
|
rm -rf /root/tempgogsrepos
|
|
|
|
rm -rf /root/tempgogsssh
|
2016-10-05 23:33:41 +02:00
|
|
|
chown -R ${GOGS_USERNAME}:${GOGS_USERNAME} /home/${GOGS_USERNAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $"Restore of Gogs complete"
|
|
|
|
fi
|
|
|
|
fi
|
2016-07-09 00:01:37 +02:00
|
|
|
}
|
|
|
|
|
2016-07-03 22:34:22 +02:00
|
|
|
function remove_gogs {
|
2016-10-09 21:57:06 +02:00
|
|
|
if [ ${#GIT_DOMAIN_NAME} -eq 0 ]; then
|
|
|
|
return
|
|
|
|
fi
|
2016-08-27 12:52:01 +02:00
|
|
|
systemctl stop gogs
|
|
|
|
systemctl disable gogs
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_dissite ${GIT_DOMAIN_NAME}
|
|
|
|
if [ -d /var/www/${GIT_DOMAIN_NAME} ]; then
|
|
|
|
rm -rf /var/www/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ -f /etc/nginx/sites-available/${GIT_DOMAIN_NAME} ]; then
|
|
|
|
rm /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
function_check drop_database
|
|
|
|
drop_database gogs
|
|
|
|
rm /etc/systemd/system/gogs.service
|
2016-10-05 23:33:41 +02:00
|
|
|
rm -rf /home/${GOGS_USERNAME}/*
|
2016-08-27 12:52:01 +02:00
|
|
|
remove_onion_service gogs ${GIT_ONION_PORT} 9418
|
2016-10-18 11:43:08 +02:00
|
|
|
remove_completion_param "install_gogs"
|
2016-10-05 23:33:41 +02:00
|
|
|
sed -i '/gogs /d' $COMPLETION_FILE
|
2016-07-03 22:34:22 +02:00
|
|
|
}
|
|
|
|
|
2016-07-03 17:13:34 +02:00
|
|
|
function install_gogs {
|
2016-08-27 12:52:01 +02:00
|
|
|
if [ ! $GIT_DOMAIN_NAME ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
adduser --disabled-login --gecos 'Gogs' $GOGS_USERNAME
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
gogs_parameters
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-09-24 17:48:26 +02:00
|
|
|
if [ ! -d ${INSTALL_DIR} ]; then
|
|
|
|
mkdir -p ${INSTALL_DIR}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-09-24 17:48:26 +02:00
|
|
|
cd ${INSTALL_DIR}
|
2016-09-28 18:41:11 +02:00
|
|
|
if [ -d $INSTALL_DIR/gogs ]; then
|
|
|
|
rm -rf $INSTALL_DIR/gogs
|
|
|
|
fi
|
2016-09-28 18:25:02 +02:00
|
|
|
GOGS_FILE=linux_${CURR_ARCH}.tar.gz
|
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
|
|
|
wget ${GOGS_BIN}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-09-28 18:25:02 +02:00
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
|
|
|
GOGS_FILE=linux_${CURR_ARCH}.zip
|
|
|
|
GOGS_BIN="https://github.com/gogits/gogs/releases/download/v${GOGS_VERSION}/${GOGS_FILE}"
|
2016-09-28 17:19:33 +02:00
|
|
|
wget ${GOGS_BIN}
|
2016-09-28 18:25:02 +02:00
|
|
|
if [ ! -f ${GOGS_FILE} ]; then
|
2016-09-28 17:19:33 +02:00
|
|
|
exit 37836
|
|
|
|
else
|
2016-09-28 18:09:10 +02:00
|
|
|
apt-get -y install unzip
|
2016-09-28 18:45:46 +02:00
|
|
|
unzip -o ${GOGS_FILE}
|
2016-09-28 17:19:33 +02:00
|
|
|
fi
|
|
|
|
else
|
2016-09-28 18:25:02 +02:00
|
|
|
tar -xzf ${INSTALL_DIR}/${GOGS_FILE}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d ${INSTALL_DIR}/gogs ]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
exit 37823
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
rm -rf /home/${GOGS_USERNAME}/*
|
|
|
|
cp -r ${INSTALL_DIR}/gogs/* /home/${GOGS_USERNAME}
|
2016-09-28 18:25:02 +02:00
|
|
|
if [ -f ${GOGS_FILE} ]; then
|
|
|
|
rm ${GOGS_FILE}
|
2016-09-28 18:14:03 +02:00
|
|
|
fi
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -f /home/${GOGS_USERNAME}/gogs ]; then
|
2016-09-24 17:48:26 +02:00
|
|
|
echo 'Gogs binary not installed'
|
|
|
|
exit 345562
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
echo "export GOROOT=/home/go" >> /home/${GOGS_USERNAME}/.bashrc
|
|
|
|
echo "export GOPATH=\$GOROOT/go${GO_VERSION}/bin" >> /home/${GOGS_USERNAME}/.bashrc
|
|
|
|
echo 'export PATH=$PATH:$GOPATH' >> /home/${GOGS_USERNAME}/.bashrc
|
|
|
|
chown -R ${GOGS_USERNAME}:${GOGS_USERNAME} /home/${GOGS_USERNAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
function_check install_mariadb
|
|
|
|
install_mariadb
|
|
|
|
|
|
|
|
function_check get_mariadb_password
|
|
|
|
get_mariadb_password
|
|
|
|
|
2016-09-28 19:05:33 +02:00
|
|
|
function_check gogs_create_database
|
2016-08-27 12:52:01 +02:00
|
|
|
gogs_create_database
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -f /home/${GOGS_USERNAME}/scripts/mysql.sql ]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
echo $'MySql template for Gogs was not found'
|
|
|
|
exit 72528
|
|
|
|
fi
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q $"Gogs admin user password" /home/${MY_USERNAME}/README; then
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
echo 'Gogs' >> /home/${MY_USERNAME}/README
|
|
|
|
echo '====' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'Install Steps For First-time Run:' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'Leave email service settings empty' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'Check "Enable Register Confirmation"' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'Check "Enable Mail Notification"' >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'If you want to disable new account registrations then append the following:' >> /home/${MY_USERNAME}/README
|
|
|
|
echo ' [service]' >> /home/${MY_USERNAME}/README
|
|
|
|
echo ' DISABLE_REGISTRATION = true' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'Then restart with:' >> /home/${MY_USERNAME}/README
|
|
|
|
echo ' systemctl restart gogs' >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $"Note that there's a usability/security trade-off made here." >> /home/${MY_USERNAME}/README
|
|
|
|
echo $"In order to allow git clone via http we don't redirect everything" >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'over https. Instead only critical things such as user login,' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'settings and admin are encrypted.' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'There are also potential security issues with cloning/pulling/pushing' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'code over http, since a determined adversary could inject malware' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'into the stream as it passes, so beware.' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $'If you have a bought domain and a non-self signed cert then you' >> /home/${MY_USERNAME}/README
|
|
|
|
echo $"should change /etc/nginx/sites-available/${GIT_DOMAIN_NAME} to redirect everything over https." >> /home/${MY_USERNAME}/README
|
|
|
|
chown ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/README
|
|
|
|
chmod 600 /home/${MY_USERNAME}/README
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
function_check initialise_database
|
2016-10-05 23:33:41 +02:00
|
|
|
initialise_database gogs /home/${GOGS_USERNAME}/scripts/mysql.sql
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
chown -R ${GOGS_USERNAME}:${GOGS_USERNAME} /home/${GOGS_USERNAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
echo '[Unit]' > /etc/systemd/system/gogs.service
|
|
|
|
echo 'Description=Gogs (Go Git Service)' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'After=syslog.target' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'After=network.target' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'After=mysqld.service' >> /etc/systemd/system/gogs.service
|
|
|
|
echo '' >> /etc/systemd/system/gogs.service
|
|
|
|
echo '[Service]' >> /etc/systemd/system/gogs.service
|
|
|
|
echo '#LimitMEMLOCK=infinity' >> /etc/systemd/system/gogs.service
|
|
|
|
echo '#LimitNOFILE=65535' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'Type=simple' >> /etc/systemd/system/gogs.service
|
2016-09-24 17:48:26 +02:00
|
|
|
echo 'User=gogs' >> /etc/systemd/system/gogs.service
|
2016-09-28 21:40:07 +02:00
|
|
|
echo 'Group=gogs' >> /etc/systemd/system/gogs.service
|
2016-10-05 23:33:41 +02:00
|
|
|
echo "WorkingDirectory=/home/${GOGS_USERNAME}" >> /etc/systemd/system/gogs.service
|
|
|
|
echo "ExecStart=/home/${GOGS_USERNAME}/gogs web" >> /etc/systemd/system/gogs.service
|
2016-08-27 12:52:01 +02:00
|
|
|
echo 'Restart=always' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'RestartSec=10' >> /etc/systemd/system/gogs.service
|
2016-10-05 23:33:41 +02:00
|
|
|
echo "Environment=\"USER=${GOGS_USERNAME}\" \"HOME=/home/${GOGS_USERNAME}\" \"GOPATH=/home/go/go${GO_VERSION}\"" >> /etc/systemd/system/gogs.service
|
2016-08-27 12:52:01 +02:00
|
|
|
echo '' >> /etc/systemd/system/gogs.service
|
|
|
|
echo '[Install]' >> /etc/systemd/system/gogs.service
|
|
|
|
echo 'WantedBy=multi-user.target' >> /etc/systemd/system/gogs.service
|
|
|
|
|
|
|
|
systemctl enable gogs
|
|
|
|
systemctl daemon-reload
|
2016-09-29 18:18:36 +02:00
|
|
|
systemctl start gogs
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ ! -d /var/www/${GIT_DOMAIN_NAME} ]; then
|
|
|
|
mkdir /var/www/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-05 23:33:41 +02:00
|
|
|
if [ -d /var/www/${GIT_DOMAIN_NAME}/htdocs ]; then
|
|
|
|
rm -rf /var/www/${GIT_DOMAIN_NAME}/htdocs
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if [[ ${ONION_ONLY} == "no" ]]; then
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check nginx_http_redirect
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_http_redirect ${GIT_DOMAIN_NAME}
|
|
|
|
echo 'server {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' listen 443 ssl;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " root /var/www/${GIT_DOMAIN_NAME}/htdocs;" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " server_name ${GIT_DOMAIN_NAME};" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' access_log off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " error_log /var/log/nginx/${GIT_DOMAIN_NAME}_error.log ${WEBSERVER_LOG_LEVEL};" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check nginx_ssl
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_ssl ${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check nginx_disable_sniffing
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_disable_sniffing ${GIT_DOMAIN_NAME}
|
|
|
|
echo ' add_header Strict-Transport-Security max-age=0;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' location / {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-10-01 13:18:23 +02:00
|
|
|
function_check nginx_limits
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_limits ${GIT_DOMAIN_NAME} '10G'
|
|
|
|
echo ' proxy_pass http://localhost:3000;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' }' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' fastcgi_buffers 64 4K;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' error_page 403 /core/templates/403.php;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' error_page 404 /core/templates/404.php;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' location = /robots.txt {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' allow all;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' log_not_found off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' access_log off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' }' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '}' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
else
|
2016-10-05 23:33:41 +02:00
|
|
|
echo -n '' > /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
fi
|
|
|
|
echo 'server {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " listen 127.0.0.1:${GIT_ONION_PORT} default_server;" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " root /var/www/$GIT_DOMAIN_NAME/htdocs;" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " server_name $GIT_DOMAIN_NAME;" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' access_log off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo " error_log /var/log/nginx/${GIT_DOMAIN_NAME}_error.log ${WEBSERVER_LOG_LEVEL};" >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
function_check nginx_disable_sniffing
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_disable_sniffing ${GIT_DOMAIN_NAME}
|
|
|
|
echo ' add_header Strict-Transport-Security max-age=0;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' location / {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-10-01 13:18:23 +02:00
|
|
|
function_check nginx_limits
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_limits ${GIT_DOMAIN_NAME} '10G'
|
|
|
|
echo ' proxy_pass http://localhost:3000;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' }' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' fastcgi_buffers 64 4K;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' error_page 403 /core/templates/403.php;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' error_page 404 /core/templates/404.php;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' location = /robots.txt {' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' allow all;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' log_not_found off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' access_log off;' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo ' }' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
|
|
|
echo '}' >> /etc/nginx/sites-available/${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
function_check configure_php
|
|
|
|
configure_php
|
|
|
|
|
|
|
|
function_check create_site_certificate
|
2016-10-05 23:33:41 +02:00
|
|
|
create_site_certificate ${GIT_DOMAIN_NAME} 'yes'
|
2016-08-27 12:52:01 +02:00
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
nginx_ensite ${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
if [ ! -d /var/lib/tor ]; then
|
|
|
|
echo $'No Tor installation found. Gogs onion site cannot be configured.'
|
|
|
|
exit 877367
|
|
|
|
fi
|
|
|
|
if ! grep -q "hidden_service_gogs" /etc/tor/torrc; then
|
|
|
|
echo 'HiddenServiceDir /var/lib/tor/hidden_service_gogs/' >> /etc/tor/torrc
|
|
|
|
echo "HiddenServicePort 80 127.0.0.1:${GIT_ONION_PORT}" >> /etc/tor/torrc
|
|
|
|
echo "HiddenServicePort 9418 127.0.0.1:9418" >> /etc/tor/torrc
|
|
|
|
echo $'Added onion site for Gogs'
|
|
|
|
fi
|
|
|
|
|
2016-10-18 11:43:08 +02:00
|
|
|
systemctl reload tor
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
function_check wait_for_onion_service
|
|
|
|
wait_for_onion_service 'gogs'
|
|
|
|
|
|
|
|
GIT_ONION_HOSTNAME=$(cat /var/lib/tor/hidden_service_gogs/hostname)
|
|
|
|
|
|
|
|
systemctl restart php5-fpm
|
|
|
|
systemctl restart nginx
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q "Gogs onion domain" /home/${MY_USERNAME}/README; then
|
|
|
|
echo "Gogs onion domain: ${GIT_ONION_HOSTNAME}" >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
chown ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/README
|
|
|
|
chmod 600 /home/${MY_USERNAME}/README
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
2016-10-01 16:35:27 +02:00
|
|
|
|
2016-10-18 11:43:08 +02:00
|
|
|
set_completion_param "gogs domain" "$GIT_DOMAIN_NAME"
|
|
|
|
set_completion_param "gogs onion domain" "$GIT_ONION_HOSTNAME"
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
function_check add_ddns_domain
|
2016-10-05 23:33:41 +02:00
|
|
|
add_ddns_domain ${GIT_DOMAIN_NAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
# obtain the secret key
|
|
|
|
GOGS_SECRET_KEY=
|
2016-10-05 23:33:41 +02:00
|
|
|
if grep -q "Gogs secret key:" /home/${MY_USERNAME}/README; then
|
|
|
|
GOGS_SECRET_KEY=$(cat /home/${MY_USERNAME}/README | grep "Gogs secret key:" | awk -F ':' '{print $2}' | sed 's/^ *//')
|
2016-08-27 12:52:01 +02:00
|
|
|
else
|
|
|
|
GOGS_SECRET_KEY="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
|
2016-10-05 23:33:41 +02:00
|
|
|
echo "Gogs secret key:${GOGS_SECRET_KEY}" >> /home/${MY_USERNAME}/README
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/${MY_USERNAME}/README
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# create the configuration
|
2016-10-05 23:33:41 +02:00
|
|
|
GOGS_CONFIG_PATH=/home/${GOGS_USERNAME}/custom/conf
|
|
|
|
if [ ! -d ${GOGS_CONFIG_PATH} ]; then
|
|
|
|
mkdir -p ${GOGS_CONFIG_PATH}
|
|
|
|
fi
|
|
|
|
GOGS_CONFIG_FILE=${GOGS_CONFIG_PATH}/app.ini
|
|
|
|
echo "RUN_USER = $GOGS_USERNAME" > ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'RUN_MODE = prod' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[database]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'DB_TYPE = mysql' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'HOST = 127.0.0.1:3306' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'NAME = gogs' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'USER = root' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "PASSWD = $MARIADB_PASSWORD" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'SSL_MODE = disable' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'PATH = data/gogs.db' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[repository]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "ROOT = /home/$GOGS_USERNAME/gogs-repositories" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[server]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
if [[ ${ONION_ONLY} == 'no' ]]; then
|
|
|
|
echo "DOMAIN = ${GIT_DOMAIN_NAME}" >> ${GOGS_CONFIG_FILE}
|
2016-08-27 12:52:01 +02:00
|
|
|
else
|
2016-10-05 23:33:41 +02:00
|
|
|
echo "DOMAIN = ${GIT_ONION_HOSTNAME}" >> ${GOGS_CONFIG_FILE}
|
|
|
|
fi
|
|
|
|
echo 'HTTP_PORT = 3000' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "ROOT_URL = http://$GIT_DOMAIN_NAME/" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "SSH_PORT = $SSH_PORT" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'SSH_DOMAIN = %(DOMAIN)s' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "CERT_FILE = /etc/ssl/certs/${GIT_DOMAIN_NAME}.pem" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "KEY_FILE = /etc/ssl/private/${GIT_DOMAIN_NAME}.key" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'DISABLE_ROUTER_LOG = true' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[session]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'PROVIDER = file' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[log]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'MODE = file' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'LEVEL = Info' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[security]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'INSTALL_LOCK = true' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo "SECRET_KEY = $GOGS_SECRET_KEY" >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[service]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'DISABLE_REGISTRATION = false' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'SHOW_REGISTRATION_BUTTON = true' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'REQUIRE_SIGNIN_VIEW = false' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'ENABLE_CAPTCHA = false' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo '[other]' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'SHOW_FOOTER_BRANDING = false' >> ${GOGS_CONFIG_FILE}
|
|
|
|
echo 'SHOW_FOOTER_VERSION = false' >> ${GOGS_CONFIG_FILE}
|
|
|
|
|
|
|
|
chmod 750 ${GOGS_CONFIG_FILE}
|
|
|
|
chown -R ${GOGS_USERNAME}:${GOGS_USERNAME} /home/${GOGS_USERNAME}
|
2016-08-27 12:52:01 +02:00
|
|
|
|
|
|
|
systemctl restart gogs
|
|
|
|
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q "gogs domain:" ${COMPLETION_FILE}; then
|
|
|
|
echo "gogs domain:${GIT_DOMAIN_NAME}" >> ${COMPLETION_FILE}
|
2016-10-02 13:22:33 +02:00
|
|
|
else
|
2016-10-05 23:33:41 +02:00
|
|
|
sed -i "s|gogs domain.*|gogs domain:${GIT_DOMAIN_NAME}|g" ${COMPLETION_FILE}
|
2016-08-27 12:52:01 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
function_check configure_firewall_for_git
|
|
|
|
configure_firewall_for_git
|
2016-10-05 23:33:41 +02:00
|
|
|
if ! grep -q "gogs version:" ${COMPLETION_FILE}; then
|
|
|
|
echo "gogs version:${GOGS_VERSION}" >> ${COMPLETION_FILE}
|
2016-09-24 17:48:26 +02:00
|
|
|
else
|
2016-10-05 23:33:41 +02:00
|
|
|
sed -i "s|gogs version.*|gogs version:${GOGS_VERSION}|g" ${COMPLETION_FILE}
|
2016-09-24 17:48:26 +02:00
|
|
|
fi
|
2016-10-10 20:11:33 +02:00
|
|
|
APP_INSTALLED=1
|
2016-07-03 17:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# NOTE: deliberately no exit 0
|