2019-01-06 14:14:47 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
|
|
|
# Copyright © 2010-2018 Lance Edgar
|
|
|
|
#
|
|
|
|
# This file is part of Rattail.
|
|
|
|
#
|
|
|
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# Rattail 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 General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Fabric library for Backup app
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
|
|
|
|
import os
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
from rattail_fabric2 import python, exists, make_deploy, mkdir, UNSPECIFIED
|
|
|
|
|
|
|
|
|
|
|
|
deploy_generic = make_deploy(__file__)
|
|
|
|
|
|
|
|
|
2019-09-11 18:36:43 -05:00
|
|
|
def deploy_rattail_backup_script(c, **context):
|
|
|
|
"""
|
|
|
|
Deploy the generic `rattail-backup` script
|
|
|
|
"""
|
|
|
|
context.setdefault('envname', 'backup')
|
|
|
|
deploy_generic(c, 'backup/rattail-backup.mako', '/usr/local/bin/rattail-backup',
|
|
|
|
mode='0700', context=context, use_sudo=True)
|
|
|
|
|
|
|
|
|
2019-01-06 14:14:47 -06:00
|
|
|
def deploy_backup_everything(c, **context):
|
|
|
|
"""
|
|
|
|
Deploy the generic `backup-everything` script
|
|
|
|
"""
|
|
|
|
context.setdefault('envname', 'backup')
|
|
|
|
context.setdefault('user', 'rattail')
|
|
|
|
deploy_generic(c, 'backup/backup-everything.mako', '/usr/local/bin/backup-everything',
|
|
|
|
mode='0700', context=context, use_sudo=True)
|
|
|
|
|
|
|
|
|
|
|
|
def deploy_backup_app(c, deploy, envname, mkvirtualenv=True, user='rattail',
|
|
|
|
config=None, context={}, everything=None,
|
2019-09-11 18:36:43 -05:00
|
|
|
rattail_backup_script=None,
|
2019-01-06 14:14:47 -06:00
|
|
|
crontab=None, runat=UNSPECIFIED):
|
|
|
|
"""
|
|
|
|
Make an app which can run backups for the server.
|
|
|
|
"""
|
|
|
|
if not config:
|
2019-09-11 17:33:40 -05:00
|
|
|
path = '{}/rattail.conf.mako'.format(envname)
|
2019-01-06 14:14:47 -06:00
|
|
|
if deploy.local_exists(path):
|
|
|
|
config = path
|
|
|
|
else:
|
2019-09-11 17:33:40 -05:00
|
|
|
path = '{}/rattail.conf'.format(envname)
|
|
|
|
if deploy.local_exists(path):
|
|
|
|
config = path
|
|
|
|
else:
|
|
|
|
raise ValueError("Must provide config path for backup app")
|
2019-01-06 14:14:47 -06:00
|
|
|
|
|
|
|
if runat is UNSPECIFIED:
|
|
|
|
runat = datetime.time(0) # defaults to midnight
|
|
|
|
|
|
|
|
# virtualenv
|
|
|
|
if mkvirtualenv:
|
|
|
|
python.mkvirtualenv(c, envname, python='/usr/bin/python3')
|
|
|
|
envpath = '/srv/envs/{}'.format(envname)
|
|
|
|
c.sudo('chown -R {}: {}'.format(user, envpath))
|
|
|
|
mkdir(c, os.path.join(envpath, 'src'), use_sudo=True, runas_user=user)
|
|
|
|
c.sudo("bash -l -c 'workon {} && pip install --upgrade pip'".format(envname), user=user)
|
|
|
|
|
|
|
|
# rattail
|
|
|
|
if not exists(c, os.path.join(envpath, 'src/rattail')):
|
|
|
|
c.sudo('git clone https://rattailproject.org/git/rattail.git {}/src/rattail'.format(envpath), user=user)
|
|
|
|
c.sudo("bash -l -c 'cd {}/src/rattail && git pull'".format(envpath), user=user)
|
|
|
|
deploy_generic(c, 'backup/git-exclude', os.path.join(envpath, 'src/rattail/.git/info/exclude'), use_sudo=True, owner=user)
|
|
|
|
c.sudo("bash -l -c 'workon {} && cdvirtualenv && bin/pip install --upgrade --upgrade-strategy eager src/rattail'".format(envname), user=user)
|
|
|
|
|
|
|
|
# config
|
|
|
|
c.sudo("bash -l -c 'workon {} && cdvirtualenv && rattail make-appdir'".format(envname), user=user)
|
2019-09-11 17:33:40 -05:00
|
|
|
deploy(c, config, os.path.join(envpath, 'app/rattail.conf'), owner=user, mode='0600', use_sudo=True, context=context)
|
2019-01-06 14:14:47 -06:00
|
|
|
c.sudo("bash -l -c 'workon {} && cdvirtualenv && bin/rattail -c app/rattail.conf make-config -T quiet -O app/'".format(envname), user=user)
|
|
|
|
c.sudo("bash -l -c 'workon {} && cdvirtualenv && bin/rattail -c app/rattail.conf make-config -T silent -O app/'".format(envname), user=user)
|
|
|
|
|
2019-09-11 18:36:43 -05:00
|
|
|
# rattail-backup script
|
|
|
|
script_context = dict(context)
|
|
|
|
script_context['envname'] = envname
|
|
|
|
if rattail_backup_script:
|
|
|
|
deploy(c, rattail_backup_script, '/usr/local/bin/rattail-backup', mode='0700', use_sudo=True,
|
|
|
|
context=script_context)
|
|
|
|
else:
|
|
|
|
deploy_rattail_backup_script(c, **script_context)
|
|
|
|
|
2019-01-06 14:14:47 -06:00
|
|
|
# backup-everything script
|
|
|
|
everything_context = dict(context)
|
|
|
|
everything_context['envname'] = envname
|
|
|
|
everything_context['user'] = user
|
|
|
|
if everything:
|
|
|
|
deploy(c, everything, '/usr/local/bin/backup-everything', mode='0700', context=everything_context, use_sudo=True)
|
|
|
|
else:
|
|
|
|
deploy_backup_everything(c, **everything_context)
|
|
|
|
|
|
|
|
# crontab
|
|
|
|
if runat:
|
|
|
|
crontab_context = dict(context)
|
|
|
|
crontab_context['envname'] = envname
|
|
|
|
crontab_context['pretty_time'] = runat.strftime('%I:%M %p')
|
|
|
|
crontab_context['cron_time'] = runat.strftime('%M %H')
|
|
|
|
if crontab:
|
|
|
|
deploy(c, crontab, '/etc/cron.d/backup', context=crontab_context, use_sudo=True)
|
|
|
|
else:
|
|
|
|
deploy_generic(c, 'backup/crontab.mako', '/etc/cron.d/backup', context=crontab_context, use_sudo=True)
|