✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.62
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/cloudlinux/venv/lib/python3.11/site-packages/clselect/clselectnodejs//pkgmanager.py
# 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)


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
18 Jun 2026 5.00 AM
root / root
0755
__pycache__
--
18 Jun 2026 5.00 AM
root / root
0755
__init__.py
1.979 KB
28 May 2026 9.16 AM
root / root
0644
apps_manager.py
1.501 KB
28 May 2026 9.16 AM
root / root
0644
config.py
1.528 KB
28 May 2026 9.16 AM
root / root
0644
node_manager.py
0.915 KB
28 May 2026 9.16 AM
root / root
0644
pkgmanager.py
3.873 KB
28 May 2026 9.16 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF