Skip to content
Snippets Groups Projects
Select Git revision
  • cba3d3697555059ab9e17002cf98d9d71a4c5509
  • main default protected
  • f-sss4grpc
  • dev
  • 108-implement-rpc-call-for-server-side-scripting
  • f-windows-conan-create
  • f-to-string
  • f-update-requirements
  • f-related-projects
  • f-role
  • f-remote-path
  • f-rel-path
  • f-consol-message
  • v0.3.0
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
  • v0.1.1
  • v0.1
  • v0.0.19
  • v0.0.18
  • v0.0.16
  • v0.0.15
  • v0.0.10
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
33 results

HandlerInterface.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    backup.sh 3.16 KiB
    #!/bin/bash
    #
    # ** header v3.0
    # This file is a part of the CaosDB Project.
    #
    # Copyright (C) 2018 Research Group Biomedical Physics,
    # Max-Planck-Institute for Dynamics and Self-Organization Göttingen
    #
    # 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 <https://www.gnu.org/licenses/>.
    #
    # ** end header
    #
    
    # Dump a database with all procedures, permissions, structure and data
    
    # The directory which the dump is to be stored to. Do not change it here. Use
    # the --backupdir=./my/dir/ option or an environment variable instead.
    BACKUPDIR="${BACKUPDIR:-./backup}"
    # Iff this (environment) variable is "true" as lower-case, then this script also
    # outputs a machine readable status report.  The variable can also be set by
    # giving the `--yaml` command line option.
    YAML="${YAML:-false}"
    
    PRINT_HELP="--backupdir=BACKUPDIR\n\tThe directory which the dump is to be stored to. (Defaults to ./backup,\n\tcan also be set as an environment variable.)\n"
    
    # YAML string templates #######################################################
    
    YAMLFAIL=$(cat << "EOF"
    #### YAML ####
    error:
      - code: $error_code
      - message: $error_message
    #### YAML END ####
    EOF
            )
    
    YAMLSUCCESS=$(cat << "EOF"
    #### YAML ####
    error:
      - code: 0
      - message: Backup successfully created
    backup:
      - location: $file_location
      - date: $date
    #### YAML END ####
    EOF
            )
    
    # Config and command line parameter loading ###################################
    
    . .config
    
    # load useful stuff - parses the commandline parameters and so on...
    . patches/utils/patch_header.sh
    
    echo "BACKUPDIR: $BACKUPDIR"
    echo "YAML: $YAML"
    
    function backup() {
        NARG_NAME="$1"
        NARG_FILE="$2"
        shift 2
        echo $MYSQLDUMP_CMD
    	# parameters: connection, database, outfile
    	if [ -e "$NARG_FILE" ]; then
    		failure "dumpfile already exists."
    	fi
        echo "Dumping database $NARG_NAME to $NARG_FILE ... "
    	$CMD_MYSQL_DUMP $MYSQL_CONNECTION_NO_DB $* --opt --default-character-set=utf8 --routines $NARG_NAME > $NARG_FILE
    	success
    }
    
    # Prints a YAML failure message, if YAML is true.
    #
    # Arguments:
    # - $1  Error code, integer > 0
    # - $2  Error message
    function yaml_fail() {
        err_code="$1"
        err_msg="$2"
        local yaml="${YAML_FAIL/\$err_code/$err_code}"
        yaml="${yaml/\$err_msg/$err_msg}"
        echo "$yaml"
    }
    
    # Prints a YAML success message, if YAML is true.
    function yaml_success() {
    
    }
    
    ##test dump file exists
    #touch dumpfile.tmp
    #backup 0 1 2 "dumpfile.tmp"
    #rm dumpfile.tmp
    
    # create backup dir if not exists
    [ -d "$BACKUPDIR" ] || mkdir "$BACKUPDIR" || 
    
    DATE=$(date -u --rfc-3339=ns | sed 's/ /T/g')
    BACKUPFILE=${BACKUPDIR}/${DATABASE_NAME}.${DATE}.dump.sql
    backup $DATABASE_NAME $BACKUPFILE