# coding: utf-8

# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT

from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
import re

from clselect.baseclselect.pkgmanager import BasePkgManager
from . import (
    CONFIG_DIR,
    is_major_version,
    create_config_dirs,
    ALT_NAMES,
    scan_node_versions,
    ALT_NODE_PREFIX)


class PkgManager(BasePkgManager):
    """
    Class responsible for all interactions with Yum, NodeJS version
    installation/removal and gathering info about already installed versions
    """

    def __init__(self):
        super(PkgManager, self).__init__()

    _config_dir = CONFIG_DIR

    # We should disable all repos but CL's, because Yum will not list anything
    # if some repo is broken

    # TODO We'll improve "Refresh UI button" and implement respective
    # command/option to reset both yum cache and ours in a separate task.
    # {yum_cmd} clean all --disablerepo='*' --enablerepo='cloudlinux-*';

    _alt_names = ALT_NAMES

    _log_file = '/var/log/cl-nodejs-last-yum.log'

    def format_cmd_string_for_installing(self, version):
        """
        Build the yum groupinstall argv for an alt-nodejs version.

        :param version: major NodeJS version, e.g. "18"
        :rtype: list[str]
        """
        group = self._alt_names + version
        return self._yum_argv + ['-y', 'groupinstall', group]

    def format_cmd_string_for_removing(self, version):
        """
        Build the yum groupremove argv for an alt-nodejs version.

        Testing repo must be enabled — otherwise yum cannot see groups that
        were originally installed from cloudlinux-updates-testing.

        :param version: major NodeJS version, e.g. "18"
        :rtype: list[str]
        """
        group = self._alt_names + version
        return self._yum_argv + [
            '--enablerepo=cloudlinux-updates-testing',
            '-y', 'groupremove', group,
        ]

    def _get_lock_file_path(self, version):
        return ALT_NODE_PREFIX + '{}/.lock'.format(version)

    def _verify_action(self, version):
        """Do some common pre-installation/uninstallation checks"""
        if not is_major_version(version):
            return 'Invalid version "{}". ' \
                   'It should be positive integer'.format(version)
        working_error = self._check_yum_in_progress()
        if working_error:
            return working_error

    def checkout_available(self):
        """
        Should return list of major versions available to install from
        currently enabled repos.
            Note, this can be an empty list if no NodeJS version has been
            released to repos yet or in case of network/repos/yum problem.
        OR
            None if our cache is updating right now because it was
            absent/outdated/corrupted/etc.
        :rtype: list | None
        """
        # Data example:
        # alt-nodejs6\n
        # alt-nodejs8\n
        # alt-nodejs9\n
        data = self._read_yum_cache()
        if not data:    # No cache, broken cache, outdated cache etc.
            self.update_yum_cache()
            data = self._read_yum_cache()
            if not data:
                return None

        available = re.findall(r'alt-nodejs(\d+)\n', data)
        return available

    def _scan_interpreter_versions(self):
        return scan_node_versions()

    def _create_config_dirs(self):
        create_config_dirs()

    @staticmethod
    def _is_version_in_use(version):
        # type: (str) -> bool
        """
        Check what passed version isn't used any web-application
        """
        from clselect.clselectnodejs.apps_manager import ApplicationsManager
        apps_manager = ApplicationsManager()
        return apps_manager.is_version_in_use(version)