Hackfut Security File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/lvestats/lib
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
lvestats
/
lib
/
📁
..
📄
__init__.py
(219 B)
📁
__pycache__
📁
chart
📄
cloudlinux_statistics.py
(24.38 KB)
📄
cloudlinux_statsnotifier.py
(5.21 KB)
📁
commons
📄
config.py
(2.94 KB)
📄
db_functions.py
(1.6 KB)
📄
dbengine.py
(9.29 KB)
📁
info
📄
jsonhandler.py
(482 B)
📄
lve_create_db.py
(1.92 KB)
📄
lve_list.py
(3.39 KB)
📄
lveinfolib.py
(39.95 KB)
📄
lveinfolib_gov.py
(13.59 KB)
📄
lvestats_server.py
(8.1 KB)
📄
notifications_helper.py
(5.45 KB)
📁
parsers
📄
server_id.py
(5.39 KB)
📄
snapshot.py
(7.39 KB)
📄
uidconverter.py
(5.11 KB)
📄
ustate.py
(8.65 KB)
Editing: db_functions.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 absolute_import from sqlalchemy.ext.compiler import compiles from sqlalchemy.sql import expression from sqlalchemy.types import Numeric class greatest(expression.FunctionElement): type = Numeric() name = "greatest" class least(expression.FunctionElement): type = Numeric() name = "least" @compiles(greatest) def default_greatest(element, compiler, **kw): return compiler.visit_function(element) @compiles(least) def default_least(element, compiler, **kw): return compiler.visit_function(element) @compiles(greatest, "sqlite") def case_greatest(element, compiler, **kw): arg1, arg2 = list(element.clauses) return "max(%s, %s)" % ( compiler.process(arg1), compiler.process(arg2), ) @compiles(least, "sqlite") def case_least(element, compiler, **kw): arg1, arg2 = list(element.clauses) return "min(%s, %s)" % ( compiler.process(arg1), compiler.process(arg2), ) class div(expression.FunctionElement): type = Numeric name = "div" @compiles(div) def default_div(element, compiler, **kw): arg1, arg2 = list(element.clauses) return "%s / %s" % ( compiler.process(arg1), compiler.process(arg2), ) @compiles(div, "mysql") def case_div(element, compiler, **kw): arg1, arg2 = list(element.clauses) return "%s div %s" % ( compiler.process(arg1), compiler.process(arg2), )
Upload File
Create Folder