Commit c45a8d5d authored by Alain Takoudjou's avatar Alain Takoudjou Committed by Cédric de Saint Martin

Add slapos.recipe.downloadunpacked recipe

parent 5b9d5d64
......@@ -30,6 +30,7 @@ setup(name=name,
'zc.buildout': [
'default = slapos.recipe.build:Script',
'cmmi = slapos.recipe.build:Cmmi',
'download = slapos.recipe.download:Recipe'
'download = slapos.recipe.download:Recipe',
'download-unpacked = slapos.recipe.downloadunpacked:Recipe'
]},
)
##############################################################################
#
# Copyright (c) 2010 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program 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.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import os
import logging
import shutil
import zc.buildout
import tempfile
import setuptools
TRUE_VALUES = ('yes', 'true', '1', 'on')
class Recipe:
def calculate_base(self, extract_dir):
log = logging.getLogger(self.name)
# Move the contents of the package in to the correct destination
top_level_contents = os.listdir(extract_dir)
if self.options['strip-top-level-dir'].strip().lower() in TRUE_VALUES:
if len(top_level_contents) != 1:
log.error('Unable to strip top level directory because there are more '
'than one element in the root of the package.')
raise zc.buildout.UserError('Invalid package contents')
base = os.path.join(extract_dir, top_level_contents[0])
else:
base = extract_dir
return base
def __init__(self, buildout, name, options):
self.buildout = buildout
self.name = name
self.options = options
self.logger = logging.getLogger(self.name)
if 'filename' in self.options and 'destination' in self.options:
  • filename option seems not at all used in this code. Why we need to raise an exception here ?

Please register or sign in to reply
raise zc.buildout.UserError('Parameters filename and destination are '
'exclusive.')
self.parts = None
self.destination = self.options.get('destination', None)
if self.destination is None:
self.parts = os.path.join(self.buildout['buildout']['parts-directory'],
self.name)
self.destination = self.parts
# backward compatibility with other recipes -- expose location
  • Why "backward" compatibility ? I think having some compatibility with hexagonit.recipe.download is anyway welcome.

Please register or sign in to reply
options['location'] = os.path.join(self.buildout['buildout'][
Please register or sign in to reply
'parts-directory'], self.name)
options['target'] = self.destination
options.setdefault('extract-directory', '')
def install(self):
if self.parts is not None:
if not os.path.isdir(self.parts):
os.mkdir(self.parts)
download = zc.buildout.download.Download(self.buildout['buildout'],
hash_name=True, cache=self.buildout['buildout'].get('download-cache'))
path, is_temp = download(self.options['url'],
md5sum=self.options.get('md5sum'))
extract_dir = tempfile.mkdtemp(self.name)
self.logger.debug('Created working directory %r' % extract_dir)
setuptools.archive_util.unpack_archive(path, extract_dir)
# Delete destination directory if exist
if os.path.exists(self.destination):
shutil.rmtree(self.destination)
# Create destination directory
if not os.path.isdir(self.destination):
os.makedirs(self.destination)
base_dir = extract_dir
if not self.options.has_key('strip-top-level-dir'):
directories = os.listdir(extract_dir)
if len(directories) == 1 and os.path.isdir(os.path.join(extract_dir, directories[0])):
base_dir = os.path.join(extract_dir, directories[0])
else:
base_dir = self.calculate_base(extract_dir)
extract_dir = os.path.join(base_dir, self.options['extract-directory'])
for filename in os.listdir(extract_dir):
dest = os.path.join(self.destination, filename)
shutil.move(os.path.join(extract_dir, filename), dest)
shutil.rmtree(extract_dir)
self.logger.debug('Downloaded %r and saved to %r.' % (self.options['url'],
self.destination))
if self.parts is not None:
return [self.parts]
else:
return []
def update(self):
pass
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment