2018-12-03 01:11:38 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2021-06-11 18:38:16 -05:00
|
|
|
# Copyright © 2010-2021 Lance Edgar
|
2018-12-03 01:11:38 -06:00
|
|
|
#
|
|
|
|
# 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 Rattail itself
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2021-06-11 18:38:16 -05:00
|
|
|
from rattail_fabric2 import apache, apt, postfix, postgresql, python, make_deploy, make_system_user, mkdir
|
2018-12-03 01:11:38 -06:00
|
|
|
|
|
|
|
|
2021-06-11 18:38:16 -05:00
|
|
|
deploy_common = make_deploy(__file__)
|
2018-12-03 01:11:38 -06:00
|
|
|
|
|
|
|
|
2021-06-11 18:38:16 -05:00
|
|
|
def bootstrap_rattail_base(c, deploy=None, timezone='America/Chicago',
|
|
|
|
**context):
|
|
|
|
"""
|
|
|
|
Bootstrap the base system requirements, common to all machines
|
|
|
|
running Rattail apps. Note that this includes basic installation
|
|
|
|
of Python, PostgreSQL and Aapche.
|
|
|
|
"""
|
|
|
|
env = context.get('env')
|
|
|
|
context['timezone'] = timezone
|
|
|
|
|
|
|
|
# make system user, install init scripts etc.
|
|
|
|
bootstrap_rattail(c, alias='root')
|
|
|
|
|
|
|
|
# machine-wide config
|
|
|
|
if deploy and deploy.local_exists('rattail/rattail.conf.mako'):
|
|
|
|
deploy(c, 'rattail/rattail.conf.mako', '/etc/rattail/rattail.conf',
|
|
|
|
use_sudo=True, context=context)
|
|
|
|
else:
|
2023-01-07 17:21:34 -06:00
|
|
|
deploy_machine_conf(c, timezone=timezone, context=context)
|
2021-06-11 18:38:16 -05:00
|
|
|
|
|
|
|
# python
|
|
|
|
python.bootstrap_python(c, deploy,
|
|
|
|
python3=True,
|
|
|
|
virtualenvwrapper_from_apt=True)
|
|
|
|
|
|
|
|
# postgres
|
|
|
|
postgresql.install(c)
|
|
|
|
if env and hasattr(env, 'password_postgresql_rattail'):
|
|
|
|
postgresql.create_user(c, 'rattail', password=env.password_postgresql_rattail)
|
|
|
|
|
|
|
|
# apache
|
|
|
|
apache.install(c)
|
|
|
|
apache.enable_mod(c, 'proxy_http')
|
|
|
|
|
|
|
|
# supervisor
|
|
|
|
apt.install(c, 'supervisor')
|
|
|
|
|
|
|
|
|
|
|
|
def bootstrap_rattail(c, home='/var/lib/rattail', uid=None, shell='/bin/bash',
|
|
|
|
alias=None):
|
2018-12-03 01:11:38 -06:00
|
|
|
"""
|
|
|
|
Bootstrap a basic Rattail software environment.
|
|
|
|
"""
|
|
|
|
make_system_user(c, 'rattail', home=home, uid=uid, shell=shell)
|
|
|
|
mkdir(c, os.path.join(home, '.ssh'), owner='rattail:', mode='0700', use_sudo=True)
|
2021-06-11 18:38:16 -05:00
|
|
|
if alias:
|
|
|
|
postfix.alias(c, 'rattail', alias)
|
2018-12-03 01:11:38 -06:00
|
|
|
|
|
|
|
mkdir(c, '/etc/rattail', use_sudo=True)
|
|
|
|
mkdir(c, '/srv/rattail', use_sudo=True)
|
|
|
|
mkdir(c, '/var/log/rattail', owner='rattail:rattail', mode='0775', use_sudo=True)
|
|
|
|
|
|
|
|
mkdir(c, '/srv/rattail/init', use_sudo=True)
|
2021-06-11 18:38:16 -05:00
|
|
|
deploy_common(c, 'check-rattail-daemon', '/usr/local/bin/check-rattail-daemon', use_sudo=True)
|
|
|
|
deploy_common(c, 'check-supervisor-process', '/usr/local/bin/check-supervisor-process', use_sudo=True)
|
|
|
|
deploy_common(c, 'check-systemd-service', '/usr/local/bin/check-systemd-service', use_sudo=True)
|
|
|
|
deploy_common(c, 'soffice', '/srv/rattail/init/soffice', use_sudo=True)
|
2019-02-19 22:15:16 -06:00
|
|
|
|
|
|
|
|
2023-01-07 17:21:34 -06:00
|
|
|
def deploy_machine_conf(c, env=None, timezone=None, context={}):
|
2019-09-12 14:53:35 -05:00
|
|
|
"""
|
|
|
|
Deploy the standard machine-wide ``rattail.conf`` file.
|
|
|
|
"""
|
|
|
|
mkdir(c, '/etc/rattail', use_sudo=True)
|
2023-01-07 17:21:34 -06:00
|
|
|
context['env'] = env
|
|
|
|
context['timezone'] = timezone or getattr(env, 'timezone', 'America/Chicago')
|
2021-06-11 18:38:16 -05:00
|
|
|
deploy_common(c, 'rattail/rattail.conf.mako', '/etc/rattail/rattail.conf', use_sudo=True,
|
2023-01-07 17:21:34 -06:00
|
|
|
context=context)
|
2019-09-12 14:53:35 -05:00
|
|
|
|
|
|
|
|
2019-02-19 22:15:16 -06:00
|
|
|
def delete_email_recipients(c, dbname):
|
|
|
|
"""
|
|
|
|
Purge all email recipient settings for the given database.
|
|
|
|
"""
|
|
|
|
postgresql.sql(c, "delete from setting where name like 'rattail.mail.%.to';", database=dbname)
|
|
|
|
postgresql.sql(c, "delete from setting where name like 'rattail.mail.%.cc';", database=dbname)
|
|
|
|
postgresql.sql(c, "delete from setting where name like 'rattail.mail.%.bcc';", database=dbname)
|
|
|
|
|
|
|
|
|
|
|
|
def disable_emails(c, dbname):
|
|
|
|
"""
|
|
|
|
Disable all emails for the given database.
|
|
|
|
"""
|
|
|
|
postgresql.sql(c, "update setting set value = 'false' where name like 'rattail.mail.%.enabled';", database=dbname)
|
2021-01-02 20:04:36 -06:00
|
|
|
|
|
|
|
|
|
|
|
def deploy_datasync_checks(c, envroot, **kwargs):
|
|
|
|
"""
|
|
|
|
Deploy the standard datasync (queue, watcher) check scripts.
|
|
|
|
"""
|
|
|
|
envroot = envroot.rstrip('/')
|
|
|
|
context = kwargs.pop('context', {})
|
|
|
|
context['envroot'] = envroot
|
2021-11-30 13:38:05 -06:00
|
|
|
context.setdefault('config', kwargs.pop('config', 'quiet'))
|
2021-06-11 18:38:16 -05:00
|
|
|
deploy_common(c, 'rattail/check-datasync-queue.mako', '{}/app/check-datasync-queue'.format(envroot),
|
|
|
|
context=context, **kwargs)
|
|
|
|
deploy_common(c, 'rattail/check-datasync-watchers.mako', '{}/app/check-datasync-watchers'.format(envroot),
|
|
|
|
context=context, **kwargs)
|