2018-11-13 21:55:59 +01:00
|
|
|
"""WordOps Extract Core """
|
|
|
|
|
import os
|
2019-09-04 20:36:15 +02:00
|
|
|
import tarfile
|
|
|
|
|
|
2018-11-13 21:55:59 +01:00
|
|
|
from wo.core.logging import Log
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WOExtract():
|
|
|
|
|
"""Method to extract from tar.gz file"""
|
|
|
|
|
|
|
|
|
|
def extract(self, file, path):
|
|
|
|
|
"""Function to extract tar.gz file"""
|
|
|
|
|
try:
|
|
|
|
|
tar = tarfile.open(file)
|
|
|
|
|
tar.extractall(path=path)
|
|
|
|
|
tar.close()
|
|
|
|
|
os.remove(file)
|
|
|
|
|
return True
|
|
|
|
|
except tarfile.TarError as e:
|
|
|
|
|
Log.debug(self, "{0}".format(e))
|
2024-05-29 02:00:50 +02:00
|
|
|
Log.error(self, 'Unable to extract file {0}'.format(file))
|
2018-11-13 21:55:59 +01:00
|
|
|
return False
|