$97 GRAYBYTE WORDPRESS FILE MANAGER $73

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/cloudlinux/venv/lib/python3.11/site-packages/xray/internal/

HOME
Current File : /opt/cloudlinux/venv/lib/python3.11/site-packages/xray/internal//user_limits.py
# -*- coding: utf-8 -*-

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

"""
This module provides functions to retrieve any limits and usage for a specified user.
"""
import subprocess
import json


class LveCommandError(Exception):
    def __str__(self):
        return f"{self.args[0]}"


def get_lve_limits(username):
    """
    Retrieves the LVE limits for a specified user.

    Args:
        username (str): The username to retrieve LVE limits for.

    Returns:
        When user limits are found
        {
            "lve_cpu": {
                "limit": int
            },
            "lve_ep": {
                "limit": int
            },
            "lve_pmem": {
                "limit": int
            },
            "lve_iops": {
                "limit": int
            },
            "lve_io": {
                "limit": int
            },
            "lve_nproc": {
                "limit": int
            },
        }
        or an error
        {
            "error": str
        }
    """
    cmd = ["/usr/sbin/cloudlinux-limits", "get", "--username", username, "--json"]
    try:
        stdout = _call_lve_command(cmd)
        limits = json.loads(stdout)
    except LveCommandError as e:
        return {"error": str(e)}
    except json.JSONDecodeError as e:
        return {"error": f"Failed to decode JSON: {e}"}

    if 'users' not in limits or not any(user['username'] == username for user in limits['users']):
        return {"error": f"LVE Limit for user {username} not found"}

    user_limits = next(user['limits'] for user in limits['users'] if user['username'] == username)

    return {
        "lve_cpu": {
            "limit": int(user_limits['cpu']['all'].strip('*'))  # %
        },
        "lve_ep": {
            "limit": int(user_limits['ep'].strip('*'))  # proc num
        },
        "lve_pmem": {
            "limit": int(user_limits['pmem'].strip('*'))  # byte
        },
        "lve_iops": {
            "limit": int(user_limits['iops'].strip('*'))  # op per sec
        },
        "lve_io": {
            "limit": int(user_limits['io']['all'].strip('*')) * 1024  # byte
        },
        "lve_nproc": {
            "limit": int(user_limits['nproc'].strip('*'))  # proc num
        },
    }


def get_lve_usage(username):
    """
    Retrieves the current LVE usage for a specified user.

    Args:
        username (str): The username to retrieve LVE usage for.

    Returns:
        When user usage are found
        {
            "lve_cpu": {
                "usage": int
            },
            "lve_ep": {
                "usage": int
            },
            "lve_pmem": {
                "usage": int
            },
            "lve_iops": {
                "usage": int
            },
            "lve_io": {
                "usage": int
            },
            "lve_nproc": {
                "usage": int
            },
        }
        or empty dict when user sleep
        {}
        or an error
        {
            "error": str
        }
    """
    cmd = ["/usr/sbin/lveps", "-d", "-o", "id:15,ep:7,pno:7,cpu:7,mem:9,io:11,iops:11"]
    try:
        stdout = _call_lve_command(cmd)
        lines = stdout.strip().split('\n')
    except LveCommandError as e:
        return {"error": str(e)}

    usage = {}
    for line in lines[1:]:
        fields = line.split()
        if fields[0] == username:
            usage = {
                "lve_cpu": {
                    "usage": int(fields[3].strip('%'))  # (SPEED/CPU) %
                },
                "lve_ep": {
                    "usage": int(fields[1])  # (EP) proc num
                },
                "lve_pmem": {
                    "usage": int(fields[4]) * 1024 * 1024  # (MEM) byte
                },
                "lve_iops": {
                    "usage": int(fields[6])  # (IOPS) op per sec
                },
                "lve_io": {
                    "usage": int(fields[5])  # (IO) byte
                },
                "lve_nproc": {
                    "usage": int(fields[2])  # (PNO) proc num
                },
            }
            break

    return usage


def _call_lve_command(cmd):
    try:
        result = subprocess.run(cmd, capture_output=True, text=True, check=True)
        return result.stdout
    except subprocess.CalledProcessError as e:
        raise LveCommandError(f"Command '{cmd}' failed with error: {e}")
    except Exception as e:
        raise LveCommandError(f"An unexpected error occurred: {e}")

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
16 Dec 2025 9.31 PM
root / root
0755
__pycache__
--
17 Dec 2025 2.54 AM
root / root
0755
__init__.py
0.537 KB
20 Oct 2025 7.04 PM
root / root
0644
advanced_metrics.py
1.415 KB
20 Oct 2025 7.04 PM
root / root
0644
clwpos_safe_imports.py
2.213 KB
20 Oct 2025 7.04 PM
root / root
0644
constants.py
2.14 KB
20 Oct 2025 7.04 PM
root / root
0644
exceptions.py
3.693 KB
20 Oct 2025 7.04 PM
root / root
0644
fpm_utils.py
2.247 KB
20 Oct 2025 7.04 PM
root / root
0644
local_counters.py
3.369 KB
20 Oct 2025 7.04 PM
root / root
0644
nginx_utils.py
7.106 KB
20 Oct 2025 7.04 PM
root / root
0644
phpinfo_utils.py
5.998 KB
20 Oct 2025 7.04 PM
root / root
0644
types.py
23.512 KB
20 Oct 2025 7.04 PM
root / root
0644
user_limits.py
4.514 KB
20 Oct 2025 7.04 PM
root / root
0644
user_manager.py
5.854 KB
20 Oct 2025 7.04 PM
root / root
0644
user_plugin_utils.py
8.846 KB
20 Oct 2025 7.04 PM
root / root
0644
utils.py
27.327 KB
20 Oct 2025 7.04 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF