view piecrust/publishing/rsync.py @ 924:1bb704434ee2

formatting: Remove segment parts, you can use template tags instead. Segment parts were used to switch formatters insides a given content segment, but that's also achievable with template tags like `pcformat` in Jinja to some degree. It's not totally the same but removing it simplifies the code and improves performance.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 01 Oct 2017 20:36:04 -0700
parents 13e8b50a2113
children
line wrap: on
line source

from piecrust.publishing.shell import ShellCommandPublisherBase


class RsyncPublisher(ShellCommandPublisherBase):
    PUBLISHER_NAME = 'rsync'
    PUBLISHER_SCHEME = 'rsync'

    def parseUrlTarget(self, url):
        self.config = {
            'destination': (url.netloc + url.path)
        }

    def _getCommandArgs(self, ctx):
        orig = self.config.get('source', ctx.bake_out_dir)
        dest = self.config.get('destination')
        if not dest:
            raise Exception("No destination specified.")

        rsync_options = self.config.get('options')
        if rsync_options is None:
            rsync_options = ['-avc', '--delete']

        args = ['rsync'] + rsync_options
        args += [orig, dest]
        return args