mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
introduce module_utils.urls.fetch_file
as a wrapper to download and save files (#19172)
* module_utils.urls: add fetch_file function * apt: use fetch_file instead of own download() * unarchive: use fetch_file instead of own codecopy * apt: add test for deb=http://… * unarchive: add test for a remote file download and unarchive * yum: replace fetch_rpm_from_url by fetch_file * use NamedTemporaryFile * don't add a dot to fileext, it's already there
This commit is contained in:
parent
c8ed5c29e9
commit
7c66c90afc
6 changed files with 86 additions and 85 deletions
|
@ -352,13 +352,11 @@ except ImportError:
|
|||
transaction_helpers = False
|
||||
|
||||
from contextlib import contextmanager
|
||||
from ansible.module_utils.urls import fetch_file
|
||||
|
||||
def_qf = "%{epoch}:%{name}-%{version}-%{release}.%{arch}"
|
||||
rpmbin = None
|
||||
|
||||
# 64k. Number of bytes to read at a time when manually downloading pkgs via a url
|
||||
BUFSIZE = 65536
|
||||
|
||||
|
||||
class YumModule(YumDnf):
|
||||
"""
|
||||
|
@ -384,28 +382,6 @@ class YumModule(YumDnf):
|
|||
self.pkg_mgr_name = "yum"
|
||||
self.lockfile = '/var/run/yum.pid'
|
||||
|
||||
def fetch_rpm_from_url(self, spec):
|
||||
# FIXME: Remove this once this PR is merged:
|
||||
# https://github.com/ansible/ansible/pull/19172
|
||||
|
||||
# download package so that we can query it
|
||||
package_name, dummy = os.path.splitext(str(spec.rsplit('/', 1)[1]))
|
||||
package_file = tempfile.NamedTemporaryFile(dir=self.module.tmpdir, prefix=package_name, suffix='.rpm', delete=False)
|
||||
self.module.add_cleanup_file(package_file.name)
|
||||
try:
|
||||
rsp, info = fetch_url(self.module, spec)
|
||||
if not rsp:
|
||||
self.module.fail_json(msg="Failure downloading %s, %s" % (spec, info['msg']))
|
||||
data = rsp.read(BUFSIZE)
|
||||
while data:
|
||||
package_file.write(data)
|
||||
data = rsp.read(BUFSIZE)
|
||||
package_file.close()
|
||||
except Exception as e:
|
||||
self.module.fail_json(msg="Failure downloading %s, %s" % (spec, to_native(e)))
|
||||
|
||||
return package_file.name
|
||||
|
||||
def yum_base(self):
|
||||
my = yum.YumBase()
|
||||
my.preconf.debuglevel = 0
|
||||
|
@ -884,7 +860,7 @@ class YumModule(YumDnf):
|
|||
|
||||
if '://' in spec:
|
||||
with self.set_env_proxy():
|
||||
package = self.fetch_rpm_from_url(spec)
|
||||
package = fetch_file(self.module, spec)
|
||||
else:
|
||||
package = spec
|
||||
|
||||
|
@ -1205,7 +1181,7 @@ class YumModule(YumDnf):
|
|||
elif '://' in spec:
|
||||
# download package so that we can check if it's already installed
|
||||
with self.set_env_proxy():
|
||||
package = self.fetch_rpm_from_url(spec)
|
||||
package = fetch_file(self.module, spec)
|
||||
envra = self.local_envra(package)
|
||||
|
||||
if envra is None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue