starter-kit/bots/machine/machine_core/directories.py
2019-08-22 16:05:13 +00:00

55 lines
1.7 KiB
Python

# This file is part of Cockpit.
#
# Copyright (C) 2019 Red Hat, Inc.
#
# Cockpit is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Cockpit 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
import os
import subprocess
from .constants import BOTS_DIR, BASE_DIR, GIT_DIR
def get_git_config(variable):
if not os.path.exists(GIT_DIR):
return None
try:
myenv = os.environ.copy()
myenv["GIT_DIR"] = GIT_DIR
return subprocess.check_output(["git", "config", variable], universal_newlines=True, env=myenv).strip()
except (OSError, subprocess.CalledProcessError): # 'git' not in PATH, or cmd fails
return None
_images_data_dir = None
def get_images_data_dir():
global _images_data_dir
if _images_data_dir is None:
_images_data_dir = get_git_config('cockpit.bots.images-data-dir')
if _images_data_dir is None:
_images_data_dir = os.path.join(os.environ.get("TEST_DATA", BOTS_DIR), "images")
return _images_data_dir
_temp_dir = None
def get_temp_dir():
global _temp_dir
if _temp_dir is None:
_temp_dir = os.path.join(os.environ.get("TEST_DATA", BASE_DIR), "tmp")
os.makedirs(_temp_dir, exist_ok=True)
return _temp_dir