Merge branch 'develop' into ent-13185-ligera-modificacion-en-el-header

This commit is contained in:
Pablo Aragon 2024-04-10 14:37:10 +02:00
commit 220dfb3ad3
347 changed files with 5912 additions and 2021 deletions

View File

@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
import wmi, sys, winreg, os, subprocess, json, re
from datetime import datetime, timedelta
import argparse
import configparser
## Define modules
modules=[]
@ -333,22 +336,19 @@ def check_password_enforcement():
print("Failed to check password enforcement for users.", file=sys.stderr)
def check_login_audit_policy():
def check_login_audit_policy(auditpol_logon_category, auditpol_logon_success_conf, auditpol_logon_noaudit_conf):
try:
# Run the auditpol command to check the audit policy for Logon/Logoff
cmd_command = "auditpol /get /subcategory:Logon"
result = subprocess.run(cmd_command, shell=True, capture_output=True, text=True, check=True)
last_line = result.stdout.strip().split('\n')[-1]
cmd_command = f'auditpol /get /subcategory:"{auditpol_logon_category}"'
result = subprocess.run(cmd_command, shell=True, capture_output=True, text=False, check=True)
stdout = result.stdout.decode('cp850', errors='replace')
last_line = stdout.strip().split('\n')[-1]
cleaned_line = re.sub(' +', ' ', last_line)
# Interpret the result
if "Success and Failure" in result.stdout:
if auditpol_logon_success_conf in stdout:
result = 1
elif "Aciertos y errores" in result.stdout:
result = 1
elif "No Auditing" in result.stdout:
result = 0
elif "Sin auditoría" in result.stdout:
elif auditpol_logon_noaudit_conf in stdout:
result = 0
else:
print("Unable to determine audit policy for Logon/Logoff events.", file=sys.stderr)
@ -366,14 +366,38 @@ def check_login_audit_policy():
print("Failed to check audit policy using auditpol command.", file=sys.stderr)
return
def parse_parameter(config=None, key="", default=""):
try:
return config.get("CONF", key)
except Exception as e:
return default
if __name__ == "__main__":
# Parse arguments
parser = argparse.ArgumentParser(description= "", formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('--conf', help='Path to configuration file', metavar='<conf_file>', required=False)
args = parser.parse_args()
config = configparser.ConfigParser()
if(args.conf):
try:
with open(args.conf, 'r', encoding='utf-8') as f:
content = f.read()
config.read_string('[CONF]\n' + content)
except Exception as e:
print("Error while reading configuration file, using default values: "+str(e), file=sys.stderr)
auditpol_logon_category = parse_parameter(config, "auditpol_logon_category", "Logon")
auditpol_logon_success_conf = parse_parameter(config, "auditpol_logon_success_conf", "Success and Failure")
auditpol_logon_noaudit_conf = parse_parameter(config, "auditpol_logon_noaudit_conf", "No Auditing")
check_antivirus_status()
check_locksreen_enables()
get_windows_update_info()
is_firewall_enabled()
check_password_enforcement()
check_login_audit_policy()
check_login_audit_policy(auditpol_logon_category, auditpol_logon_success_conf, auditpol_logon_noaudit_conf)
for module in modules:
print_module(module, True)

View File

@ -1,5 +1,5 @@
package: pandorafms-agent-unix
Version: 7.0NG.776-240408
Version: 7.0NG.776-240410
Architecture: all
Priority: optional
Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
pandora_version="7.0NG.776-240408"
pandora_version="7.0NG.776-240410"
echo "Test if you has the tools for to make the packages."
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null

View File

@ -1039,7 +1039,7 @@ my $Sem = undef;
my $ThreadSem = undef;
use constant AGENT_VERSION => '7.0NG.776';
use constant AGENT_BUILD => '240408';
use constant AGENT_BUILD => '240410';
# Agent log default file size maximum and instances
use constant DEFAULT_MAX_LOG_SIZE => 600000;

View File

@ -4,7 +4,7 @@
%global __os_install_post %{nil}
%define name pandorafms_agent_linux
%define version 7.0NG.776
%define release 240408
%define release 240410
Summary: Pandora FMS Linux agent, PERL version
Name: %{name}

View File

@ -5,7 +5,7 @@
%define name pandorafms_agent_linux_bin
%define source_name pandorafms_agent_linux
%define version 7.0NG.776
%define release 240408
%define release 240410
%define debug_package %{nil}
Summary: Pandora FMS Linux agent, binary version

View File

@ -5,7 +5,7 @@
%define name pandorafms_agent_linux_bin
%define source_name pandorafms_agent_linux
%define version 7.0NG.776
%define release 240408
%define release 240410
%define debug_package %{nil}
Summary: Pandora FMS Linux agent, binary version

View File

@ -5,7 +5,7 @@
%define name pandorafms_agent_linux_bin
%define source_name pandorafms_agent_linux
%define version 7.0NG.776
%define release 240408
%define release 240410
Summary: Pandora FMS Linux agent, binary version
Name: %{name}

View File

@ -4,7 +4,7 @@
%global __os_install_post %{nil}
%define name pandorafms_agent_linux
%define version 7.0NG.776
%define release 240408
%define release 240410
Summary: Pandora FMS Linux agent, PERL version
Name: %{name}

View File

@ -10,7 +10,7 @@
# **********************************************************************
PI_VERSION="7.0NG.776"
PI_BUILD="240408"
PI_BUILD="240410"
OS_NAME=`uname -s`
FORCE=0

View File

@ -0,0 +1,8 @@
auditpol_logon_category = Logon
#auditpol_logon_category = Inicio de sesión
auditpol_logon_success_conf = Success and Failure
#auditpol_logon_success_conf = Aciertos y errores
auditpol_logon_noaudit_conf = No Auditing
#auditpol_logon_noaudit_conf = Sin auditoría

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c58891fbd16bf80f288e0ff4751801aa02dbf4e6c914625b4d49a364c7e0b511
size 7829249
oid sha256:293dc77d39c303793a73bf83a2698c5886331f24b8abed4a40566474a64e3f60
size 7735667

View File

@ -186,7 +186,7 @@ UpgradeApplicationID
{}
Version
{240408}
{240410}
ViewReadme
{Yes}

View File

@ -30,7 +30,7 @@ using namespace Pandora;
using namespace Pandora_Strutils;
#define PATH_SIZE _MAX_PATH+1
#define PANDORA_VERSION ("7.0NG.776 Build 240408")
#define PANDORA_VERSION ("7.0NG.776 Build 240410")
string pandora_path;
string pandora_dir;

View File

@ -11,7 +11,7 @@ BEGIN
VALUE "LegalCopyright", "Pandora FMS"
VALUE "OriginalFilename", "PandoraAgent.exe"
VALUE "ProductName", "Pandora FMS Windows Agent"
VALUE "ProductVersion", "(7.0NG.776(Build 240408))"
VALUE "ProductVersion", "(7.0NG.776(Build 240410))"
VALUE "FileVersion", "1.0.0.0"
END
END

View File

@ -1,5 +1,5 @@
package: pandorafms-console
Version: 7.0NG.776-240408
Version: 7.0NG.776-240410
Architecture: all
Priority: optional
Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
pandora_version="7.0NG.776-240408"
pandora_version="7.0NG.776-240410"
package_pear=0
package_pandora=1

View File

@ -4675,8 +4675,9 @@
return (
"function" == typeof _ &&
"function" == typeof Symbol &&
"symbol" == typeof _("foo") &&
"symbol" == typeof Symbol("bar") && w()
"symbol" == typeof _("foo") &&
"symbol" == typeof Symbol("bar") &&
w()
);
};
},
@ -13386,7 +13387,9 @@
null != s &&
!w(s)
) ||
j.test(s) || !x.test(s) || (null != i && s in Object(i))
j.test(s) ||
!x.test(s) ||
(null != i && s in Object(i))
);
};
},
@ -20230,7 +20233,8 @@
var i = s.memoizedState;
if (
(null === i &&
null !== (s = s.alternate) && (i = s.memoizedState),
null !== (s = s.alternate) &&
(i = s.memoizedState),
null !== i)
)
return i.dehydrated;
@ -21697,7 +21701,8 @@
null !== ae &&
((Z = ae),
null !== X &&
null != (ae = Kb(ee, X)) && U.push(tf(ee, ae, Z))),
null != (ae = Kb(ee, X)) &&
U.push(tf(ee, ae, Z))),
Y)
)
break;
@ -21894,9 +21899,9 @@
}
})(s, u)) &&
0 < (_ = oe(_, "onBeforeInput")).length &&
((w = new fr("onBeforeInput", "beforeinput", null, u, w)),
j.push({ event: w, listeners: _ }),
(w.data = ce));
((w = new fr("onBeforeInput", "beforeinput", null, u, w)),
j.push({ event: w, listeners: _ }),
(w.data = ce));
}
se(j, i);
});
@ -22535,8 +22540,8 @@
var U = s.alternate;
null !== U &&
(P = (U = U.updateQueue).lastBaseUpdate) !== j &&
(null === P ? (U.firstBaseUpdate = $) : (P.next = $),
(U.lastBaseUpdate = B));
(null === P ? (U.firstBaseUpdate = $) : (P.next = $),
(U.lastBaseUpdate = B));
}
if (null !== x) {
var Y = w.baseState;
@ -22675,7 +22680,8 @@
? s.shouldComponentUpdate(_, x, j)
: !i.prototype ||
!i.prototype.isPureReactComponent ||
!Ie(u, _) || !Ie(w, x);
!Ie(u, _) ||
!Ie(w, x);
}
function ph(s, i, u) {
var _ = !1,
@ -25167,11 +25173,11 @@
(s.sibling = null),
5 === s.tag &&
null !== (i = s.stateNode) &&
(delete i[gn],
delete i[yn],
delete i[vn],
delete i[_n],
delete i[wn]),
(delete i[gn],
delete i[yn],
delete i[vn],
delete i[_n],
delete i[wn]),
(s.stateNode = null),
(s.return = null),
(s.dependencies = null),
@ -25282,7 +25288,8 @@
case 15:
if (
!Po &&
null !== (_ = u.updateQueue) && null !== (_ = _.lastEffect)
null !== (_ = u.updateQueue) &&
null !== (_ = _.lastEffect)
) {
w = _ = _.next;
do {
@ -26026,7 +26033,8 @@
return !0;
})(w) &&
(2 === (i = Jk(s, _)) &&
0 !== (x = xc(s)) && ((_ = x), (i = Ok(s, x))),
0 !== (x = xc(s)) &&
((_ = x), (i = Ok(s, x))),
1 === i))
)
throw ((u = Go), Lk(s, 0), Dk(s, _), Ek(s, yt()), u);
@ -28469,7 +28477,8 @@
return (
void 0 !== this._readableState &&
void 0 !== this._writableState &&
this._readableState.destroyed && this._writableState.destroyed
this._readableState.destroyed &&
this._writableState.destroyed
);
},
set: function set(s) {
@ -29506,7 +29515,8 @@
return (
!!$.call(this, s) ||
(this === Writable &&
s && s._writableState instanceof WritableState)
s &&
s._writableState instanceof WritableState)
);
}
}))
@ -33989,7 +33999,8 @@
j = s;
if (
"object" == typeof s &&
(j = s[(_ = Object.keys(s)[0])]) && j._elem
(j = s[(_ = Object.keys(s)[0])]) &&
j._elem
)
return (
(j._elem.name = _),
@ -46937,10 +46948,11 @@
!!Jl(s) ||
(!!s &&
"object" == typeof s &&
!_isString(s) &&
(0 === s.length ||
(s.length > 0 &&
s.hasOwnProperty(0) && s.hasOwnProperty(s.length - 1))))
!_isString(s) &&
(0 === s.length ||
(s.length > 0 &&
s.hasOwnProperty(0) &&
s.hasOwnProperty(s.length - 1))))
);
});
var sc = "undefined" != typeof Symbol ? Symbol.iterator : "@@iterator";
@ -48536,10 +48548,10 @@
? !(!s || "object" != typeof s || "string" != typeof s.uri)
: ("undefined" != typeof File && s instanceof File) ||
("undefined" != typeof Blob && s instanceof Blob) ||
!!ArrayBuffer.isView(s) ||
(null !== s &&
"object" == typeof s &&
"function" == typeof s.pipe)
!!ArrayBuffer.isView(s) ||
(null !== s &&
"object" == typeof s &&
"function" == typeof s.pipe)
);
}
function isArrayOfFile(s, i) {
@ -49050,7 +49062,8 @@
"object" == typeof i &&
null !== i &&
"primitive" in i &&
"function" == typeof i.primitive && i.primitive() === s,
"function" == typeof i.primitive &&
i.primitive() === s,
hasClass = (s, i) =>
"object" == typeof i &&
null !== i &&
@ -58899,13 +58912,12 @@
const parameterEquals = (i, u) =>
!!s.isParameterElement(i) &&
!!s.isParameterElement(u) &&
!!s.isStringElement(i.name) &&
!!s.isStringElement(i.in) &&
!!s.isStringElement(u.name) &&
!!s.isStringElement(u.in) &&
serializers_value(i.name) ===
serializers_value(u.name) &&
serializers_value(i.in) === serializers_value(u.in),
!!s.isStringElement(i.name) &&
!!s.isStringElement(i.in) &&
!!s.isStringElement(u.name) &&
!!s.isStringElement(u.in) &&
serializers_value(i.name) === serializers_value(u.name) &&
serializers_value(i.in) === serializers_value(u.in),
i = [];
return {
visitor: {
@ -62689,20 +62701,18 @@
He.createElement(
"div",
{ className: "modal-ux-content" },
j
.valueSeq()
.map((j, B) =>
He.createElement(P, {
key: B,
AST: x,
definitions: j,
getComponent: u,
errSelectors: _,
authSelectors: s,
authActions: i,
specSelectors: w
})
)
j.valueSeq().map((j, B) =>
He.createElement(P, {
key: B,
AST: x,
definitions: j,
getComponent: u,
errSelectors: _,
authSelectors: s,
authActions: i,
specSelectors: w
})
)
)
)
)
@ -65124,15 +65134,13 @@
He.createElement(
"tbody",
null,
s
.entrySeq()
.map(([s, i]) =>
He.createElement(u, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
s.entrySeq().map(([s, i]) =>
He.createElement(u, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
)
)
)
@ -65560,15 +65568,13 @@
He.createElement(_e, { source: _.get("description") })
),
ie && le.size
? le
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
? le.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
: null,
ae && _.get("content")
? He.createElement(
@ -66472,26 +66478,22 @@
")"
),
Z && et.size
? et
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
? et.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
: null,
X && tt.size
? tt
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
? tt.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
: null
),
He.createElement(
@ -68903,16 +68905,14 @@
He.createElement("span", { className: "brace-close" }, "}")
),
ye.size
? ye
.entrySeq()
.map(([s, i]) =>
He.createElement(Re, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: "property"
})
)
? ye.entrySeq().map(([s, i]) =>
He.createElement(Re, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: "property"
})
)
: null
);
}
@ -69093,28 +69093,24 @@
")"
),
ae.size
? ae
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
? ae.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
: null,
P && ee.size
? ee
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
? ee.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
: null,
Z ? He.createElement(ce, { source: Z }) : null,
ie &&
@ -69448,12 +69444,13 @@
return (
!(s >= 55296 && s <= 57343) &&
!(s >= 64976 && s <= 65007) &&
65535 != (65535 & s) &&
65534 != (65535 & s) &&
!(s >= 0 && s <= 8) &&
11 !== s &&
!(s >= 14 && s <= 31) &&
!(s >= 127 && s <= 159) && !(s > 1114111)
65535 != (65535 & s) &&
65534 != (65535 & s) &&
!(s >= 0 && s <= 8) &&
11 !== s &&
!(s >= 14 && s <= 31) &&
!(s >= 127 && s <= 159) &&
!(s > 1114111)
);
}
function fromCodePoint(s) {
@ -71014,37 +71011,37 @@
return (
P !== $ + 2 &&
!(P + 1 >= U || 58 !== s.src.charCodeAt(++P)) &&
(_ ||
(P++,
s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.refs || (s.env.footnotes.refs = {}),
(B = s.src.slice($ + 2, P - 2)),
(s.env.footnotes.refs[":" + B] = -1),
s.tokens.push({
type: "footnote_reference_open",
label: B,
level: s.level++
}),
(w = s.bMarks[i]),
(x = s.tShift[i]),
(j = s.parentType),
(s.tShift[i] = s.skipSpaces(P) - P),
(s.bMarks[i] = P),
(s.blkIndent += 4),
(s.parentType = "footnote"),
s.tShift[i] < s.blkIndent &&
((s.tShift[i] += s.blkIndent),
(s.bMarks[i] -= s.blkIndent)),
s.parser.tokenize(s, i, u, !0),
(s.parentType = j),
(s.blkIndent -= 4),
(s.tShift[i] = x),
(s.bMarks[i] = w),
s.tokens.push({
type: "footnote_reference_close",
level: --s.level
})),
!0)
(_ ||
(P++,
s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.refs || (s.env.footnotes.refs = {}),
(B = s.src.slice($ + 2, P - 2)),
(s.env.footnotes.refs[":" + B] = -1),
s.tokens.push({
type: "footnote_reference_open",
label: B,
level: s.level++
}),
(w = s.bMarks[i]),
(x = s.tShift[i]),
(j = s.parentType),
(s.tShift[i] = s.skipSpaces(P) - P),
(s.bMarks[i] = P),
(s.blkIndent += 4),
(s.parentType = "footnote"),
s.tShift[i] < s.blkIndent &&
((s.tShift[i] += s.blkIndent),
(s.bMarks[i] -= s.blkIndent)),
s.parser.tokenize(s, i, u, !0),
(s.parentType = j),
(s.blkIndent -= 4),
(s.tShift[i] = x),
(s.bMarks[i] = w),
s.tokens.push({
type: "footnote_reference_close",
level: --s.level
})),
!0)
);
},
["paragraph"]
@ -71107,32 +71104,32 @@
return (
!(j >= u) &&
!(s.tShift[j] < s.blkIndent) &&
!(s.tShift[j] - s.blkIndent > 3) &&
!((w = s.bMarks[j] + s.tShift[j]) >= (x = s.eMarks[j])) &&
(45 === (_ = s.src.charCodeAt(w)) || 61 === _) &&
((w = s.skipChars(w, _)),
!((w = s.skipSpaces(w)) < x) &&
((w = s.bMarks[i] + s.tShift[i]),
(s.line = j + 1),
s.tokens.push({
type: "heading_open",
hLevel: 61 === _ ? 1 : 2,
lines: [i, s.line],
level: s.level
}),
s.tokens.push({
type: "inline",
content: s.src.slice(w, s.eMarks[i]).trim(),
level: s.level + 1,
lines: [i, s.line - 1],
children: []
}),
s.tokens.push({
type: "heading_close",
hLevel: 61 === _ ? 1 : 2,
level: s.level
}),
!0))
!(s.tShift[j] - s.blkIndent > 3) &&
!((w = s.bMarks[j] + s.tShift[j]) >= (x = s.eMarks[j])) &&
(45 === (_ = s.src.charCodeAt(w)) || 61 === _) &&
((w = s.skipChars(w, _)),
!((w = s.skipSpaces(w)) < x) &&
((w = s.bMarks[i] + s.tShift[i]),
(s.line = j + 1),
s.tokens.push({
type: "heading_open",
hLevel: 61 === _ ? 1 : 2,
lines: [i, s.line],
level: s.level
}),
s.tokens.push({
type: "inline",
content: s.src.slice(w, s.eMarks[i]).trim(),
level: s.level + 1,
lines: [i, s.line - 1],
children: []
}),
s.tokens.push({
type: "heading_close",
hLevel: 61 === _ ? 1 : 2,
level: s.level
}),
!0))
);
}
],
@ -72276,31 +72273,31 @@
return (
!(P + 2 >= j) &&
94 === s.src.charCodeAt(P) &&
91 === s.src.charCodeAt(P + 1) &&
!(s.level >= s.options.maxNesting) &&
((u = P + 2),
!((_ = parseLinkLabel(s, P + 1)) < 0) &&
(i ||
(s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.list || (s.env.footnotes.list = []),
(w = s.env.footnotes.list.length),
(s.pos = u),
(s.posMax = _),
s.push({
type: "footnote_ref",
id: w,
level: s.level
}),
s.linkLevel++,
(x = s.tokens.length),
s.parser.tokenize(s),
(s.env.footnotes.list[w] = {
tokens: s.tokens.splice(x)
}),
s.linkLevel--),
(s.pos = _ + 1),
(s.posMax = j),
!0))
91 === s.src.charCodeAt(P + 1) &&
!(s.level >= s.options.maxNesting) &&
((u = P + 2),
!((_ = parseLinkLabel(s, P + 1)) < 0) &&
(i ||
(s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.list || (s.env.footnotes.list = []),
(w = s.env.footnotes.list.length),
(s.pos = u),
(s.posMax = _),
s.push({
type: "footnote_ref",
id: w,
level: s.level
}),
s.linkLevel++,
(x = s.tokens.length),
s.parser.tokenize(s),
(s.env.footnotes.list[w] = {
tokens: s.tokens.splice(x)
}),
s.linkLevel--),
(s.pos = _ + 1),
(s.posMax = j),
!0))
);
}
],
@ -72326,27 +72323,27 @@
return (
_ !== P + 2 &&
!(_ >= j) &&
(_++,
(u = s.src.slice(P + 2, _ - 1)),
void 0 !== s.env.footnotes.refs[":" + u] &&
(i ||
(s.env.footnotes.list || (s.env.footnotes.list = []),
s.env.footnotes.refs[":" + u] < 0
? ((w = s.env.footnotes.list.length),
(s.env.footnotes.list[w] = { label: u, count: 0 }),
(s.env.footnotes.refs[":" + u] = w))
: (w = s.env.footnotes.refs[":" + u]),
(x = s.env.footnotes.list[w].count),
s.env.footnotes.list[w].count++,
s.push({
type: "footnote_ref",
id: w,
subId: x,
level: s.level
})),
(s.pos = _),
(s.posMax = j),
!0))
(_++,
(u = s.src.slice(P + 2, _ - 1)),
void 0 !== s.env.footnotes.refs[":" + u] &&
(i ||
(s.env.footnotes.list || (s.env.footnotes.list = []),
s.env.footnotes.refs[":" + u] < 0
? ((w = s.env.footnotes.list.length),
(s.env.footnotes.list[w] = { label: u, count: 0 }),
(s.env.footnotes.refs[":" + u] = w))
: (w = s.env.footnotes.refs[":" + u]),
(x = s.env.footnotes.list[w].count),
s.env.footnotes.list[w].count++,
s.push({
type: "footnote_ref",
id: w,
subId: x,
level: s.level
})),
(s.pos = _),
(s.posMax = j),
!0))
);
}
],
@ -72362,41 +72359,41 @@
return (
60 === s.src.charCodeAt(P) &&
!((u = s.src.slice(P)).indexOf(">") < 0) &&
((_ = u.match(NI))
? !(II.indexOf(_[1].toLowerCase()) < 0) &&
((j = normalizeLink((x = _[0].slice(1, -1)))),
!!s.parser.validateLink(x) &&
(i ||
(s.push({
type: "link_open",
href: j,
level: s.level
}),
s.push({
type: "text",
content: x,
level: s.level + 1
}),
s.push({ type: "link_close", level: s.level })),
(s.pos += _[0].length),
!0))
: !!(w = u.match(PI)) &&
((j = normalizeLink("mailto:" + (x = w[0].slice(1, -1)))),
!!s.parser.validateLink(j) &&
(i ||
(s.push({
type: "link_open",
href: j,
level: s.level
}),
s.push({
type: "text",
content: x,
level: s.level + 1
}),
s.push({ type: "link_close", level: s.level })),
(s.pos += w[0].length),
!0)))
((_ = u.match(NI))
? !(II.indexOf(_[1].toLowerCase()) < 0) &&
((j = normalizeLink((x = _[0].slice(1, -1)))),
!!s.parser.validateLink(x) &&
(i ||
(s.push({
type: "link_open",
href: j,
level: s.level
}),
s.push({
type: "text",
content: x,
level: s.level + 1
}),
s.push({ type: "link_close", level: s.level })),
(s.pos += _[0].length),
!0))
: !!(w = u.match(PI)) &&
((j = normalizeLink("mailto:" + (x = w[0].slice(1, -1)))),
!!s.parser.validateLink(j) &&
(i ||
(s.push({
type: "link_open",
href: j,
level: s.level
}),
s.push({
type: "text",
content: x,
level: s.level + 1
}),
s.push({ type: "link_close", level: s.level })),
(s.pos += w[0].length),
!0)))
);
}
],
@ -72420,15 +72417,15 @@
return i >= 97 && i <= 122;
})(u)
) &&
!!(_ = s.src.slice(x).match(DI)) &&
(i ||
s.push({
type: "htmltag",
content: s.src.slice(x, x + _[0].length),
level: s.level
}),
(s.pos += _[0].length),
!0))
!!(_ = s.src.slice(x).match(DI)) &&
(i ||
s.push({
type: "htmltag",
content: s.src.slice(x, x + _[0].length),
level: s.level
}),
(s.pos += _[0].length),
!0))
);
}
],
@ -73554,7 +73551,7 @@
return (
!(!s || !i) &&
!this.hasFullProtocolRegex.test(i) &&
!this.hasWordCharAfterProtocolRegex.test(s)
!this.hasWordCharAfterProtocolRegex.test(s)
);
}),
(UrlMatchValidator.hasFullProtocolRegex = /^[A-Za-z][-.+A-Za-z0-9]*:\/\//),
@ -75977,19 +75974,17 @@
? He.createElement(
"select",
{ "data-variable": s, onChange: $ },
u
.get("enum")
.map(u =>
He.createElement(
"option",
{
selected: u === w(i, s),
key: u,
value: u
},
u
)
u.get("enum").map(u =>
He.createElement(
"option",
{
selected: u === w(i, s),
key: u,
value: u
},
u
)
)
)
: He.createElement("input", {
type: "text",
@ -80766,7 +80761,8 @@
const { examples: i, example: u, default: _ } = s;
return (
!!(Array.isArray(i) && i.length >= 1) ||
void 0 !== _ || void 0 !== u
void 0 !== _ ||
void 0 !== u
);
},
extractExample = s => {

View File

@ -2323,7 +2323,8 @@ var ve = {
return (
void 0 !== this._readableState &&
void 0 !== this._writableState &&
this._readableState.destroyed && this._writableState.destroyed
this._readableState.destroyed &&
this._writableState.destroyed
);
},
set: function set(e) {
@ -3336,7 +3337,8 @@ var ve = {
return (
!!c.call(this, e) ||
(this === Writable &&
e && e._writableState instanceof WritableState)
e &&
e._writableState instanceof WritableState)
);
}
}))
@ -10833,20 +10835,18 @@ var we = {};
Ke.default.createElement(
"div",
{ className: "modal-ux-content" },
s
.valueSeq()
.map((s, i) =>
Ke.default.createElement(l, {
key: i,
AST: o,
definitions: s,
getComponent: r,
errSelectors: n,
authSelectors: e,
authActions: t,
specSelectors: a
})
)
s.valueSeq().map((s, i) =>
Ke.default.createElement(l, {
key: i,
AST: o,
definitions: s,
getComponent: r,
errSelectors: n,
authSelectors: e,
authActions: t,
specSelectors: a
})
)
)
)
)
@ -13194,15 +13194,13 @@ var we = {};
Ke.default.createElement(
"tbody",
null,
e
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(r, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
e.entrySeq().map(([e, t]) =>
Ke.default.createElement(r, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
)
)
)
@ -13627,15 +13625,13 @@ var we = {};
Ke.default.createElement(x, { source: n.get("description") })
),
g && y.size
? y
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
? y.entrySeq().map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
: null,
h && n.get("content")
? Ke.default.createElement(
@ -16688,16 +16684,14 @@ var we = {};
Ke.default.createElement("span", { className: "brace-close" }, "}")
),
w.size
? w
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(R, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
? w.entrySeq().map(([e, t]) =>
Ke.default.createElement(R, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
: null
);
}
@ -16748,16 +16742,14 @@ var we = {};
{ title: _, expanded: n <= a, collapsedContent: "[...]" },
"[",
d.size
? d
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(y, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
? d.entrySeq().map(([e, t]) =>
Ke.default.createElement(y, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
: null,
i
? Ke.default.createElement(f, { source: i })
@ -16874,28 +16866,24 @@ var we = {};
")"
),
h.size
? h
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ka
})
)
? h.entrySeq().map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ka
})
)
: null,
l && f.size
? f
.entrySeq()
.map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ka
})
)
? f.entrySeq().map(([e, t]) =>
Ke.default.createElement(v, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ka
})
)
: null,
m ? Ke.default.createElement(S, { source: m }) : null,
g &&
@ -18263,15 +18251,13 @@ var we = {};
")"
),
x && c.size
? c
.entrySeq()
.map(([e, r]) =>
Ke.default.createElement(t, {
key: `${e}-${r}`,
xKey: e,
xVal: r
})
)
? c.entrySeq().map(([e, r]) =>
Ke.default.createElement(t, {
key: `${e}-${r}`,
xKey: e,
xVal: r
})
)
: null
),
Ke.default.createElement(
@ -20384,10 +20370,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !c
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !c
}
)
},
c &&
Ke.default.createElement(
@ -20577,10 +20565,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !c
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !c
}
)
},
c &&
Ke.default.createElement(
@ -20661,10 +20651,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !c
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !c
}
)
},
c &&
Ke.default.createElement(
@ -21224,10 +21216,12 @@ var we = {};
"li",
{
key: e,
className: (0,
ha.default)("json-schema-2020-12-$vocabulary-uri", {
"json-schema-2020-12-$vocabulary-uri--disabled": !t
})
className: (0, ha.default)(
"json-schema-2020-12-$vocabulary-uri",
{
"json-schema-2020-12-$vocabulary-uri--disabled": !t
}
)
},
Ke.default.createElement(
"span",
@ -21422,10 +21416,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !n
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !n
}
)
},
n &&
Ke.default.createElement(
@ -21512,10 +21508,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !a
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !a
}
)
},
a &&
Ke.default.createElement(
@ -21583,10 +21581,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !a
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !a
}
)
},
a &&
Ke.default.createElement(
@ -21654,10 +21654,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !a
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !a
}
)
},
a &&
Ke.default.createElement(
@ -21813,10 +21815,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !n
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !n
}
)
},
n &&
Ke.default.createElement(
@ -21877,10 +21881,12 @@ var we = {};
Ke.default.createElement(
"ul",
{
className: (0,
ha.default)("json-schema-2020-12-keyword__children", {
"json-schema-2020-12-keyword__children--collapsed": !a
})
className: (0, ha.default)(
"json-schema-2020-12-keyword__children",
{
"json-schema-2020-12-keyword__children--collapsed": !a
}
)
},
a &&
Ke.default.createElement(

View File

@ -4587,8 +4587,9 @@
return (
"function" == typeof _ &&
"function" == typeof Symbol &&
"symbol" == typeof _("foo") &&
"symbol" == typeof Symbol("bar") && w()
"symbol" == typeof _("foo") &&
"symbol" == typeof Symbol("bar") &&
w()
);
};
},
@ -13205,7 +13206,9 @@
null != s &&
!w(s)
) ||
j.test(s) || !x.test(s) || (null != i && s in Object(i))
j.test(s) ||
!x.test(s) ||
(null != i && s in Object(i))
);
};
},
@ -19958,7 +19961,8 @@
var i = s.memoizedState;
if (
(null === i &&
null !== (s = s.alternate) && (i = s.memoizedState),
null !== (s = s.alternate) &&
(i = s.memoizedState),
null !== i)
)
return i.dehydrated;
@ -21407,7 +21411,8 @@
null !== ae &&
((Z = ae),
null !== X &&
null != (ae = Kb(ee, X)) && U.push(tf(ee, ae, Z))),
null != (ae = Kb(ee, X)) &&
U.push(tf(ee, ae, Z))),
Y)
)
break;
@ -21603,9 +21608,9 @@
}
})(s, u)) &&
0 < (_ = oe(_, "onBeforeInput")).length &&
((w = new fr("onBeforeInput", "beforeinput", null, u, w)),
j.push({ event: w, listeners: _ }),
(w.data = ce));
((w = new fr("onBeforeInput", "beforeinput", null, u, w)),
j.push({ event: w, listeners: _ }),
(w.data = ce));
}
se(j, i);
});
@ -22232,8 +22237,8 @@
var U = s.alternate;
null !== U &&
(P = (U = U.updateQueue).lastBaseUpdate) !== j &&
(null === P ? (U.firstBaseUpdate = $) : (P.next = $),
(U.lastBaseUpdate = B));
(null === P ? (U.firstBaseUpdate = $) : (P.next = $),
(U.lastBaseUpdate = B));
}
if (null !== x) {
var Y = w.baseState;
@ -22372,7 +22377,8 @@
? s.shouldComponentUpdate(_, x, j)
: !i.prototype ||
!i.prototype.isPureReactComponent ||
!Ie(u, _) || !Ie(w, x);
!Ie(u, _) ||
!Ie(w, x);
}
function ph(s, i, u) {
var _ = !1,
@ -24842,11 +24848,11 @@
(s.sibling = null),
5 === s.tag &&
null !== (i = s.stateNode) &&
(delete i[gn],
delete i[yn],
delete i[vn],
delete i[_n],
delete i[wn]),
(delete i[gn],
delete i[yn],
delete i[vn],
delete i[_n],
delete i[wn]),
(s.stateNode = null),
(s.return = null),
(s.dependencies = null),
@ -24957,7 +24963,8 @@
case 15:
if (
!Po &&
null !== (_ = u.updateQueue) && null !== (_ = _.lastEffect)
null !== (_ = u.updateQueue) &&
null !== (_ = _.lastEffect)
) {
w = _ = _.next;
do {
@ -25693,7 +25700,8 @@
return !0;
})(w) &&
(2 === (i = Jk(s, _)) &&
0 !== (x = xc(s)) && ((_ = x), (i = Ok(s, x))),
0 !== (x = xc(s)) &&
((_ = x), (i = Ok(s, x))),
1 === i))
)
throw ((u = Go), Lk(s, 0), Dk(s, _), Ek(s, yt()), u);
@ -28109,7 +28117,8 @@
return (
void 0 !== this._readableState &&
void 0 !== this._writableState &&
this._readableState.destroyed && this._writableState.destroyed
this._readableState.destroyed &&
this._writableState.destroyed
);
},
set: function set(s) {
@ -29135,7 +29144,8 @@
return (
!!$.call(this, s) ||
(this === Writable &&
s && s._writableState instanceof WritableState)
s &&
s._writableState instanceof WritableState)
);
}
}))
@ -33559,7 +33569,8 @@
j = s;
if (
"object" == typeof s &&
(j = s[(_ = Object.keys(s)[0])]) && j._elem
(j = s[(_ = Object.keys(s)[0])]) &&
j._elem
)
return (
(j._elem.name = _),
@ -46143,10 +46154,11 @@
!!Jl(s) ||
(!!s &&
"object" == typeof s &&
!_isString(s) &&
(0 === s.length ||
(s.length > 0 &&
s.hasOwnProperty(0) && s.hasOwnProperty(s.length - 1))))
!_isString(s) &&
(0 === s.length ||
(s.length > 0 &&
s.hasOwnProperty(0) &&
s.hasOwnProperty(s.length - 1))))
);
});
var sc = "undefined" != typeof Symbol ? Symbol.iterator : "@@iterator";
@ -47695,10 +47707,8 @@
? !(!s || "object" != typeof s || "string" != typeof s.uri)
: ("undefined" != typeof File && s instanceof File) ||
("undefined" != typeof Blob && s instanceof Blob) ||
!!ArrayBuffer.isView(s) ||
(null !== s &&
"object" == typeof s &&
"function" == typeof s.pipe)
!!ArrayBuffer.isView(s) ||
(null !== s && "object" == typeof s && "function" == typeof s.pipe)
);
}
function isArrayOfFile(s, i) {
@ -48197,7 +48207,8 @@
"object" == typeof i &&
null !== i &&
"primitive" in i &&
"function" == typeof i.primitive && i.primitive() === s,
"function" == typeof i.primitive &&
i.primitive() === s,
hasClass = (s, i) =>
"object" == typeof i &&
null !== i &&
@ -57589,12 +57600,12 @@
const parameterEquals = (i, u) =>
!!s.isParameterElement(i) &&
!!s.isParameterElement(u) &&
!!s.isStringElement(i.name) &&
!!s.isStringElement(i.in) &&
!!s.isStringElement(u.name) &&
!!s.isStringElement(u.in) &&
serializers_value(i.name) === serializers_value(u.name) &&
serializers_value(i.in) === serializers_value(u.in),
!!s.isStringElement(i.name) &&
!!s.isStringElement(i.in) &&
!!s.isStringElement(u.name) &&
!!s.isStringElement(u.in) &&
serializers_value(i.name) === serializers_value(u.name) &&
serializers_value(i.in) === serializers_value(u.in),
i = [];
return {
visitor: {
@ -61244,20 +61255,18 @@
He.createElement(
"div",
{ className: "modal-ux-content" },
j
.valueSeq()
.map((j, B) =>
He.createElement(P, {
key: B,
AST: x,
definitions: j,
getComponent: u,
errSelectors: _,
authSelectors: s,
authActions: i,
specSelectors: w
})
)
j.valueSeq().map((j, B) =>
He.createElement(P, {
key: B,
AST: x,
definitions: j,
getComponent: u,
errSelectors: _,
authSelectors: s,
authActions: i,
specSelectors: w
})
)
)
)
)
@ -64919,26 +64928,22 @@
")"
),
Z && et.size
? et
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
? et.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
: null,
X && tt.size
? tt
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
? tt.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
xKey: s,
xVal: i
})
)
: null
),
He.createElement(
@ -67252,16 +67257,14 @@
He.createElement("span", { className: "brace-close" }, "}")
),
ye.size
? ye
.entrySeq()
.map(([s, i]) =>
He.createElement(Re, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: "property"
})
)
? ye.entrySeq().map(([s, i]) =>
He.createElement(Re, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: "property"
})
)
: null
);
}
@ -67430,28 +67433,24 @@
")"
),
ae.size
? ae
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
? ae.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
: null,
P && ee.size
? ee
.entrySeq()
.map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
? ee.entrySeq().map(([s, i]) =>
He.createElement(de, {
key: `${s}-${i}`,
propKey: s,
propVal: i,
propClass: eI
})
)
: null,
Z ? He.createElement(ce, { source: Z }) : null,
ie &&
@ -67779,12 +67778,13 @@
return (
!(s >= 55296 && s <= 57343) &&
!(s >= 64976 && s <= 65007) &&
65535 != (65535 & s) &&
65534 != (65535 & s) &&
!(s >= 0 && s <= 8) &&
11 !== s &&
!(s >= 14 && s <= 31) &&
!(s >= 127 && s <= 159) && !(s > 1114111)
65535 != (65535 & s) &&
65534 != (65535 & s) &&
!(s >= 0 && s <= 8) &&
11 !== s &&
!(s >= 14 && s <= 31) &&
!(s >= 127 && s <= 159) &&
!(s > 1114111)
);
}
function fromCodePoint(s) {
@ -69288,36 +69288,36 @@
return (
P !== $ + 2 &&
!(P + 1 >= U || 58 !== s.src.charCodeAt(++P)) &&
(_ ||
(P++,
s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.refs || (s.env.footnotes.refs = {}),
(B = s.src.slice($ + 2, P - 2)),
(s.env.footnotes.refs[":" + B] = -1),
s.tokens.push({
type: "footnote_reference_open",
label: B,
level: s.level++
}),
(w = s.bMarks[i]),
(x = s.tShift[i]),
(j = s.parentType),
(s.tShift[i] = s.skipSpaces(P) - P),
(s.bMarks[i] = P),
(s.blkIndent += 4),
(s.parentType = "footnote"),
s.tShift[i] < s.blkIndent &&
((s.tShift[i] += s.blkIndent), (s.bMarks[i] -= s.blkIndent)),
s.parser.tokenize(s, i, u, !0),
(s.parentType = j),
(s.blkIndent -= 4),
(s.tShift[i] = x),
(s.bMarks[i] = w),
s.tokens.push({
type: "footnote_reference_close",
level: --s.level
})),
!0)
(_ ||
(P++,
s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.refs || (s.env.footnotes.refs = {}),
(B = s.src.slice($ + 2, P - 2)),
(s.env.footnotes.refs[":" + B] = -1),
s.tokens.push({
type: "footnote_reference_open",
label: B,
level: s.level++
}),
(w = s.bMarks[i]),
(x = s.tShift[i]),
(j = s.parentType),
(s.tShift[i] = s.skipSpaces(P) - P),
(s.bMarks[i] = P),
(s.blkIndent += 4),
(s.parentType = "footnote"),
s.tShift[i] < s.blkIndent &&
((s.tShift[i] += s.blkIndent), (s.bMarks[i] -= s.blkIndent)),
s.parser.tokenize(s, i, u, !0),
(s.parentType = j),
(s.blkIndent -= 4),
(s.tShift[i] = x),
(s.bMarks[i] = w),
s.tokens.push({
type: "footnote_reference_close",
level: --s.level
})),
!0)
);
},
["paragraph"]
@ -69376,32 +69376,32 @@
return (
!(j >= u) &&
!(s.tShift[j] < s.blkIndent) &&
!(s.tShift[j] - s.blkIndent > 3) &&
!((w = s.bMarks[j] + s.tShift[j]) >= (x = s.eMarks[j])) &&
(45 === (_ = s.src.charCodeAt(w)) || 61 === _) &&
((w = s.skipChars(w, _)),
!((w = s.skipSpaces(w)) < x) &&
((w = s.bMarks[i] + s.tShift[i]),
(s.line = j + 1),
s.tokens.push({
type: "heading_open",
hLevel: 61 === _ ? 1 : 2,
lines: [i, s.line],
level: s.level
}),
s.tokens.push({
type: "inline",
content: s.src.slice(w, s.eMarks[i]).trim(),
level: s.level + 1,
lines: [i, s.line - 1],
children: []
}),
s.tokens.push({
type: "heading_close",
hLevel: 61 === _ ? 1 : 2,
level: s.level
}),
!0))
!(s.tShift[j] - s.blkIndent > 3) &&
!((w = s.bMarks[j] + s.tShift[j]) >= (x = s.eMarks[j])) &&
(45 === (_ = s.src.charCodeAt(w)) || 61 === _) &&
((w = s.skipChars(w, _)),
!((w = s.skipSpaces(w)) < x) &&
((w = s.bMarks[i] + s.tShift[i]),
(s.line = j + 1),
s.tokens.push({
type: "heading_open",
hLevel: 61 === _ ? 1 : 2,
lines: [i, s.line],
level: s.level
}),
s.tokens.push({
type: "inline",
content: s.src.slice(w, s.eMarks[i]).trim(),
level: s.level + 1,
lines: [i, s.line - 1],
children: []
}),
s.tokens.push({
type: "heading_close",
hLevel: 61 === _ ? 1 : 2,
level: s.level
}),
!0))
);
}
],
@ -70516,27 +70516,27 @@
return (
!(P + 2 >= j) &&
94 === s.src.charCodeAt(P) &&
91 === s.src.charCodeAt(P + 1) &&
!(s.level >= s.options.maxNesting) &&
((u = P + 2),
!((_ = parseLinkLabel(s, P + 1)) < 0) &&
(i ||
(s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.list || (s.env.footnotes.list = []),
(w = s.env.footnotes.list.length),
(s.pos = u),
(s.posMax = _),
s.push({ type: "footnote_ref", id: w, level: s.level }),
s.linkLevel++,
(x = s.tokens.length),
s.parser.tokenize(s),
(s.env.footnotes.list[w] = {
tokens: s.tokens.splice(x)
}),
s.linkLevel--),
(s.pos = _ + 1),
(s.posMax = j),
!0))
91 === s.src.charCodeAt(P + 1) &&
!(s.level >= s.options.maxNesting) &&
((u = P + 2),
!((_ = parseLinkLabel(s, P + 1)) < 0) &&
(i ||
(s.env.footnotes || (s.env.footnotes = {}),
s.env.footnotes.list || (s.env.footnotes.list = []),
(w = s.env.footnotes.list.length),
(s.pos = u),
(s.posMax = _),
s.push({ type: "footnote_ref", id: w, level: s.level }),
s.linkLevel++,
(x = s.tokens.length),
s.parser.tokenize(s),
(s.env.footnotes.list[w] = {
tokens: s.tokens.splice(x)
}),
s.linkLevel--),
(s.pos = _ + 1),
(s.posMax = j),
!0))
);
}
],
@ -70562,27 +70562,27 @@
return (
_ !== P + 2 &&
!(_ >= j) &&
(_++,
(u = s.src.slice(P + 2, _ - 1)),
void 0 !== s.env.footnotes.refs[":" + u] &&
(i ||
(s.env.footnotes.list || (s.env.footnotes.list = []),
s.env.footnotes.refs[":" + u] < 0
? ((w = s.env.footnotes.list.length),
(s.env.footnotes.list[w] = { label: u, count: 0 }),
(s.env.footnotes.refs[":" + u] = w))
: (w = s.env.footnotes.refs[":" + u]),
(x = s.env.footnotes.list[w].count),
s.env.footnotes.list[w].count++,
s.push({
type: "footnote_ref",
id: w,
subId: x,
level: s.level
})),
(s.pos = _),
(s.posMax = j),
!0))
(_++,
(u = s.src.slice(P + 2, _ - 1)),
void 0 !== s.env.footnotes.refs[":" + u] &&
(i ||
(s.env.footnotes.list || (s.env.footnotes.list = []),
s.env.footnotes.refs[":" + u] < 0
? ((w = s.env.footnotes.list.length),
(s.env.footnotes.list[w] = { label: u, count: 0 }),
(s.env.footnotes.refs[":" + u] = w))
: (w = s.env.footnotes.refs[":" + u]),
(x = s.env.footnotes.list[w].count),
s.env.footnotes.list[w].count++,
s.push({
type: "footnote_ref",
id: w,
subId: x,
level: s.level
})),
(s.pos = _),
(s.posMax = j),
!0))
);
}
],
@ -70598,25 +70598,25 @@
return (
60 === s.src.charCodeAt(P) &&
!((u = s.src.slice(P)).indexOf(">") < 0) &&
((_ = u.match(NI))
? !(II.indexOf(_[1].toLowerCase()) < 0) &&
((j = normalizeLink((x = _[0].slice(1, -1)))),
!!s.parser.validateLink(x) &&
(i ||
(s.push({ type: "link_open", href: j, level: s.level }),
s.push({ type: "text", content: x, level: s.level + 1 }),
s.push({ type: "link_close", level: s.level })),
(s.pos += _[0].length),
!0))
: !!(w = u.match(PI)) &&
((j = normalizeLink("mailto:" + (x = w[0].slice(1, -1)))),
!!s.parser.validateLink(j) &&
(i ||
(s.push({ type: "link_open", href: j, level: s.level }),
s.push({ type: "text", content: x, level: s.level + 1 }),
s.push({ type: "link_close", level: s.level })),
(s.pos += w[0].length),
!0)))
((_ = u.match(NI))
? !(II.indexOf(_[1].toLowerCase()) < 0) &&
((j = normalizeLink((x = _[0].slice(1, -1)))),
!!s.parser.validateLink(x) &&
(i ||
(s.push({ type: "link_open", href: j, level: s.level }),
s.push({ type: "text", content: x, level: s.level + 1 }),
s.push({ type: "link_close", level: s.level })),
(s.pos += _[0].length),
!0))
: !!(w = u.match(PI)) &&
((j = normalizeLink("mailto:" + (x = w[0].slice(1, -1)))),
!!s.parser.validateLink(j) &&
(i ||
(s.push({ type: "link_open", href: j, level: s.level }),
s.push({ type: "text", content: x, level: s.level + 1 }),
s.push({ type: "link_close", level: s.level })),
(s.pos += w[0].length),
!0)))
);
}
],
@ -70640,15 +70640,15 @@
return i >= 97 && i <= 122;
})(u)
) &&
!!(_ = s.src.slice(x).match(DI)) &&
(i ||
s.push({
type: "htmltag",
content: s.src.slice(x, x + _[0].length),
level: s.level
}),
(s.pos += _[0].length),
!0))
!!(_ = s.src.slice(x).match(DI)) &&
(i ||
s.push({
type: "htmltag",
content: s.src.slice(x, x + _[0].length),
level: s.level
}),
(s.pos += _[0].length),
!0))
);
}
],
@ -71740,7 +71740,7 @@
return (
!(!s || !i) &&
!this.hasFullProtocolRegex.test(i) &&
!this.hasWordCharAfterProtocolRegex.test(s)
!this.hasWordCharAfterProtocolRegex.test(s)
);
}),
(UrlMatchValidator.hasFullProtocolRegex = /^[A-Za-z][-.+A-Za-z0-9]*:\/\//),
@ -74095,19 +74095,17 @@
? He.createElement(
"select",
{ "data-variable": s, onChange: $ },
u
.get("enum")
.map(u =>
He.createElement(
"option",
{
selected: u === w(i, s),
key: u,
value: u
},
u
)
u.get("enum").map(u =>
He.createElement(
"option",
{
selected: u === w(i, s),
key: u,
value: u
},
u
)
)
)
: He.createElement("input", {
type: "text",

View File

@ -6859,7 +6859,9 @@
null != e &&
!i(e)
) ||
a.test(e) || !o.test(e) || (null != t && e in Object(t))
a.test(e) ||
!o.test(e) ||
(null != t && e in Object(t))
);
};
},

View File

@ -4819,20 +4819,18 @@
k().createElement(
"div",
{ className: "modal-ux-content" },
o
.valueSeq()
.map((o, c) =>
k().createElement(l, {
key: c,
AST: s,
definitions: o,
getComponent: r,
errSelectors: a,
authSelectors: e,
authActions: t,
specSelectors: n
})
)
o.valueSeq().map((o, c) =>
k().createElement(l, {
key: c,
AST: s,
definitions: o,
getComponent: r,
errSelectors: a,
authSelectors: e,
authActions: t,
specSelectors: n
})
)
)
)
)
@ -7258,15 +7256,13 @@
k().createElement(
"tbody",
null,
e
.entrySeq()
.map(([e, t]) =>
k().createElement(r, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
e.entrySeq().map(([e, t]) =>
k().createElement(r, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
)
)
)
@ -7698,15 +7694,13 @@
k().createElement(C, { source: a.get("description") })
),
y && f.size
? f
.entrySeq()
.map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
? f.entrySeq().map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
xKey: e,
xVal: t
})
)
: null,
g && a.get("content")
? k().createElement(
@ -10816,16 +10810,14 @@
k().createElement("span", { className: "brace-close" }, "}")
),
w.size
? w
.entrySeq()
.map(([e, t]) =>
k().createElement(j, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
? w.entrySeq().map(([e, t]) =>
k().createElement(j, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
: null
);
}
@ -10882,16 +10874,14 @@
{ title: E, expanded: a <= n, collapsedContent: "[...]" },
"[",
m.size
? m
.entrySeq()
.map(([e, t]) =>
k().createElement(f, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
? m.entrySeq().map(([e, t]) =>
k().createElement(f, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: "property"
})
)
: null,
c
? k().createElement(h, { source: c })
@ -11008,28 +10998,24 @@
")"
),
g.size
? g
.entrySeq()
.map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ln
})
)
? g.entrySeq().map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ln
})
)
: null,
l && h.size
? h
.entrySeq()
.map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ln
})
)
? h.entrySeq().map(([e, t]) =>
k().createElement(_, {
key: `${e}-${t}`,
propKey: e,
propVal: t,
propClass: ln
})
)
: null,
d ? k().createElement(S, { source: d }) : null,
y &&
@ -12452,15 +12438,13 @@
")"
),
C && i.size
? i
.entrySeq()
.map(([e, r]) =>
k().createElement(t, {
key: `${e}-${r}`,
xKey: e,
xVal: r
})
)
? i.entrySeq().map(([e, r]) =>
k().createElement(t, {
key: `${e}-${r}`,
xKey: e,
xVal: r
})
)
: null
),
k().createElement(
@ -12703,19 +12687,17 @@
? k().createElement(
"select",
{ "data-variable": e, onChange: i },
r
.get("enum")
.map(r =>
k().createElement(
"option",
{
selected: r === n(t, e),
key: r,
value: r
},
r
)
r.get("enum").map(r =>
k().createElement(
"option",
{
selected: r === n(t, e),
key: r,
value: r
},
r
)
)
)
: k().createElement("input", {
type: "text",
@ -17499,7 +17481,8 @@
const { examples: t, example: r, default: a } = e;
return (
!!(Array.isArray(t) && t.length >= 1) ||
void 0 !== a || void 0 !== r
void 0 !== a ||
void 0 !== r
);
},
extractExample = e => {

View File

@ -41,39 +41,28 @@ ui_print_standard_header(
);
ui_require_css_file('first_task');
?>
<?php
ui_print_info_message(['no_close' => true, 'message' => __('There are no clusters defined yet.') ]);
?>
<div class="new_task">
<div class="image_task">
<?php echo html_print_image('images/first_task/icono-cluster-activo.png', true, ['title' => __('Clusters')]); ?>
</div>
<div class="text_task">
<h3> <?php echo __('Create Cluster'); ?></h3>
<p id="description_task">
<?php
echo __('A cluster is a group of devices that provide the same service in high availability.').'<br><br>';
$msg = __('A cluster is a group of devices that provide the same service in high availability.').'<br>';
echo __('Depending on how they provide that service, we can find two types:').'<br><br>';
$msg .= __('Depending on how they provide that service, we can find two types:').'<br><br>';
echo __('<b>Clusters to balance the service load</b>: these are active - active (A/A) mode clusters. It means that all the nodes (or machines that compose it) are working. They must be working because if one stops working, it will overload the others.').'<br><br>';
$msg .= __('Clusters to balance the service load: these are active - active (A/A) mode clusters. It means that all the nodes (or machines that compose it) are working. They must be working because if one stops working, it will overload the others.').'<br><br>';
echo __('<b>Clusters to guarantee service</b>: these are active - passive (A/P) mode clusters. It means that one of the nodes (or machines that make up the cluster) will be running (primary) and another won\'t (secondary). When the primary goes down, the secondary must take over and give the service instead. Although many of the elements of this cluster are active-passive, it will also have active elements in both of them that indicate that the passive node is "online", so that in the case of a service failure in the master, the active node collects this information.');
?>
</p>
<?php
if (check_acl($config['id_user'], 0, 'AW')) {
?>
<form action='index.php?sec=estado&sec2=operation/cluster/cluster&op=new' method="post">
<input type="submit" class="button_task ui_toggle" value="<?php echo __('Create Cluster'); ?>" />
</form>
<?php
}
?>
</div>
</div>
$msg .= __('Clusters to guarantee service: these are active - passive (A/P) mode clusters. It means that one of the nodes (or machines that make up the cluster) will be running (primary) and another will not (secondary). When the primary goes down, the secondary must take over and give the service instead. Although many of the elements of this cluster are active-passive, it will also have active elements in both of them that indicate that the passive node is "online", so that in the case of a service failure in the master, the active node collects this information.');
$button = false;
if (check_acl($config['id_user'], 0, 'AW')) {
$button = "
<form action='index.php?sec=estado&sec2=operation/cluster/cluster&op=new' method='post'>
<input type='submit' class='button_task button_task_mini mrgn_0px_imp' value='".__('Create cluster')."' />
</form>";
}
echo ui_print_empty_view(
__('There are no defined clusters'),
$msg,
'clusters.svg',
$button
);

View File

@ -14,36 +14,22 @@
global $config;
check_login();
ui_require_css_file('first_task');
?>
$msg = __(
'Graphs are designed to show the data collected by %s in a temporary scale defined by the user. %s Graphs display data in real time. They are generated every time the operator requires any of them and display the up-to-date state.',
get_product_name(),
get_product_name()
);
<div class="new_task">
<div class="image_task">
<?php echo html_print_image('images/first_task/icono_grande_custom_reporting.png', true, ['title' => __('Custom Graphs')]); ?>
</div>
<div class="text_task">
<h3> <?php echo __('Create Custom Graph'); ?></h3><p id="description_task">
<?php
echo __(
"Graphs are designed to show the data collected by %s in a temporary scale defined by the user.
%s Graphs display data in real time. They are generated every time the operator requires any of them and display the up-to-date state.
There are two types of graphs: The agent's automated graphs and the graphs the user customizes by using one or more modules to do so.",
get_product_name(),
get_product_name()
);
?>
</p>
<form action="index.php?sec=reporting&sec2=godmode/reporting/graph_builder" method="post">
<?php
html_print_action_buttons(
html_print_submit_button(
__('Create Custom Graph'),
'button_task',
false,
['icon' => 'wand'],
true
)
);
?>
</form>
</div>
</div>
$msg .= '<br><br>'.__("There are two types of graphs: The agent's automated graphs and the graphs the user customizes by using one or more modules to do so.");
$url_new = 'index.php?sec=reporting&sec2=godmode/reporting/graph_builder';
$button = '<form action="'.$url_new.'" method="post">
<input type="submit" class="button_task button_task_mini mrgn_0px_imp" value="'.__('Create custom graph').'" />
</form>';
echo ui_print_empty_view(
__('Create custom graph'),
$msg,
'custom-graph.svg',
$button
);

View File

@ -34,37 +34,30 @@ check_login();
ui_require_css_file('first_task');
if ($vconsoles_write || $vconsoles_manage) {
?>
$msg = __(
'%s allows users to create visual maps on which each user is able to create his or her own monitoring map. The new visual console editor is much more practical, although the prior visual console editor had its advantages.',
get_product_name()
);
<div class="new_task">
<div class="image_task">
<?php echo html_print_image('images/first_task/icono_grande_visualconsole.png', true, ['title' => __('Visual Console')]); ?>
</div>
<div class="text_task">
<h3> <?php echo __('Visual Consoles'); ?></h3><p id="description_task">
<?php
echo __(
'%s allows users to create visual maps on which each user is able to create his or her '.'own monitoring map. The new visual console editor is much more practical, although the prior '."visual console editor had its advantages. On the new visual console, we've been successful in "."imitating the sensation and touch of a drawing application like GIMP. We've also simplified the "."editor by dividing it into several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of "."Elements' and 'Editor'. The items the %s Visual Map was designed to handle are "."'static images', 'percentage bars', 'module graphs' and 'simple values'.",
get_product_name(),
get_product_name()
);
?>
</p>
<form action="index.php?sec=network&amp;sec2=godmode/reporting/visual_console_builder" method="post">
<?php
html_print_input_hidden('edit_layout', 1);
html_print_action_buttons(
html_print_submit_button(
__('Create a Visual Console'),
'button_task',
false,
['icon' => 'wand'],
true
)
);
?>
</form>
</div>
</div>
<?php
$msg .= '<br><br>'.__(
"On the new visual console, we have been successful in imitating the sensation and touch of a drawing application like GIMP. We have also simplified the editor by dividing it into several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and 'Editor'."
);
$msg .= '<br><br>'.__(
" The items the %s Visual Map was designed to handle are 'static images', 'percentage bars', 'module graphs' and 'simple values'",
get_product_name()
);
$url_new = 'index.php?sec=network&amp;sec2=godmode/reporting/visual_console_builder';
$button = '<form action="'.$url_new.'" method="post">';
$button .= html_print_input_hidden('edit_layout', 1);
$button .= '<input type="submit" class="button_task button_task_mini mrgn_0px_imp" value="'.__('Create visual console').'" />';
$button .= '</form>';
echo ui_print_empty_view(
__('There are no customized visual consoles'),
$msg,
'visual-console.svg',
$button
);
}

View File

@ -31,40 +31,25 @@ global $config;
check_login();
ui_require_css_file('first_task');
?>
<?php if ((bool) $agent_w === true) { ?>
<div class="new_task">
<div class="image_task">
<?php echo html_print_image('images/item-service.svg', true, ['title' => __('Services'), 'class' => 'w120px']); ?>
</div>
<div class="text_task">
<h3> <?php echo __('Services'); ?></h3>
<p id="description_task">
<?php
echo __(
"A service is a way to group your IT resources based on their functionalities.
if ((bool) $agent_w === true) {
$msg = __(
'A service is a way to group your IT resources based on their functionalities.
A service could be e.g. your official website, your CRM system, your support application, or even your printers.
Services are logical groups which can include hosts, routers, switches, firewalls, CRMs, ERPs, websites and numerous other services.
By the following example, you're able to see more clearly what a service is:
By the following example, you are able to see more clearly what a service is:
A chip manufacturer sells computers by its website all around the world.
His company consists of three big departments: A management, an on-line shop and support."
);
?>
</p>
<form action="index.php?sec=estado&sec2=enterprise/godmode/services/services.service&action=new_service" method="post">
<?php
html_print_action_buttons(
html_print_submit_button(
__('Create a service'),
'button_task',
false,
['icon' => 'wand'],
true
)
);
?>
</form>
</div>
</div>
<?php
His company consists of three big departments: A management, an on-line shop and support.'
);
$url_new = 'index.php?sec=estado&sec2=enterprise/godmode/services/services.service&action=new_service';
$button = '<form action="'.$url_new.'" method="post">
<input type="submit" class="button_task button_task_mini mrgn_0px_imp" value="'.__('Configure services').'" />
</form>';
echo ui_print_empty_view(
__('No services found'),
$msg,
'services.svg',
$button
);
}

View File

@ -558,7 +558,7 @@ if ($broker === false) {
$tableAgent->data['caption_interval'][0] = __('Interval').ui_print_help_tip(__('Time that elapses when updating data in the agent. Remote modules have their own interval, but this time is used to find out if an agent stopped responding (unknown state). When twice the time interval defined in an agent goes by, it is considered to be in unknown state (or also if all its remote modules are in unknown state). An agent may be in unknown state if all of its local (software agent-based) modules have a last contact time longer than twice the agent interval, even if it has updated remote modules.'), true);
// $tableAgent->rowstyle['interval'] = 'width: 260px';
$tableAgent->rowclass['interval'] = 'w540px';
$tableAgent->data['interval'][0] = html_print_extended_select_for_time(
$tableAgent->data['interval'][0] = html_print_select_agentmodule_interval(
'intervalo',
$intervalo,
'',

View File

@ -1501,6 +1501,11 @@ if ($update_module === true || $create_module === true) {
$min = (int) get_parameter('min');
$max = (int) get_parameter('max');
$interval = (int) get_parameter('module_interval', $intervalo);
// Limit module interval to at least 60 secs.
if ($interval > 0) {
$interval = max($interval, 60);
}
$ff_interval = (int) get_parameter('module_ff_interval');
$quiet_module = (int) get_parameter('quiet_module');
$cps_module = (int) get_parameter('cps_module');
@ -2425,10 +2430,7 @@ if ($delete_module) {
if ($error != 0) {
ui_print_error_message(__('There was a problem deleting the module'));
} else {
echo '<script type="text/javascript">
location="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&tab=module&id_agente='.$id_agente.'";
alert("'.__('Module deleted succesfully').'");
</script>';
ui_print_success_message(__('Module deleted succesfully'));
$agent = db_get_row('tagente', 'id_agente', $id_agente);
db_pandora_audit(

View File

@ -1365,4 +1365,9 @@ html_print_div(
}
$(document).ready(function () {
$('#module_action').select2('open');
$('#module_action').select2('close');
});
</script>

View File

@ -705,7 +705,19 @@ if ((int) $moduletype === MODULE_DATA) {
// be taken the agent interval (this code is at configurar_agente.php).
} else {
$interval = ($interval === '') ? '300' : $interval;
$outputExecutionInterval = html_print_extended_select_for_time('module_interval', $interval, '', '', '0', false, true, false, false, $classdisabledBecauseInPolicy, $disabledBecauseInPolicy);
$outputExecutionInterval = html_print_select_agentmodule_interval(
'module_interval',
$interval,
'',
'',
'0',
false,
true,
false,
false,
$classdisabledBecauseInPolicy,
$disabledBecauseInPolicy
);
}
$module_id_policy_module = 0;

View File

@ -131,6 +131,10 @@ if ($update_agents) {
) {
if (get_parameter('interval') != -2) {
$values['intervalo'] = get_parameter('interval');
if ($values['intervalo'] < 60) {
$values['intervalo'] = 60;
}
}
}
@ -753,7 +757,7 @@ $table->data[1][0] = html_print_label_input_block(
$table->data[1][1] = html_print_label_input_block(
__('Interval'),
html_print_extended_select_for_time(
html_print_select_agentmodule_interval(
'interval',
-2,
'',

View File

@ -865,7 +865,7 @@ $table->data[15][0] = html_print_label_input_block(
$table->data[16][0] = html_print_label_input_block(
__('Interval'),
html_print_extended_select_for_time(
html_print_select_agentmodule_interval(
'module_interval',
0,
'',
@ -2444,6 +2444,10 @@ function process_manage_edit($module_name, $agents_select=null, $module_status='
case 'module_interval':
if ($value != 0) {
$values[$field] = $value;
if ($values[$field] < 60) {
$values[$field] = 60;
}
}
break;

View File

@ -426,14 +426,14 @@ if ($access_console_node === true) {
if ((bool) check_acl($config['id_user'], 0, 'PM') === true) {
// Setup.
$menu_godmode['gsetup']['text'] = __('Setup');
$menu_godmode['gsetup']['text'] = __('Settings');
$menu_godmode['gsetup']['sec2'] = 'general';
$menu_godmode['gsetup']['id'] = 'god-setup';
$sub = [];
// Options Setup.
$sub['general']['text'] = __('Setup');
$sub['general']['text'] = __('System Settings');
$sub['general']['id'] = 'Setup';
$sub['general']['type'] = 'direct';
$sub['general']['subtype'] = 'nolink';

View File

@ -82,6 +82,11 @@ $snmp_oid = (string) get_parameter('snmp_oid');
$snmp_community = (string) get_parameter('snmp_community');
$id_module_group = (int) get_parameter('id_module_group');
$module_interval = (int) get_parameter('module_interval');
// Limit module interval to at least 60 secs.
if ($module_interval > 0) {
$module_interval = max($module_interval, 60);
}
$id_group = (int) get_parameter('id_group');
$plugin_user = (string) get_parameter('plugin_user');
$plugin_pass = io_input_password((string) get_parameter('plugin_pass'));

View File

@ -154,7 +154,7 @@ $table->data[2][0] = html_print_label_input_block(
$table->data[2][1] = html_print_label_input_block(
__('Interval'),
html_print_extended_select_for_time('module_interval', $module_interval, '', '', '0', false, true)
html_print_select_agentmodule_interval('module_interval', $module_interval, '', '', '0', false, true)
);
$dynamic_interval_img = '<a onclick="advanced_option_dynamic()" class="mrgn_lft_5px mrgn_top_6px">'.html_print_image(

View File

@ -1454,7 +1454,7 @@ $class = 'databox filters';
<td class="bolder">
<?php
echo __('Module').ui_print_help_tip(
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1.'),
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: %s will match: cpu_usage, vram usage in matchine 1.', '.*usage.*'),
true
);
?>

View File

@ -93,33 +93,26 @@ if (is_metaconsole() === true) {
}
}
$output = '<div class="new_task">';
$output .= '<div class="image_task">';
$output .= html_print_image(
'images/first_task/icono_grande_import.png',
true,
['title' => __('Plugin Registration') ]
);
$output .= '</div>';
$output .= '<div class="text_task">';
$output .= '<h3>'.__('Plugin registration').'</h3>';
$output .= '<p id="description_task">';
$output .= __('This extension makes registering server plugins an easier task. Here you can upload a server plugin in .pspz zipped format. Please refer to the official documentation on how to obtain and use Server Plugins.');
$output .= '<br><br>';
$output .= __('You can get more plugins in our');
$output .= '<a href="https://pandorafms.com/Library/Library/">';
$output .= ' '.__('Public Resource Library');
$output .= '</a>';
$output .= '</p>';
$msg = __('This extension makes registering server plugins an easier task. Here you can upload a server plugin in .pspz zipped format. Please refer to the official documentation on how to obtain and use Server Plugins.');
$msg .= '<br><br>';
$msg .= __('You can get more plugins in our');
$msg .= '<a href="https://pandorafms.com/Library/Library/">';
$msg .= ' '.__('Public Resource Library');
$msg .= '</a>';
// Upload form.
$output .= "<form name='submit_plugin' method='post' enctype='multipart/form-data'>";
$output .= '<table class="" id="table1" width="100%" border="0" cellpadding="4" cellspacing="4">';
$output .= "<tr><td class='datos'><input type='file' name='plugin_upload' />";
$output .= "<td class='datos'><input type='submit' class='sub next' value='".__('Upload')."' />";
$output .= '</form></table>';
$output .= '</div>';
$output .= '</div>';
$button = "<form name='submit_plugin' id='submit-plugin' method='post' enctype='multipart/form-data'>";
$button .= "<input type='file' class='w100p' name='plugin_upload' />";
$button .= "<input type='submit' class='button_task button_task_mini mrgn_0px_imp' value='".__('Upload file')."' />";
$button .= '</form>';
$output = ui_print_empty_view(
__('Register plugins'),
$msg,
'plugins.svg',
$button
);
echo $output;

View File

@ -75,8 +75,8 @@ if (isset($text) === false) {
}
$directory = (string) get_parameter('directory');
$directory = str_replace('&lt;', '', $text);
$directory = str_replace('&gt;', '', $text);
$directory = str_replace('&lt;', '', $directory);
$directory = str_replace('&gt;', '', $directory);
if (empty($directory) === true) {
$directory = $fallback_directory;
} else {

View File

@ -68,7 +68,7 @@ if ($renew_license_result !== null) {
}
if ($update_settings) {
if (!is_metaconsole()) {
if (is_metaconsole() === false) {
// Node.
foreach ($_POST['keys'] as $key => $value) {
db_process_sql_update(

View File

@ -111,11 +111,8 @@ if (enterprise_installed()) {
array_push($menu_tabs, $menu_tab_url);
$menu_tab_url = '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup&section=hist_db').'">'.__('History database').'</a>';
array_push($menu_tabs, $menu_tab_url);
if ($config['log_collector']) {
$menu_tab_url = '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup&section=log').'">'.__('Log collector').'</a>';
array_push($menu_tabs, $menu_tab_url);
}
$menu_tab_url = '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup&section=log').'">'.__('Log collector').'</a>';
array_push($menu_tabs, $menu_tab_url);
}
$buttons['auth'] = [
@ -422,8 +419,14 @@ switch ($section) {
$help_header = '';
break;
case 'log':
$buttons['log']['active'] = true;
$subpage = __('Log Collector');
$help_header = 'opensearch_installation';
break;
default:
$subpage = 'seccion: ';
$subpage = '';
// Default.
break;
}
@ -432,7 +435,7 @@ $dots = dot_tab($menu_tabs);
// Header.
ui_print_standard_header(
__('Setup').' &raquo; '.$subpage,
$subpage,
'',
false,
$help_header,

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>696E9E4D-6D6D-4E30-B1C6-1CBF60018B2A</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -930)">
<g id="Clústers" transform="translate(601, 900)">
<g id="Top" transform="translate(30, 30)">
<g id="No-Cluster-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF" transform="translate(189, 104) scale(-1, 1) translate(-189, -104)"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle-Copy-8" stroke="#95A3BF" stroke-width="1.4" x="20" y="34" width="68" height="50" rx="4"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.8" fill="#FFFFFF" x="0" y="0" width="70.3603604" height="54" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
<g id="Image" transform="translate(82, 32)" stroke-linejoin="round" stroke-width="1.4">
<g id="Group" transform="translate(0, 39.0805)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" points="43 0 86 7.18390805 86 37.6436782 43 60.9195402 0 37.6436782 0 7.18390805"></polygon>
</g>
<g id="Group" transform="translate(24.3047, 0)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" points="18.1052632 0 36.2105263 10.9195402 36.2105263 32.7586207 18.6702944 43.6781609 1.1558006e-14 32.7586207 0 10.9195402"></polygon>
<path d="M0.024262409,10.9195402 C12.4549504,17.8057368 18.6702944,21.248835 18.6702944,21.248835 C18.6702944,21.248835 24.5089509,17.8057368 36.1862639,10.9195402" id="Path-100"></path>
<line x1="18.6702944" y1="21.248835" x2="18.6702944" y2="43.6781609" id="Path-33"></line>
</g>
<g id="Group" transform="translate(0, 13.7931)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" fill="#FFFFFF" points="18.1052632 0 36.2105263 10.9195402 36.2105263 32.7586207 18.6702944 43.6781609 1.1558006e-14 32.7586207 0 10.9195402"></polygon>
<path d="M0.024262409,10.9195402 C12.4549504,17.8057368 18.6702944,21.248835 18.6702944,21.248835 C18.6702944,21.248835 24.5089509,17.8057368 36.1862639,10.9195402" id="Path-100"></path>
<line x1="18.6702944" y1="21.248835" x2="18.6702944" y2="43.6781609" id="Path-33"></line>
</g>
<g id="Group-Copy" transform="translate(49.7895, 13.7931)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" fill="#FFFFFF" points="18.1052632 0 36.2105263 10.9195402 36.2105263 32.7586207 18.6702944 43.6781609 1.1558006e-14 32.7586207 0 10.9195402"></polygon>
<path d="M0,10.9195402 C12.430688,17.8057368 18.646032,21.248835 18.646032,21.248835 C18.646032,21.248835 24.4846885,17.8057368 36.1620015,10.9195402" id="Path-100"></path>
<line x1="18.6710526" y1="21.2643678" x2="18.6710526" y2="43.6781609" id="Path-33"></line>
</g>
<g id="Group" transform="translate(24.3047, 35.6322)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" fill="#FFFFFF" points="18.1052632 0 36.2105263 10.9195402 36.2105263 32.7586207 18.6702944 43.6781609 1.1558006e-14 32.7586207 0 10.9195402"></polygon>
<path d="M0.024262409,10.9195402 C12.4549504,17.8057368 18.6702944,21.248835 18.6702944,21.248835 C18.6702944,21.248835 24.5089509,17.8057368 36.1862639,10.9195402" id="Path-100"></path>
<line x1="18.6702944" y1="21.248835" x2="18.6702944" y2="43.6781609" id="Path-33"></line>
</g>
<g id="Group" transform="translate(24.3047, 35.6322)">
<polygon id="Polygon" stroke="#222222" fill="#FFFFFF" points="18.1052632 0 36.2105263 10.9195402 36.2105263 32.7586207 18.6702944 43.6781609 1.1558006e-14 32.7586207 0 10.9195402"></polygon>
<path d="M0.024262409,10.9195402 C12.4549504,17.8057368 18.6702944,21.248835 18.6702944,21.248835 C18.6702944,21.248835 24.5089509,17.8057368 36.1862639,10.9195402" id="Path-100" stroke="#181818" stroke-linecap="round"></path>
<line x1="18.6702944" y1="21.248835" x2="18.6702944" y2="43.6781609" id="Path-33" stroke="#181818" stroke-linecap="round"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>D0434C46-6D79-4C4C-9726-C296821D870B</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -3342)">
<g id="Gráfico-personalizado" transform="translate(601, 3312)">
<g id="Top" transform="translate(30, 30)">
<g id="No-Custom-graph-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<g id="2307-2102-1306-1512" transform="translate(154.32, 18.37)" fill="#8A96A6" fill-rule="nonzero">
<path d="M1.25,2.58 C1.24,2.47 1.22,2.35 1.22,2.25 C1.22,1.58 1.59,1.05 2.35,1.05 C3.08,1.05 3.44,1.53 3.44,2.06 C3.44,2.53 3.19,2.92 2.61,3.28 L1.54,3.95 C0.41,4.65 0.02,5.52 0,6.63 L4.69,6.63 L4.69,5.57 L1.48,5.57 C1.57,5.25 1.83,5.02 2.14,4.83 L3.4,4.05 C4.18,3.57 4.65,2.88 4.65,2.04 C4.65,0.93 3.8,0 2.37,0 C0.9,0 0.06,1.01 0.06,2.13 C0.06,2.26 0.08,2.41 0.09,2.5 L1.25,2.58 Z" id="Path"></path>
<path d="M7.25,3.69 C7.35,3.64 7.55,3.58 7.86,3.58 C8.41,3.58 9.01,3.9 9.01,4.65 C9.01,5.24 8.57,5.75 7.78,5.75 C7.06,5.75 6.52,5.24 6.49,4.49 L5.32,4.73 C5.4,5.81 6.29,6.78 7.79,6.78 C9.33,6.78 10.22,5.77 10.22,4.66 C10.22,3.41 9.25,2.71 8.28,2.69 L10.04,1.15 L10.04,0.15 L5.54,0.15 L5.54,1.2 L8.49,1.2 L6.7,2.8 L7.25,3.69 Z" id="Path"></path>
<path d="M12.19,3.39 C12.19,2.57 12.33,1.94 12.65,1.54 C12.87,1.25 13.18,1.06 13.65,1.06 C14.12,1.06 14.42,1.25 14.65,1.54 C14.96,1.94 15.1,2.57 15.1,3.39 C15.1,4.21 14.96,4.84 14.65,5.24 C14.42,5.53 14.12,5.72 13.65,5.72 C13.18,5.72 12.87,5.53 12.65,5.24 C12.34,4.84 12.19,4.21 12.19,3.39 Z M11,3.39 C11,4.25 11.14,5.06 11.58,5.72 C12,6.35 12.68,6.78 13.65,6.78 C14.62,6.78 15.29,6.35 15.71,5.72 C16.15,5.06 16.29,4.25 16.29,3.39 C16.29,2.53 16.15,1.72 15.71,1.06 C15.29,0.43 14.62,0 13.65,0 C12.68,0 12,0.43 11.58,1.06 C11.14,1.72 11,2.53 11,3.39 Z" id="Shape"></path>
<path d="M21.63,0.15 L16.79,0.15 L16.79,1.2 L20.27,1.2 C20.27,1.2 18.01,3.01 17.73,6.63 L18.97,6.63 C19.26,3.29 21.09,1.65 21.63,1.2 L21.63,0.15 Z" id="Path"></path>
<path d="M2.46,15.58 C2.45,15.47 2.43,15.35 2.43,15.25 C2.43,14.58 2.8,14.05 3.56,14.05 C4.29,14.05 4.65,14.53 4.65,15.06 C4.65,15.53 4.4,15.92 3.82,16.28 L2.75,16.95 C1.62,17.65 1.23,18.52 1.21,19.63 L5.9,19.63 L5.9,18.57 L2.69,18.57 C2.78,18.25 3.04,18.02 3.35,17.83 L4.61,17.05 C5.39,16.57 5.86,15.88 5.86,15.04 C5.86,13.93 5.01,13 3.58,13 C2.11,13 1.27,14.01 1.27,15.13 C1.27,15.26 1.29,15.41 1.3,15.5 L2.46,15.58 Z" id="Path"></path>
<path d="M9.33,19.63 L9.33,13.15 L8.29,13.15 C8.15,13.83 7.51,14.35 6.58,14.37 L6.58,15.19 L8.15,15.19 L8.15,19.63 L9.33,19.63 Z" id="Path"></path>
<path d="M11.78,16.39 C11.78,15.57 11.92,14.94 12.24,14.54 C12.46,14.25 12.77,14.06 13.24,14.06 C13.71,14.06 14.01,14.25 14.24,14.54 C14.55,14.94 14.69,15.57 14.69,16.39 C14.69,17.21 14.55,17.84 14.24,18.24 C14.01,18.53 13.71,18.72 13.24,18.72 C12.77,18.72 12.46,18.53 12.24,18.24 C11.93,17.84 11.78,17.21 11.78,16.39 Z M10.59,16.39 C10.59,17.25 10.73,18.06 11.17,18.72 C11.59,19.35 12.27,19.78 13.24,19.78 C14.21,19.78 14.88,19.35 15.3,18.72 C15.74,18.06 15.88,17.25 15.88,16.39 C15.88,15.53 15.74,14.72 15.3,14.06 C14.88,13.43 14.21,13 13.24,13 C12.27,13 11.59,13.43 11.17,14.06 C10.73,14.72 10.59,15.53 10.59,16.39 Z" id="Shape"></path>
<path d="M17.89,15.58 C17.88,15.47 17.86,15.35 17.86,15.25 C17.86,14.58 18.23,14.05 18.99,14.05 C19.72,14.05 20.08,14.53 20.08,15.06 C20.08,15.53 19.83,15.92 19.25,16.28 L18.18,16.95 C17.05,17.65 16.66,18.52 16.64,19.63 L21.33,19.63 L21.33,18.57 L18.12,18.57 C18.21,18.25 18.47,18.02 18.78,17.83 L20.04,17.05 C20.82,16.57 21.29,15.88 21.29,15.04 C21.29,13.93 20.44,13 19.01,13 C17.54,13 16.7,14.01 16.7,15.13 C16.7,15.26 16.72,15.41 16.73,15.5 L17.89,15.58 Z" id="Path"></path>
<path d="M3.44,32.63 L3.44,26.15 L2.4,26.15 C2.26,26.83 1.62,27.35 0.69,27.37 L0.69,28.19 L2.26,28.19 L2.26,32.63 L3.44,32.63 Z" id="Path"></path>
<path d="M6.41,29.69 C6.51,29.64 6.71,29.58 7.02,29.58 C7.57,29.58 8.17,29.9 8.17,30.65 C8.17,31.24 7.73,31.75 6.94,31.75 C6.22,31.75 5.68,31.24 5.65,30.49 L4.48,30.73 C4.56,31.81 5.45,32.78 6.95,32.78 C8.49,32.78 9.38,31.77 9.38,30.66 C9.38,29.41 8.41,28.71 7.44,28.69 L9.2,27.15 L9.2,26.15 L4.7,26.15 L4.7,27.2 L7.65,27.2 L5.86,28.8 L6.41,29.69 Z" id="Path"></path>
<path d="M11.35,29.39 C11.35,28.57 11.49,27.94 11.81,27.54 C12.03,27.25 12.34,27.06 12.81,27.06 C13.28,27.06 13.58,27.25 13.81,27.54 C14.12,27.94 14.26,28.57 14.26,29.39 C14.26,30.21 14.12,30.84 13.81,31.24 C13.58,31.53 13.28,31.72 12.81,31.72 C12.34,31.72 12.03,31.53 11.81,31.24 C11.5,30.84 11.35,30.21 11.35,29.39 Z M10.16,29.39 C10.16,30.25 10.3,31.06 10.74,31.72 C11.16,32.35 11.84,32.78 12.81,32.78 C13.78,32.78 14.45,32.35 14.87,31.72 C15.31,31.06 15.45,30.25 15.45,29.39 C15.45,28.53 15.31,27.72 14.87,27.06 C14.45,26.43 13.78,26 12.81,26 C11.84,26 11.16,26.43 10.74,27.06 C10.3,27.72 10.16,28.53 10.16,29.39 Z" id="Shape"></path>
<path d="M21.19,26.32 C20.91,26.14 20.41,26 19.81,26 C17.8,26 16.33,27.42 16.33,29.77 C16.33,31.43 17.27,32.78 18.92,32.78 C20.28,32.78 21.38,31.88 21.38,30.53 C21.38,29.2 20.47,28.34 19.18,28.34 C18.49,28.34 17.87,28.59 17.53,29.11 C17.64,27.85 18.52,27.04 19.74,27.04 C20.27,27.04 20.61,27.17 20.85,27.3 L21.19,26.32 Z M17.66,30.55 C17.66,29.79 18.24,29.34 18.92,29.34 C19.6,29.34 20.18,29.79 20.18,30.55 C20.18,31.3 19.6,31.76 18.92,31.76 C18.26,31.76 17.66,31.29 17.66,30.55 Z" id="Shape"></path>
<path d="M6.21,45.63 L6.21,39.15 L5.17,39.15 C5.03,39.83 4.39,40.35 3.46,40.37 L3.46,41.19 L5.03,41.19 L5.03,45.63 L6.21,45.63 Z" id="Path"></path>
<path d="M7.31,43.84 C7.39,44.86 8.35,45.79 9.75,45.79 C11.25,45.79 12.19,44.77 12.19,43.55 C12.19,42.19 11.26,41.39 9.97,41.39 C9.51,41.39 9.01,41.55 8.73,41.84 L9.13,40.2 L11.87,40.2 L11.87,39.15 L8.32,39.15 L7.52,42.42 L8.65,42.83 C8.88,42.57 9.27,42.38 9.73,42.38 C10.39,42.38 10.98,42.78 10.98,43.58 C10.98,44.3 10.43,44.76 9.75,44.76 C9,44.76 8.49,44.24 8.44,43.55 L7.31,43.84 Z" id="Path"></path>
<path d="M15.48,45.63 L15.48,39.15 L14.44,39.15 C14.3,39.83 13.66,40.35 12.73,40.37 L12.73,41.19 L14.3,41.19 L14.3,45.63 L15.48,45.63 Z" id="Path"></path>
<path d="M17.89,41.58 C17.88,41.47 17.86,41.35 17.86,41.25 C17.86,40.58 18.23,40.05 18.99,40.05 C19.72,40.05 20.08,40.53 20.08,41.06 C20.08,41.53 19.83,41.92 19.25,42.28 L18.18,42.95 C17.05,43.65 16.66,44.52 16.64,45.63 L21.33,45.63 L21.33,44.57 L18.12,44.57 C18.21,44.25 18.47,44.02 18.78,43.83 L20.04,43.05 C20.82,42.57 21.29,41.88 21.29,41.04 C21.29,39.93 20.44,39 19.01,39 C17.54,39 16.7,40.01 16.7,41.13 C16.7,41.26 16.72,41.41 16.73,41.5 L17.89,41.58 Z" id="Path"></path>
</g>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF" transform="translate(189, 104) scale(-1, 1) translate(-189, -104)"></path>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.9" fill="#FFFFFF" x="0" y="0" width="88" height="67" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
<g id="Group" transform="translate(70, 34)">
<path d="M45.1055557,10 L45.1055557,55 C58.9018661,68.7640244 69.5332973,79.370576 76.9998493,86.8196548 C68.8365868,94.9636113 57.5606067,100 45.1055557,100 C20.1944452,100 0,79.8528137 0,55 C0,30.1471863 20.1944452,10 45.1055557,10 Z" id="Oval-2" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M88.1844548,0 L88.1844548,45 L50,25.3629398 C56.8758557,10.3493516 71.3906665,0 88.1844548,0 Z" id="Oval-5" fill="#95A3BF" opacity="0.2" transform="translate(69.0922, 22.5) scale(-1, 1) translate(-69.0922, -22.5)"></path>
<path d="M55.8434235,30.2581738 L94.4264069,50 L63.0764519,79.3208591 C56.1959843,71.3221718 52,60.6808225 52,49 C52,42.3115889 53.3757291,35.9639878 55.8434235,30.2581738 Z" id="Oval-5" stroke="#222222" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2,4" transform="translate(73.2132, 54.7895) scale(-1, 1) translate(-73.2132, -54.7895)"></path>
</g>
<g id="Group-2" transform="translate(221, 17)" fill="#95A3BF">
<rect id="Rectangle" x="4" y="0" width="2" height="40" rx="1"></rect>
<circle id="Oval" stroke="#222222" stroke-width="1.4" cx="5" cy="13" r="5"></circle>
</g>
<g id="Group-2-Copy" transform="translate(240, 17)" fill="#95A3BF">
<rect id="Rectangle" x="4" y="0" width="2" height="40" rx="1"></rect>
<circle id="Oval" stroke="#222222" stroke-width="1.4" cx="5" cy="25" r="5"></circle>
</g>
<g id="Group-2-Copy-2" transform="translate(260, 17)" fill="#95A3BF">
<rect id="Rectangle" x="4" y="0" width="2" height="40" rx="1"></rect>
<circle id="Oval" stroke="#222222" stroke-width="1.4" cx="5" cy="20" r="5"></circle>
</g>
<g id="Group-2-Copy-3" transform="translate(279, 17)" fill="#95A3BF">
<rect id="Rectangle" x="4" y="0" width="2" height="40" rx="1"></rect>
<circle id="Oval" stroke="#222222" stroke-width="1.4" cx="5" cy="5" r="5"></circle>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>7C2E23EA-BCA7-4E5D-BAD4-CF7507F60894</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -2464)">
<g id="NCM" transform="translate(601, 2434)">
<g id="Top" transform="translate(30, 30)">
<g id="No-NMC-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF" transform="translate(189, 104) scale(-1, 1) translate(-189, -104)"></path>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle-Copy-8" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.9" fill="#FFFFFF" x="20" y="34" width="68" height="50" rx="4"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" x="0" y="0" width="70.3603604" height="54" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
<g id="Group" transform="translate(82, 35)" stroke-width="1.4">
<circle id="Oval" stroke="#222222" fill="#FFFFFF" stroke-linejoin="round" cx="57" cy="7" r="7"></circle>
<circle id="Oval-Copy-4" stroke="#222222" fill="#FFFFFF" stroke-linejoin="round" transform="translate(30, 7) scale(-1, 1) translate(-30, -7)" cx="30" cy="7" r="7"></circle>
<circle id="Oval-Copy" stroke="#95A3BF" cx="71" cy="21" r="7"></circle>
<circle id="Oval-Copy-5" stroke="#95A3BF" transform="translate(16, 21) scale(-1, 1) translate(-16, -21)" cx="16" cy="21" r="7"></circle>
<polyline id="Path-35" stroke="#222222" stroke-linecap="round" stroke-linejoin="round" points="57 14 57 31 49 39 49 76 56 76 43.5 93 31 76 38 76 38 71"></polyline>
<polyline id="Path-35-Copy" stroke="#222222" stroke-linecap="round" stroke-linejoin="round" transform="translate(34, 39.5) scale(-1, 1) translate(-34, -39.5)" points="38 14 38 31 30 39 30 65"></polyline>
<polyline id="Path-35-Copy-2" stroke="#95A3BF" stroke-linecap="round" stroke-linejoin="round" transform="translate(20, 46.5) scale(-1, 1) translate(-20, -46.5)" points="24 28 24 40 16 48 16 65"></polyline>
<polyline id="Path-35-Copy-3" stroke="#95A3BF" stroke-linecap="round" stroke-linejoin="round" points="71 28 71 40 63 48 63 65"></polyline>
<line x1="16" y1="49.5" x2="16" y2="79.5" id="Path-36" stroke="#95A3BF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2,4"></line>
<line x1="72" y1="49.5" x2="72" y2="79.5" id="Path-36-Copy" stroke="#95A3BF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2,4"></line>
<polyline id="Polygon" stroke="#95A3BF" stroke-linecap="round" stroke-linejoin="round" points="86 44 86 74.4597701 43 97.7356322 0 74.4597701 0 44"></polyline>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>A84B8A2A-F149-4822-9084-B43F3D4C6C8F</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -2954)">
<g id="Plugins" transform="translate(601, 2924)">
<g id="Top" transform="translate(30, 30)">
<g id="No-Plugin-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF" transform="translate(189, 104) scale(-1, 1) translate(-189, -104)"></path>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle-Copy-8" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.9" fill="#FFFFFF" x="20" y="34" width="68" height="50" rx="4"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" x="0" y="0" width="70.3603604" height="54" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
<g id="Group" transform="translate(75, 32)">
<path d="M36.5277777,50 L46.2962963,50 C48.3417954,50 50,48.2780183 50,46.1538462 L50,37.0913462 C49.997871,36.4503405 49.6844882,35.8537078 49.1666667,35.5048077 C48.655685,35.1385347 47.9979818,35.0747881 47.4305555,35.3365385 C46.7745727,35.6056844 46.0756971,35.7443119 45.3703704,35.7451923 C42.3148148,35.7451923 39.8148148,33.0769231 39.8148148,29.8076923 C39.8148148,26.5384615 42.3148148,23.8701923 45.3703704,23.8701923 C46.0756971,23.8710728 46.7745727,24.0097002 47.4305555,24.2788462 C47.9979818,24.5405965 48.655685,24.4768499 49.1666667,24.1105769 C49.6844882,23.7616768 49.997871,23.1650442 50,22.5240385 L50,13.4615385 C50,11.3373663 48.3417954,9.61538462 46.2962963,9.61538462 L37.9166666,9.61538462 C37.9398148,9.30288462 37.9629629,8.96634615 37.9629629,8.65384615 C37.9629629,3.8744589 34.2320025,0 29.6296296,0 C25.0272566,0 21.2962962,3.8744589 21.2962962,8.65384615 C21.2962962,8.96634615 21.3194443,9.30288462 21.3425925,9.61538462 L12.9629628,9.61538462 C10.9174638,9.61538462 9.25925912,11.3373663 9.25925912,13.4615385 L9.25925912,21.2019231 L8.33333319,21.1538462 C3.73096032,21.1538463 0,25.0283051 0,29.8076923 C0,34.5870795 3.73096032,38.4615384 8.33333319,38.4615385 L9.25925912,38.4134615 L9.25925912,46.1538462 C9.25925912,48.2780183 10.9174638,50 12.9629628,50 L22.7314814,50 L36.5277777,50 Z" id="Path" stroke="#95A3BF" stroke-width="1.4"></path>
<path d="M86.5277777,100 L96.2962963,100 C98.3417954,100 100,98.2780183 100,96.1538462 L100,87.0913462 C99.997871,86.4503405 99.6844882,85.8537078 99.1666667,85.5048077 C98.655685,85.1385347 97.9979818,85.0747881 97.4305555,85.3365385 C96.7745727,85.6056844 96.0756971,85.7443119 95.3703704,85.7451923 C92.3148148,85.7451923 89.8148148,83.0769231 89.8148148,79.8076923 C89.8148148,76.5384615 92.3148148,73.8701923 95.3703704,73.8701923 C96.0756971,73.8710728 96.7745727,74.0097002 97.4305555,74.2788462 C97.9979818,74.5405965 98.655685,74.4768499 99.1666667,74.1105769 C99.6844882,73.7616768 99.997871,73.1650442 100,72.5240385 L100,63.4615385 C100,61.3373663 98.3417954,59.6153846 96.2962963,59.6153846 L87.9166666,59.6153846 C87.9398148,59.3028846 87.9629629,58.9663462 87.9629629,58.6538462 C87.9629629,53.8744589 84.2320025,50 79.6296296,50 C75.0272566,50 71.2962962,53.8744589 71.2962962,58.6538462 C71.2962962,58.9663462 71.3194443,59.3028846 71.3425925,59.6153846 L62.9629628,59.6153846 C60.9174638,59.6153846 59.2592591,61.3373663 59.2592591,63.4615385 L59.2592591,71.2019231 L58.3333332,71.1538462 C53.7309603,71.1538463 50,75.0283051 50,79.8076923 C50,84.5870795 53.7309603,88.4615384 58.3333332,88.4615385 L59.2592591,88.4134615 L59.2592591,96.1538462 C59.2592591,98.2780183 60.9174638,100 62.9629628,100 L72.7314814,100 L86.5277777,100 Z" id="Path-Copy-3" stroke="#95A3BF" stroke-width="1.4" transform="translate(75, 75) scale(-1, -1) translate(-75, -75)"></path>
<path d="M86.2962963,50 C88.3417954,50 90,48.2780183 90,46.1538462 L90,37.0913462 C89.997871,36.4503405 89.6844882,35.8537078 89.1666667,35.5048077 C88.655685,35.1385347 87.9979818,35.0747881 87.4305555,35.3365385 C86.7745727,35.6056844 86.0756971,35.7443119 85.3703704,35.7451923 C82.3148148,35.7451923 79.8148148,33.0769231 79.8148148,29.8076923 C79.8148148,26.5384615 82.3148148,23.8701923 85.3703704,23.8701923 C86.0756971,23.8710728 86.7745727,24.0097002 87.4305555,24.2788462 C87.9979818,24.5405965 88.655685,24.4768499 89.1666667,24.1105769 C89.6844882,23.7616768 89.997871,23.1650442 90,22.5240385 L90,13.4615385 C90,11.3373663 88.3417954,9.61538462 86.2962963,9.61538462 L77.9166666,9.61538462 C77.9398148,9.30288462 77.9629629,8.96634615 77.9629629,8.65384615 C77.9629629,3.8744589 74.2320025,0 69.6296296,0 C65.0272566,0 61.2962962,3.8744589 61.2962962,8.65384615 C61.2962962,8.96634615 61.3194443,9.30288462 61.3425925,9.61538462 L52.9629628,9.61538462 C50.9174638,9.61538462 49.2592591,11.3373663 49.2592591,13.4615385 L49.2592591,21.2019231 L48.3333332,21.1538462 C43.7309603,21.1538463 40,25.0283051 40,29.8076923 C40,34.5870795 43.7309603,38.4615384 48.3333332,38.4615385 L49.2592591,38.4134615 L49.2592591,46.1538462 C49.2592591,48.2780183 50.9174638,50 52.9629628,50 L86.2962963,50 Z" id="Path-Copy" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<polygon id="Star" fill="#95A3BF" opacity="0.2" points="65 35 57.946577 38.7082039 59.2936609 30.854102 53.5873218 25.2917961 61.4732885 24.145898 65 17 68.5267115 24.145898 76.4126782 25.2917961 70.7063391 30.854102 72.053423 38.7082039"></polygon>
<path d="M46.5277777,100 L56.2962963,100 C58.3417954,100 60,98.2780183 60,96.1538462 L60,87.0913462 C59.997871,86.4503405 59.6844882,85.8537078 59.1666667,85.5048077 C58.655685,85.1385347 57.9979818,85.0747881 57.4305555,85.3365385 C56.7745727,85.6056844 56.0756971,85.7443119 55.3703704,85.7451923 C52.3148148,85.7451923 49.8148148,83.0769231 49.8148148,79.8076923 C49.8148148,76.5384615 52.3148148,73.8701923 55.3703704,73.8701923 C56.0756971,73.8710728 56.7745727,74.0097002 57.4305555,74.2788462 C57.9979818,74.5405965 58.655685,74.4768499 59.1666667,74.1105769 C59.6844882,73.7616768 59.997871,73.1650442 60,72.5240385 L60,63.4615385 C60,61.3373663 58.3417954,59.6153846 56.2962963,59.6153846 L47.9166666,59.6153846 C47.9398148,59.3028846 47.9629629,58.9663462 47.9629629,58.6538462 C47.9629629,53.8744589 44.2320025,50 39.6296296,50 C35.0272566,50 31.2962962,53.8744589 31.2962962,58.6538462 C31.2962962,58.9663462 31.3194443,59.3028846 31.3425925,59.6153846 L22.9629628,59.6153846 C20.9174638,59.6153846 19.2592591,61.3373663 19.2592591,63.4615385 L19.2592591,71.2019231 L18.3333332,71.1538462 C13.7309603,71.1538463 10,75.0283051 10,79.8076923 C10,84.5870795 13.7309603,88.4615384 18.3333332,88.4615385 L19.2592591,88.4134615 L19.2592591,96.1538462 C19.2592591,98.2780183 20.9174638,100 22.9629628,100 C25.0662296,100 26.6436797,100 27.6953131,100 C28.8144616,100 30.4931844,100 32.7314814,100 L46.5277777,100 Z" id="Path-Copy-2" stroke="#95A3BF" stroke-width="1.4" fill="#F0F7FE" transform="translate(35, 75) scale(-1, -1) translate(-35, -75)"></path>
<path d="M16.9459459,59 C18.0405644,59 18.9279279,58.1045695 18.9279279,57 C18.9279279,55.8954305 18.0405644,55 16.9459459,55 C15.8513275,55 14.963964,55.8954305 14.963964,57 C14.963964,58.1045695 15.8513275,59 16.9459459,59 Z M22.8918919,59 C23.9865103,59 24.8738739,58.1045695 24.8738739,57 C24.8738739,55.8954305 23.9865103,55 22.8918919,55 C21.7972735,55 20.9099099,55.8954305 20.9099099,57 C20.9099099,58.1045695 21.7972735,59 22.8918919,59 Z M28.8378378,59 C29.9324563,59 30.8198198,58.1045695 30.8198198,57 C30.8198198,55.8954305 29.9324563,55 28.8378378,55 C27.7432194,55 26.8558559,55.8954305 26.8558559,57 C26.8558559,58.1045695 27.7432194,59 28.8378378,59 Z" id="Oval-4" fill="#95A3BF"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>E164C8FF-CEE9-4F16-BA63-5FB4919DD393</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -553)">
<g id="SAP" transform="translate(601, 523)">
<g id="Content" transform="translate(0, 30)">
<g id="No-SAP-found" transform="translate(30, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Center-logo" transform="translate(96, 55)" fill-rule="nonzero">
<polygon id="Path" fill="#95A3BF" opacity="0.66" points="108 0 0 0 0 54 54.5934066 54"></polygon>
<path d="M53.4065934,10.8 L53.4065934,36.24 L44.1494505,10.8 L34.8923077,10.8 L27.0593407,31.92 C26.1098901,26.64 20.6505495,24.72 16.378022,23.28 C13.5296703,22.32 10.443956,21.12 10.443956,19.44 C10.443956,18.24 12.1054945,17.04 15.1912088,17.28 C17.3274725,17.52 19.2263736,17.52 23.0241758,19.44 L26.821978,12.96 C23.2615385,11.04 18.5142857,10.08 14.7164835,10.08 C10.2065934,10.08 6.40879121,11.52 4.03516484,13.92 C2.37362637,15.6 1.66153846,17.76 1.42417582,20.16 C1.42417582,23.52 2.61098901,25.92 5.22197802,27.84 C7.35824176,29.28 9.96923077,30.24 12.3428571,30.96 C15.4285714,31.92 17.8021978,32.88 17.8021978,34.56 C17.5648352,36.72 15.1912088,37.2 13.5296703,37.2 C10.6813187,37.44 8.30769231,36.96 4.74725275,34.8 L1.42417582,41.28 C4.98461538,43.44 8.78241758,44.4 13.2923077,44.4 C16.378022,44.4 21.1252747,43.44 23.7362637,41.04 L23.2615385,43.2 L32.2813187,43.2 L33.9428571,39.12 C37.5032967,40.08 41.5384615,40.32 45.0989011,39.12 L46.2857143,43.2 L62.4263736,43.2 L62.4263736,33.6 L65.7494505,33.6 C74.0571429,33.6 79.0417582,29.52 79.0417582,22.32 C79.0417582,14.16 74.2945055,10.8 64.0879121,10.8 L53.4065934,10.8 Z M36.0791209,31.92 L39.4021978,21.12 L39.6395604,21.12 L42.9626374,31.92 C40.589011,32.64 38.2153846,32.64 36.0791209,31.92 Z M62.4263736,26.4 L62.4263736,17.76 L64.8,17.76 C67.8857143,17.76 70.2593407,18.72 70.2593407,21.84 C70.2593407,25.2 67.8857143,26.4 64.8,26.4 L62.4263736,26.4 Z" id="Shape" fill="#FFFFFF"></path>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle-Copy-8" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.9" fill="#FFFFFF" x="20" y="34" width="68" height="50" rx="4"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" x="0" y="0" width="70.3603604" height="54" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="165px" viewBox="0 0 300 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>D3A9E7AB-A2B9-4073-9525-28AED9DF6D51</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -1512)">
<g id="Servicios" transform="translate(601, 1482)">
<g id="Top" transform="translate(30, 30)">
<g id="No-Service-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M189,111.087912 C190.577956,111.087912 191.857143,112.367099 191.857143,113.945055 L191.857143,116.142857 C191.857143,117.720814 190.577956,119 189,119 C187.422044,119 186.142857,117.720814 186.142857,116.142857 L186.142857,113.945055 C186.142857,112.367099 187.422044,111.087912 189,111.087912 Z M171.857143,95.9230769 C173.435099,95.9230769 174.714286,97.2022634 174.714286,98.7802198 L174.714286,116.142857 C174.714286,117.720814 173.435099,119 171.857143,119 C170.279186,119 169,117.720814 169,116.142857 L169,98.7802198 C169,97.2022634 170.279186,95.9230769 171.857143,95.9230769 Z M206.142857,95.9230769 C207.720814,95.9230769 209,97.2022634 209,98.7802198 L209,116.142857 C209,117.720814 207.720814,119 206.142857,119 C204.564901,119 203.285714,117.720814 203.285714,116.142857 L203.285714,98.7802198 C203.285714,97.2022634 204.564901,95.9230769 206.142857,95.9230769 Z M197.571429,103.835165 C199.149385,103.835165 200.428571,105.114351 200.428571,106.692308 L200.428571,116.142857 C200.428571,117.720814 199.149385,119 197.571429,119 C195.993472,119 194.714286,117.720814 194.714286,116.142857 L194.714286,106.692308 C194.714286,105.114351 195.993472,103.835165 197.571429,103.835165 Z M180.428571,89 C182.006528,89 183.285714,90.2791864 183.285714,91.8571429 L183.285714,116.142857 C183.285714,117.720814 182.006528,119 180.428571,119 C178.850615,119 177.571429,117.720814 177.571429,116.142857 L177.571429,91.8571429 C177.571429,90.2791864 178.850615,89 180.428571,89 Z" id="Rectangle-Copy-6" fill="#FFFFFF" transform="translate(189, 104) scale(-1, 1) translate(-189, -104)"></path>
<g id="IMG" transform="translate(59, 19.6322)" stroke-linejoin="round" stroke-width="1.4">
<g id="Group" transform="translate(0.3047, 0)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" fill="#FFFFFF" points="9.6 0 19.2 6 19.2 18 9.89959798 24 6.1284311e-15 18 0 6"></polygon>
<path d="M0.0128647192,6 C6.60402022,9.78378378 9.89959798,11.6756757 9.89959798,11.6756757 C9.89959798,11.6756757 12.9954437,9.78378378 19.1871353,6" id="Path-100"></path>
<line x1="9.89959798" y1="11.6756757" x2="9.89959798" y2="24" id="Path-33"></line>
</g>
<g id="Group" transform="translate(67, 0.3678)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" points="9.6 0 19.2 6 19.2 18 9.89959798 24 6.1284311e-15 18 0 6"></polygon>
<path d="M0.0128647192,6 C6.60402022,9.78378378 9.89959798,11.6756757 9.89959798,11.6756757 C9.89959798,11.6756757 12.9954437,9.78378378 19.1871353,6" id="Path-100"></path>
<line x1="9.89959798" y1="11.6756757" x2="9.89959798" y2="24" id="Path-33"></line>
</g>
<g id="Group-2" transform="translate(0, 17.8678)">
<g id="Lines" transform="translate(19.25, 0)" stroke="#95A3BF" stroke-linecap="round">
<path d="M0.25,0 C0.25,0 4.75,2.75 13.75,8.25 L13.75,31.5" id="Path-34"></path>
<path d="M34.75,0.25 C34.75,0.25 39.0833333,2.91666667 47.75,8.25 L47.75,31.5" id="Path-34-Copy" stroke-dasharray="2,3" transform="translate(41.25, 15.875) scale(-1, 1) translate(-41.25, -15.875)"></path>
<path d="M0,37.25 L13.75,45.5 L13.75,68.75" id="Path-34" stroke-dasharray="2,3" transform="translate(6.875, 53) scale(1, -1) translate(-6.875, -53)"></path>
<polyline id="Path-34-Copy" transform="translate(41.2523, 52.8486) scale(-1, -1) translate(-41.2523, -52.8486)" points="34.75 37.25 47.7545747 45.1972401 47.7545747 68.4472401"></polyline>
</g>
<g id="Group-Copy" transform="translate(0, 57.5)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" points="9.6 0 19.2 6 19.2 18 9.89959798 24 6.1284311e-15 18 0 6"></polygon>
<path d="M0.0128647192,6 C6.60402022,9.78378378 9.89959798,11.6756757 9.89959798,11.6756757 C9.89959798,11.6756757 12.9954437,9.78378378 19.1871353,6" id="Path-100"></path>
<line x1="9.89959798" y1="11.6756757" x2="9.89959798" y2="24" id="Path-33"></line>
</g>
<g id="Group-Copy-2" transform="translate(67, 57.5)" stroke="#95A3BF" stroke-linecap="round">
<polygon id="Polygon" fill="#FFFFFF" points="9.6 0 19.2 6 19.2 18 9.89959798 24 6.1284311e-15 18 0 6"></polygon>
<path d="M0.0128647192,6 C6.60402022,9.78378378 9.89959798,11.6756757 9.89959798,11.6756757 C9.89959798,11.6756757 12.9954437,9.78378378 19.1871353,6" id="Path-100"></path>
<line x1="9.89959798" y1="11.6756757" x2="9.89959798" y2="24" id="Path-33"></line>
</g>
<path d="M47.56625,9.9125 C46.224,5.3625 39.776,5.3625 38.43375,9.9125 L38.10875,11.0175 C37.7025586,12.3971504 36.6941172,13.5190382 35.3654092,14.0694578 C34.0367012,14.6198775 32.5303258,14.539757 31.2675,13.8515 L30.26,13.299 C26.09025,11.0305 21.5305,15.59025 23.80225,19.75675 L24.3515,20.7675 C25.801,23.4325 24.42625,26.75075 21.5175,27.60875 L20.4125,27.93375 C15.8625,29.276 15.8625,35.724 20.4125,37.06625 L21.5175,37.39125 C22.8971504,37.7974414 24.0190382,38.8058828 24.5694578,40.1345908 C25.1198775,41.4632988 25.039757,42.9696742 24.3515,44.2325 L23.799,45.24 C21.5305,49.40975 26.09025,53.9695 30.25675,51.69775 L31.2675,51.1485 C32.5303258,50.460243 34.0367012,50.3801225 35.3654092,50.9305422 C36.6941172,51.4809618 37.7025586,52.6028496 38.10875,53.9825 L38.43375,55.0875 C39.776,59.6375 46.224,59.6375 47.56625,55.0875 L47.89125,53.9825 C48.2974414,52.6028496 49.3058828,51.4809618 50.6345908,50.9305422 C51.9632988,50.3801225 53.4696742,50.460243 54.7325,51.1485 L55.74,51.701 C59.90975,53.9695 64.4695,49.40975 62.19775,45.24325 L61.6485,44.2325 C60.960243,42.9696742 60.8801225,41.4632988 61.4305422,40.1345908 C61.9809618,38.8058828 63.1028496,37.7974414 64.4825,37.39125 L65.5875,37.06625 C70.1375,35.724 70.1375,29.276 65.5875,27.93375 L64.4825,27.60875 C63.1028496,27.2025586 61.9809618,26.1941172 61.4305422,24.8654092 C60.8801225,23.5367012 60.960243,22.0303258 61.6485,20.7675 L62.201,19.76 C64.4695,15.59025 59.90975,11.0305 55.74325,13.30225 L54.7325,13.8515 C53.4696742,14.539757 51.9632988,14.6198775 50.6345908,14.0694578 C49.3058828,13.5190382 48.2974414,12.3971504 47.89125,11.0175 L47.56625,9.9125 L47.56625,9.9125 Z M42.5016215,41.5 C37.2540209,41.5 33,37.2467051 33,32 C33,26.7532949 37.2540209,22.5 42.5016215,22.5 C47.7474311,22.5 52,26.7518433 52,31.9967577 C52,37.2416721 47.7474311,41.4935153 42.5016215,41.4935154 L42.5016215,41.5 Z" id="Shape" stroke="#222222" fill="#FFFFFF"></path>
</g>
</g>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Top" transform="translate(211, 0)">
<rect id="Rectangle-Copy-8" stroke="#95A3BF" stroke-width="1.4" x="20" y="34" width="68" height="50" rx="4"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" fill-opacity="0.8" fill="#FFFFFF" x="0" y="0" width="70.3603604" height="54" rx="4"></rect>
<path d="M5.94594595,8 C7.04056437,8 7.92792793,7.1045695 7.92792793,6 C7.92792793,4.8954305 7.04056437,4 5.94594595,4 C4.85132752,4 3.96396396,4.8954305 3.96396396,6 C3.96396396,7.1045695 4.85132752,8 5.94594595,8 Z M11.8918919,8 C12.9865103,8 13.8738739,7.1045695 13.8738739,6 C13.8738739,4.8954305 12.9865103,4 11.8918919,4 C10.7972735,4 9.90990991,4.8954305 9.90990991,6 C9.90990991,7.1045695 10.7972735,8 11.8918919,8 Z M17.8378378,8 C18.9324563,8 19.8198198,7.1045695 19.8198198,6 C19.8198198,4.8954305 18.9324563,4 17.8378378,4 C16.7432194,4 15.8558559,4.8954305 15.8558559,6 C15.8558559,7.1045695 16.7432194,8 17.8378378,8 Z" id="Oval-4" fill="#95A3BF" opacity="0.33"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="299px" height="164px" viewBox="0 0 299 164" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>E456EC32-2047-44E1-9548-F616AC208D65</title>
<defs>
<linearGradient x1="50%" y1="50%" x2="52.9793104%" y2="51.386177%" id="linearGradient-1">
<stop stop-color="#FFFFFF" stop-opacity="0.7" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M40,6 L214,6 C216.761424,6 219,8.23857625 219,11 L219,129 L219,129 L35,129 L35,11 C35,8.23857625 37.2385763,6 40,6 Z" id="path-2"></path>
<linearGradient x1="50%" y1="49.8604439%" x2="50%" y2="50.731762%" id="linearGradient-3">
<stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0.07" offset="100%"></stop>
</linearGradient>
<path d="M1.25,18 C1.25,18.6627417 1.80964406,19.2 2.5,19.2 L5,19.2 L5,22.8 C5,23.4627417 5.55964406,24 6.25,24 L13.75,24 C14.4403559,24 15,23.4627417 15,22.8 L15,19.2 L17.5,19.2 C18.1903559,19.2 18.75,18.6627417 18.75,18 L18.75,9.6 L20,9.6 L20,7.2 L15,7.2 L15,0 L12.5,0 L12.5,7.2 L7.5,7.2 L7.5,0 L5,0 L5,7.2 L0,7.2 L0,9.6 L1.25,9.6 L1.25,18 Z" id="path-4"></path>
</defs>
<g id="Nuevo-UI-Menu/Head" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Mockup---No-data-screens" transform="translate(-631, -1951)">
<g id="Consolas-visuales" transform="translate(601, 1920)">
<g id="Top" transform="translate(30, 30)">
<g id="No-Visual-Console-found" transform="translate(0, 1)">
<g id="Base" transform="translate(23, 14)">
<path d="M225,103 L238,103 C245.179702,103 251,108.820298 251,116 C251,123.179702 245.179702,129 238,129 L225,129 L225,129" id="Path-5" stroke="#222222" stroke-width="1.4" stroke-linejoin="round"></path>
<path d="M38.8461538,0 L214.846154,0 C220.369001,-1.01453063e-15 224.846154,4.4771525 224.846154,10 L224.846154,140 L224.846154,140 L28.8461538,140 L28.8461538,10 C28.8461538,4.4771525 33.3233063,1.01453063e-15 38.8461538,0 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<g id="Rectangle">
<use fill="#D0E7FD" xlink:href="#path-2"></use>
<use fill="url(#linearGradient-1)" xlink:href="#path-2"></use>
</g>
<path d="M0,139 L254,139 L254,141 C254,145.418278 250.418278,149 246,149 L8,149 C3.581722,149 5.41083001e-16,145.418278 0,141 L0,139 L0,139 Z" id="Rectangle" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
</g>
<g id="X" transform="translate(0, 13)">
<g id="BAse">
<circle id="Oval" fill="#95A3BF" opacity="0.25" cx="35" cy="35" r="35"></circle>
<path d="M35,10 C48.8071187,10 60,21.1928813 60,35 C60,48.8071187 48.8071187,60 35,60 C21.1928813,60 10,48.8071187 10,35 C10,21.1928813 21.1928813,10 35,10 Z M35,19.8837209 C26.6515096,19.8837209 19.8837209,26.6515096 19.8837209,35 C19.8837209,43.3484904 26.6515096,50.1162791 35,50.1162791 C43.3484904,50.1162791 50.1162791,43.3484904 50.1162791,35 C50.1162791,26.6515096 43.3484904,19.8837209 35,19.8837209 Z" id="Oval-3" fill="#95A3BF" opacity="0.25"></path>
<path d="M25.9383632,25.9383632 C27.1895142,24.6872123 29.2180307,24.6872123 30.4691816,25.9383632 L35,30.469 L39.5308184,25.9383632 C40.7819693,24.6872123 42.8104858,24.6872123 44.0616368,25.9383632 C45.3127877,27.1895142 45.3127877,29.2180307 44.0616368,30.4691816 L39.531,35 L44.0616368,39.5308184 C45.2664488,40.7356304 45.3110715,42.6612917 44.1955048,43.9195 L44.0616368,44.0616368 C42.8104858,45.3127877 40.7819693,45.3127877 39.5308184,44.0616368 L35,39.531 L30.4691816,44.0616368 C29.2180307,45.3127877 27.1895142,45.3127877 25.9383632,44.0616368 C24.6872123,42.8104858 24.6872123,40.7819693 25.9383632,39.5308184 L30.469,35 L25.9383632,30.4691816 C24.7335512,29.2643696 24.6889285,27.3387083 25.8044952,26.0805 Z" id="Rectangle-3" stroke="#222222" stroke-width="1.4" fill="#ED474A" stroke-linejoin="round"></path>
</g>
<g id="Top" transform="translate(24, 50)" stroke-linejoin="round">
<g id="Path">
<use fill="#FFFFFF" xlink:href="#path-4"></use>
<use stroke="#222222" stroke-width="1.4" fill="url(#linearGradient-3)" xlink:href="#path-4"></use>
</g>
<path d="M10,24 L10,36 C10,45.9411255 18.0588745,54 28,54 L28,54 L28,54" id="Path-4" stroke="#222222" stroke-width="1.4"></path>
</g>
</g>
<g id="Screen" transform="translate(64, 25)">
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" x="0" y="0" width="172" height="15" rx="3"></rect>
<rect id="Rectangle" stroke="#95A3BF" stroke-width="1.4" x="0" y="23" width="70" height="46" rx="3"></rect>
<rect id="Rectangle-Copy-2" stroke="#95A3BF" stroke-width="1.4" x="0" y="77" width="52" height="36" rx="3"></rect>
<rect id="Rectangle-Copy-3" stroke="#95A3BF" stroke-width="1.4" x="60" y="77" width="52" height="36" rx="3"></rect>
<rect id="Rectangle-Copy-4" stroke="#95A3BF" stroke-width="1.4" x="120" y="77" width="52" height="36" rx="3"></rect>
<rect id="Rectangle-Copy" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round" x="78" y="23" width="94" height="46" rx="3"></rect>
<path d="M8,89 C10.209139,89 12,87.209139 12,85 C12,82.790861 10.209139,81 8,81 C5.790861,81 4,82.790861 4,85 C4,87.209139 5.790861,89 8,89 Z M8,99 C10.209139,99 12,97.209139 12,95 C12,92.790861 10.209139,91 8,91 C5.790861,91 4,92.790861 4,95 C4,97.209139 5.790861,99 8,99 Z M20,99 C22.209139,99 24,97.209139 24,95 C24,92.790861 22.209139,91 20,91 C17.790861,91 16,92.790861 16,95 C16,97.209139 17.790861,99 20,99 Z M32,99 C34.209139,99 36,97.209139 36,95 C36,92.790861 34.209139,91 32,91 C29.790861,91 28,92.790861 28,95 C28,97.209139 29.790861,99 32,99 Z M32,109 C34.209139,109 36,107.209139 36,105 C36,102.790861 34.209139,101 32,101 C29.790861,101 28,102.790861 28,105 C28,107.209139 29.790861,109 32,109 Z" id="Oval-2" stroke="#222222" stroke-width="1.4" fill="#FFFFFF" stroke-linejoin="round"></path>
<path d="M148.78,90.95 C148.77,90.84 148.75,90.72 148.75,90.62 C148.75,89.95 149.12,89.42 149.88,89.42 C150.61,89.42 150.97,89.9 150.97,90.43 C150.97,90.9 150.72,91.29 150.14,91.65 L149.07,92.32 C147.94,93.02 147.55,93.89 147.53,95 L152.22,95 L152.22,93.94 L149.01,93.94 C149.1,93.62 149.36,93.39 149.67,93.2 L150.93,92.42 C151.71,91.94 152.18,91.25 152.18,90.41 C152.18,89.3 151.33,88.37 149.9,88.37 C148.43,88.37 147.59,89.38 147.59,90.5 C147.59,90.63 147.61,90.78 147.62,90.87 L148.78,90.95 Z M155.65,95 L155.65,88.52 L154.61,88.52 C154.47,89.2 153.83,89.72 152.9,89.74 L152.9,90.56 L154.47,90.56 L154.47,95 L155.65,95 Z M158.1,91.76 C158.1,90.94 158.24,90.31 158.56,89.91 C158.78,89.62 159.09,89.43 159.56,89.43 C160.03,89.43 160.33,89.62 160.56,89.91 C160.87,90.31 161.01,90.94 161.01,91.76 C161.01,92.58 160.87,93.21 160.56,93.61 C160.33,93.9 160.03,94.09 159.56,94.09 C159.09,94.09 158.78,93.9 158.56,93.61 C158.25,93.21 158.1,92.58 158.1,91.76 Z M156.91,91.76 C156.91,92.62 157.05,93.43 157.49,94.09 C157.91,94.72 158.59,95.15 159.56,95.15 C160.53,95.15 161.2,94.72 161.62,94.09 C162.06,93.43 162.2,92.62 162.2,91.76 C162.2,90.9 162.06,90.09 161.62,89.43 C161.2,88.8 160.53,88.37 159.56,88.37 C158.59,88.37 157.91,88.8 157.49,89.43 C157.05,90.09 156.91,90.9 156.91,91.76 Z M164.21,90.95 C164.2,90.84 164.18,90.72 164.18,90.62 C164.18,89.95 164.55,89.42 165.31,89.42 C166.04,89.42 166.4,89.9 166.4,90.43 C166.4,90.9 166.15,91.29 165.57,91.65 L164.5,92.32 C163.37,93.02 162.98,93.89 162.96,95 L167.65,95 L167.65,93.94 L164.44,93.94 C164.53,93.62 164.79,93.39 165.1,93.2 L166.36,92.42 C167.14,91.94 167.61,91.25 167.61,90.41 C167.61,89.3 166.76,88.37 165.33,88.37 C163.86,88.37 163.02,89.38 163.02,90.5 C163.02,90.63 163.04,90.78 163.05,90.87 L164.21,90.95 Z M149.76,108 L149.76,101.52 L148.72,101.52 C148.58,102.2 147.94,102.72 147.01,102.74 L147.01,103.56 L148.58,103.56 L148.58,108 L149.76,108 Z M152.73,105.06 C152.83,105.01 153.03,104.95 153.34,104.95 C153.89,104.95 154.49,105.27 154.49,106.02 C154.49,106.61 154.05,107.12 153.26,107.12 C152.54,107.12 152,106.61 151.97,105.86 L150.8,106.1 C150.88,107.18 151.77,108.15 153.27,108.15 C154.81,108.15 155.7,107.14 155.7,106.03 C155.7,104.78 154.73,104.08 153.76,104.06 L155.52,102.52 L155.52,101.52 L151.02,101.52 L151.02,102.57 L153.97,102.57 L152.18,104.17 L152.73,105.06 Z M157.67,104.76 C157.67,103.94 157.81,103.31 158.13,102.91 C158.35,102.62 158.66,102.43 159.13,102.43 C159.6,102.43 159.9,102.62 160.13,102.91 C160.44,103.31 160.58,103.94 160.58,104.76 C160.58,105.58 160.44,106.21 160.13,106.61 C159.9,106.9 159.6,107.09 159.13,107.09 C158.66,107.09 158.35,106.9 158.13,106.61 C157.82,106.21 157.67,105.58 157.67,104.76 Z M156.48,104.76 C156.48,105.62 156.62,106.43 157.06,107.09 C157.48,107.72 158.16,108.15 159.13,108.15 C160.1,108.15 160.77,107.72 161.19,107.09 C161.63,106.43 161.77,105.62 161.77,104.76 C161.77,103.9 161.63,103.09 161.19,102.43 C160.77,101.8 160.1,101.37 159.13,101.37 C158.16,101.37 157.48,101.8 157.06,102.43 C156.62,103.09 156.48,103.9 156.48,104.76 Z M167.51,101.69 C167.23,101.51 166.73,101.37 166.13,101.37 C164.12,101.37 162.65,102.79 162.65,105.14 C162.65,106.8 163.59,108.15 165.24,108.15 C166.6,108.15 167.7,107.25 167.7,105.9 C167.7,104.57 166.79,103.71 165.5,103.71 C164.81,103.71 164.19,103.96 163.85,104.48 C163.96,103.22 164.84,102.41 166.06,102.41 C166.59,102.41 166.93,102.54 167.17,102.67 L167.51,101.69 Z M163.98,105.92 C163.98,105.16 164.56,104.71 165.24,104.71 C165.92,104.71 166.5,105.16 166.5,105.92 C166.5,106.67 165.92,107.13 165.24,107.13 C164.58,107.13 163.98,106.66 163.98,105.92 Z" id="Path-2" fill="#95A3BF" fill-rule="nonzero"></path>
<g id="Group-2" transform="translate(79, 29)" stroke="#95A3BF" stroke-width="1.4">
<path d="M0,9 L17,9 C19.7614237,9 22,11.2385763 22,14 L22,22 C22,24.7614237 24.2385763,27 27,27 L52,27 C54.7614237,27 57,24.7614237 57,22 L57,19 C57,16.2385763 59.2385763,14 62,14 C72,14 82,14 92,14" id="Path-101"></path>
<path d="M0,34 L5.125,34 C8.4387085,34 11.125,31.3137085 11.125,28 L11.125,6 C11.125,2.6862915 13.8112915,3.27325364e-15 17.125,2.66453526e-15 L30.3537234,-8.8817842e-16 C33.6674319,-1.4968968e-15 36.3537234,2.6862915 36.3537234,6 L36.3537234,14.2258852 C36.3537234,17.299438 38.8453302,19.7910448 41.918883,19.7910448 C44.9924357,19.7910448 47.4840426,17.299438 47.4840426,14.2258852 L47.4840426,10.0597015 C47.4840426,6.74599299 50.1703341,4.05970149 53.4840426,4.05970149 L68.4441489,4.05970149 C71.7578574,4.05970149 74.4441489,6.74599299 74.4441489,10.0597015 L74.4441489,28 C74.4441489,31.3137085 77.1304404,34 80.4441489,34 L92,34 L92,34" id="Path-102"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>alerta externa</title>
<g id="alerta-externa" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M7,8 C10,8 11,10 11,12 L11,15 L12.9421268,17.4207466 C12.980022,17.4797635 13,17.5469472 13,17.6153698 C13,17.8277953 12.8115134,18 12.5790032,18 L1.42106332,18 C1.34572552,18 1.27176775,17.9815301 1.20690603,17.9465168 C1.00672668,17.838458 0.940330434,17.6025993 1.05860612,17.4197119 L3,15 L3,12 C3,10 4,8 7,8 Z M9,18 C9,19.104 8.1048,20 7,20 C5.8956,20 5,19.104 5,18 L9,18 Z M8,0 C14.6273158,0 20,5.37252632 20,12 L18.1297368,12 C18.1297368,6.40563158 13.5945263,1.87010526 8,1.87010526 Z M8,3.74021053 C12.5617368,3.74021053 16.2596316,7.43826316 16.2596316,12 L14.3895263,12 C14.3895263,8.47105263 11.5287895,5.61031579 8,5.61031579 Z" id="bell" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1016 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>linking</title>
<g id="linking" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group" transform="translate(5, 1)" fill="#3F3F3F" fill-rule="nonzero">
<path d="M7,-1 C7.55228475,-1 8,-0.55228475 8,0 L8,4 C8,4.55228475 7.55228475,5 7,5 C6.44771525,5 6,4.55228475 6,4 L6,1 L1,1 L1,10 L6,10 C6,9.48716416 6.38604019,9.06449284 6.88337887,9.00672773 L7,9 C7.55228475,9 8,9.44771525 8,10 L8,11 C8,11.5522847 7.55228475,12 7,12 L0,12 C-0.55228475,12 -1,11.5522847 -1,11 L-1,0 C-1,-0.55228475 -0.55228475,-1 0,-1 L7,-1 Z" id="Path-100"></path>
<path d="M10,6 C10.5522847,6 11,6.44771525 11,7 L11,11 C11,11.5522847 10.5522847,12 10,12 C9.44771525,12 9,11.5522847 9,11 L9,8 L4,8 L4,17 L9,17 C9,16.4871642 9.38604019,16.0644928 9.88337887,16.0067277 L10,16 C10.5522847,16 11,16.4477153 11,17 L11,18 C11,18.5522847 10.5522847,19 10,19 L3,19 C2.44771525,19 2,18.5522847 2,18 L2,7 C2,6.44771525 2.44771525,6 3,6 L10,6 Z" id="Path-100" transform="translate(6.5, 12.5) scale(-1, -1) translate(-6.5, -12.5)"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -114,6 +114,7 @@ if ($info === 'version') {
exit;
}
$user_in_db = null;
if (empty($apiPassword) === true
|| (empty($apiPassword) === false && $api_password === $apiPassword)
|| $apiTokenValid === true

View File

@ -250,6 +250,13 @@ class ConsoleSupervisor
$this->checkAllowOverrideEnabled();
/*
* Check if OpenSearch is configured and log collector enabled
* NOTIF.OPENSEARCH.CONSOLELOG
*/
$this->checkOpenSearchLogCollector();
/*
* Check if the Pandora Console log
* file remains in old location.
@ -540,6 +547,12 @@ class ConsoleSupervisor
$this->checkUpdateManagerRegistration();
/*
* Check if OpenSearch is configured and log collector enabled
* NOTIF.OPENSEARCH.CONSOLELOG
*/
$this->checkOpenSearchLogCollector();
/*
* Check if has API access.
* NOTIF.API.ACCESS
@ -2540,6 +2553,35 @@ class ConsoleSupervisor
}
/**
* Check if OpenSearch is configured and log collector enabled.
*
* @return void
*/
public function checkOpenSearchLogCollector()
{
global $config;
include_once $config['homedir'].'/include/functions_update_manager.php';
$login = get_parameter('login', false);
if ($config['log_collector'] !== '1' && empty($config['elasticsearch_ip']) === false && empty($config['elasticsearch_port']) === false) {
if (update_manager_verify_registration() === false) {
$this->notify(
[
'type' => 'NOTIF.OPENSEARCH.CONSOLELOG',
'title' => __('The Log collector is not enabled'),
'message' => __('The OpenSearch is defined but the log collector is not enabled.'),
'url' => '__url__/index.php?sec=gsetup&sec2=godmode/setup/setup&section=log',
'icon_notification' => self::ICON_QUESTION,
]
);
} else {
$this->cleanNotifications('NOTIF.OPENSEARCH.CONSOLELOG');
}
}
}
/**
* Check if has access to the API
*
@ -3137,7 +3179,7 @@ class ConsoleSupervisor
return;
}
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(true);
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer();
$counts = $sync->getQueues(true);
if (count($counts) === 0) {
@ -3195,7 +3237,7 @@ class ConsoleSupervisor
return;
}
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(true);
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer();
$queues = $sync->getQueues();
if (count($queues) === 0) {
// Clean all.
@ -3325,27 +3367,34 @@ class ConsoleSupervisor
public function checkTotalModulesByAgent()
{
$modules_by_agent = db_process_sql(
'SELECT count(*) AS modules_by_agent
'SELECT count(*) AS count
FROM tagente a
LEFT JOIN tagente_modulo m ON a.id_agente = m.id_agente
WHERE m.disabled = 0
GROUP BY m.id_agente'
);
$show_warning = false;
foreach ($modules_by_agent as $key => $total_modules) {
if ($total_modules['modules_by_agent'] > 200) {
$this->notify(
[
'type' => 'NOTIF.MODULES_AGENT.ALERT',
'title' => __('Your system has an average of %s modules per agent', $total_modules['modules_by_agent']),
'message' => __('This is higher than the recommended maximum (200). This may result in poor performance of your system.'),
'icon_notification' => self::ICON_HEADSUP,
'url' => '__url__index.php?sec=gagente&sec2=godmode/agentes/modificar_agente',
]
);
$show_warning = true;
break;
}
if ($modules_by_agent !== false) {
$agents = count($modules_by_agent);
$modules = array_sum(array_column($modules_by_agent, 'count'));
$ratio = ($modules / $agents);
$ratio = round($ratio, 2);
}
if ($ratio > 200) {
$this->notify(
[
'type' => 'NOTIF.MODULES_AGENT.ALERT',
'title' => __('Your system has an average of %s modules per agent', $ratio),
'message' => __('This is higher than the recommended maximum (200). This may result in poor performance of your system.'),
'icon_notification' => self::ICON_HEADSUP,
'url' => '__url__index.php?sec=gagente&sec2=godmode/agentes/modificar_agente',
]
);
$show_warning = true;
}
if ($show_warning === false) {

View File

@ -22,7 +22,7 @@ use DI\ContainerBuilder;
/*
* Pandora build version and version
*/
$build_version = 'PC240408';
$build_version = 'PC240410';
$pandora_version = 'v7.0NG.776';
// Do not overwrite default timezone set if defined.

View File

@ -470,7 +470,7 @@ function get_user_language($id_user=null)
if ($id_user !== null) {
$userinfo = get_user_info($id_user);
if ($userinfo['language'] != 'default') {
if (isset($userinfo['language']) === true && $userinfo['language'] != 'default') {
return $userinfo['language'];
}
}
@ -5617,6 +5617,13 @@ function get_help_info($section_name)
}
break;
case 'opensearch_installation':
if ($es) {
$result .= 'pandorafms/technical_annexes/38_opensearch_installation#instalacion';
} else {
$result .= 'pandorafms/technical_annexes/38_opensearch_installation#installation';
}
case 'servers_ha_clusters_tab':
if ($es) {
$result .= 'pandorafms/complex_environments_and_optimization/06_ha#alta_disponibilidad_del_servidor_de_datos';

View File

@ -322,6 +322,11 @@ function clippy_context_help($help=null)
$title = $clippy_modules_not_learning_mode['tours']['modules_not_learning_mode']['steps'][0]['title'];
$intro = $clippy_modules_not_learning_mode['tours']['modules_not_learning_mode']['steps'][0]['intro'];
$img = $clippy_modules_not_learning_mode['tours']['modules_not_learning_mode']['steps'][0]['img'];
} else if ($help === 'agent_module_interval') {
$clippy_agent_module_interval = clippy_agent_module_interval();
$title = $clippy_agent_module_interval['tours']['agent_module_interval']['steps'][0]['title'];
$intro = $clippy_agent_module_interval['tours']['agent_module_interval']['steps'][0]['intro'];
$img = $clippy_agent_module_interval['tours']['agent_module_interval']['steps'][0]['img'];
} else {
$img = html_print_image(
'images/info-warning.svg',

View File

@ -1235,6 +1235,8 @@ function events_get_all(
io_safe_input($filter['user_comment']),
$filter['user_comment']
);
array_unshift($fields, 'DISTINCT te.id_evento AS distinct_event');
}
// Source.

View File

@ -206,3 +206,43 @@ function groupview_get_groups_list($id_user=false, $access='AR', $is_not_paginat
'counter' => $counter,
];
}
function get_recursive_groups_heatmap($parent_group, $acl)
{
if ($parent_group['counter'] > 0) {
foreach ($parent_group['groups'] as $group_key => $group_value) {
if ((int) $group_value['_id_'] === 0) {
continue;
}
$childrens = groups_get_children($group_value['_id_'], true, $acl, false);
if (empty($childrens) === false) {
foreach ($childrens as $children) {
$children_status = groups_get_status($children['id_grupo']);
$parent_group['groups'][$group_key]['_monitor_checks_']++;
switch ($children_status) {
case AGENT_STATUS_CRITICAL:
$parent_group['groups'][$group_key]['_monitors_critical_']++;
break;
case AGENT_STATUS_WARNING:
$parent_group['groups'][$group_key]['_monitors_warning_']++;
break;
case AGENT_STATUS_UNKNOWN:
$parent_group['groups'][$group_key]['_monitors_unknown_']++;
break;
case AGENT_STATUS_NORMAL:
default:
$parent_group['groups'][$group_key]['_monitors_ok_']++;
break;
}
}
}
}
}
return $parent_group;
}

View File

@ -16,7 +16,7 @@
* @package Include
* @subpackage HTML
*/
use PandoraFMS\Enterprise\Metaconsole\Node;
if (!isset($config)) {
$working_dir = getcwd();
$working_dir = str_replace('\\', '/', $working_dir);
@ -1854,6 +1854,301 @@ function html_print_select_multiple_modules_filtered(array $data):string
}
/**
* Form multiple inputs for slect groups.
*
* @param array $data Data inputs.
*
* @return string Html output.
*/
function html_print_select_multiple_modules_filtered_formated(array $data):string
{
if (is_ajax() === true) {
ui_require_javascript_file(
'multiselect_filtered',
'include/javascript/',
true
);
ui_require_css_file(
'multiselect_filtered',
'include/styles/',
true
);
} else {
ui_require_javascript_file('multiselect_filtered');
ui_require_css_file('multiselect_filtered');
}
$uniqId = $data['uniqId'];
$return_all_group = isset($data['mReturnAllGroup']) ? $data['mReturnAllGroup'] : true;
// Group.
$output = '<div class="w98p">';
$output .= html_print_input(
[
'label' => __('Group'),
'label_class' => 'font-title-font',
'name' => 'filtered-module-group-'.$uniqId,
'returnAllGroup' => $return_all_group,
'privilege' => 'AR',
'type' => 'select_groups',
'return' => true,
'script' => 'fmAgentChange(\''.$uniqId.'\')',
'selected' => $data['mGroup'],
]
);
// Groups module.
$module_groups = db_get_all_rows_sql(
'SELECT * FROM tmodule_group ORDER BY name'
);
$module_groups = array_reduce(
$module_groups,
function ($carry, $item) {
$carry[$item['id_mg']] = $item['name'];
return $carry;
}
);
$output .= html_print_input(
[
'label' => __('Module group'),
'label_class' => 'font-title-font',
'type' => 'select',
'fields' => $module_groups,
'name' => 'filtered-module-module-group-'.$uniqId,
'selected' => $data['mModuleGroup'],
'return' => true,
'nothing' => __('All'),
'nothing_value' => 0,
'script' => 'fmModuleChange(\''.$uniqId.'\', '.(int) is_metaconsole().')',
]
);
$output .= '</div>';
$output .= '<div class="recursive-modules mrgn_lft_20px_important">';
// Recursion.
$output .= html_print_input(
[
'label' => __('Recursion'),
'label_class' => 'font-title-font',
'type' => 'switch',
'name' => 'filtered-module-recursion-'.$uniqId,
'value' => (empty($data['mRecursion']) === true) ? false : true,
'checked' => (empty($data['mRecursion']) === true) ? false : true,
'return' => true,
'id' => 'filtered-module-recursion-'.$uniqId,
'onchange' => 'fmAgentChange(\''.$uniqId.'\')',
]
);
$commonModules = 0;
if (empty($data['mShowCommonModules']) === false) {
$commonModules = 1;
}
$output .= html_print_input(
[
'label' => __('Only common modules'),
'label_class' => 'font-title-font',
'type' => 'switch',
'checked' => $commonModules,
'value' => $commonModules,
'name' => 'filtered-module-show-common-modules-'.$uniqId,
'id' => 'filtered-module-show-common-modules-'.$uniqId,
'return' => true,
'onchange' => 'fmModuleChange(\''.$uniqId.'\', '.(int) is_metaconsole().')',
]
);
$output .= '</div>';
if (empty($data['searchBar']) === false && $data['searchBar'] === true) {
$output .= '<div>';
$output .= '<div>';
$output .= html_print_input(
[
'type' => 'text',
'name' => 'agent-searchBar-'.$uniqId,
'onKeyUp' => 'searchAgent(\''.$uniqId.'\')',
'placeholder' => __('Type to search agents'),
'return' => true,
]
);
$output .= '</div>';
$output .= '<div>';
$output .= html_print_input(
[
'type' => 'text',
'name' => 'module-searchBar-'.$uniqId,
'onKeyUp' => 'searchModule(\''.$uniqId.'\')',
'return' => true,
'placeholder' => __('Type to search modules'),
]
);
$output .= '</div>';
$output .= '</div>';
}
$output .= '<div class="w98p">';
// Agent.
$agents = agents_get_group_agents(
// Id_group.
$data['mGroup'],
// Search.
false,
// Case.
'lower',
// NoACL.
false,
// ChildGroups.
false,
// Serialized.
false,
// Separator.
'|',
// Add_alert_bulk_op.
false,
// Force_serialized.
false,
// Meta_fields.
($data['mMetaFields'] ?? is_metaconsole())
);
if ((empty($agents)) === true || $agents == -1) {
$agents = [];
}
if ($data['mShowSelectedOtherGroups']) {
$selected_agents = explode(',', $data['mAgents']);
foreach ($selected_agents as $agent_id) {
if (!array_key_exists($agent_id, $agents)) {
$agents[$agent_id] = agents_get_alias($agent_id);
}
}
}
if (is_metaconsole() === true) {
$output .= html_print_input(
[
'label' => __('Agents'),
'label_class' => 'font-title-font',
'type' => 'select',
'fields' => $agents,
'name' => 'filtered-module-agents-'.$uniqId,
'selected' => explode(',', $data['mAgents']),
'return' => true,
'multiple' => true,
'style' => 'min-width: 200px;max-width:200px;',
'script' => 'fmModuleChange(\''.$uniqId.'\', '.(int) is_metaconsole().')',
'placeholder' => (isset($data['placeholderAgents']) === true) ? $data['placeholderAgents'] : '',
'truncate_size' => 300,
]
);
} else {
$output .= html_print_input(
[
'label' => __('Agents'),
'label_class' => 'font-title-font',
'type' => 'select_from_sql',
'sql' => 'SELECT `id_agente`,`alias` FROM tagente',
'name' => 'filtered-module-agents-'.$uniqId,
'selected' => explode(',', $data['mAgents']),
'return' => true,
'multiple' => true,
'style' => 'min-width: 200px;max-width:200px;',
'script' => 'fmModuleChange(\''.$uniqId.'\', '.(int) is_metaconsole().')',
'placeholder' => (isset($data['placeholderAgents']) === true) ? $data['placeholderAgents'] : '',
'truncate_size' => 300,
]
);
}
if (empty($data['mAgents']) === false
&& empty($data['mModuleGroup'] === false)
) {
$all_modules = get_modules_agents(
$data['mModuleGroup'],
explode(',', $data['mAgents']),
!$commonModules,
!is_metaconsole(),
is_metaconsole(),
false
);
} else {
$all_modules = [];
}
$mModules = $data['mModules'];
if (is_array($data['mModules']) === false) {
$mModules = explode(
',',
$data['mModules']
);
} else {
if (is_metaconsole()) {
foreach ($data['mModules'] as $row) {
$exp = explode('|', $row);
if (empty($exp[0]) === false) {
if (is_numeric($exp[1]) === false) {
if (is_metaconsole() === true) {
$node = new Node($exp[0]);
$node->connect();
}
$module = explode('&#x20;&raquo;&#x20;', $exp[1]);
$id_agente = db_get_sql(sprintf('SELECT id_agente FROM tagente WHERE nombre = "%s"', $module[1]));
$id_agente_modulo = db_get_sql(sprintf('SELECT id_agente_modulo FROM tagente_modulo WHERE nombre = "%s" AND id_agente = %s', $module[2], $id_agente));
$array = [
$exp[0].'|'.$id_agente_modulo => $exp[0].'|'.$id_agente_modulo,
];
$mModules = array_merge($mModules, $array);
if (is_metaconsole() === true) {
$node->disconnect();
}
}
}
}
}
}
$result = [];
// Clean double safe input.
foreach ($mModules as $name) {
$result[] = io_safe_output($name);
}
$output .= html_print_input(
[
'label' => __('Modules'),
'label_class' => 'font-title-font',
'type' => 'select',
'fields' => $all_modules,
'name' => 'filtered-module-modules-'.$uniqId,
'selected' => $result,
'return' => true,
'multiple' => true,
'style' => 'max-width:98%;',
'input_class' => 'flex-colum-center-important',
'truncate_size' => 300,
]
);
$output .= '</div>';
if ($data['return'] === false) {
echo $output;
}
return $output;
}
/**
* Prints an array of fields in a popup menu of a form based on a SQL query.
* The first and second columns of the query will be used.
@ -1896,6 +2191,7 @@ function html_print_select_from_sql(
$class='',
$required=false,
$placeholder='',
$title=false,
) {
global $config;
@ -1943,7 +2239,8 @@ function html_print_select_from_sql(
'',
false,
null,
$placeholder
$placeholder,
$title
);
}
@ -2290,7 +2587,7 @@ function html_print_extended_select_for_time(
echo '</div>';
echo '<div id="'.$uniq_name.'_manual" class="w100p inline_flex">';
echo '<div id="'.$uniq_name.'_manual" class="inline_flex">';
html_print_input_text($uniq_name.'_text', $selected, '', $size, 255, false, $readonly, false, '', $class, $script_input);
html_print_input_hidden($name, $selected, false, $uniq_name);
@ -2317,7 +2614,7 @@ function html_print_extended_select_for_time(
false,
false
);
echo ' <a href="javascript:">'.html_print_image(
echo '&nbsp&nbsp<a href="javascript:">'.html_print_image(
'images/logs@svg.svg',
true,
[
@ -2358,6 +2655,174 @@ function html_print_extended_select_for_time(
}
/**
* Render agent/module interval-specific time selection set of inputs
* from html_print_extended_select_for_time with additional structure and
* behavior associated (establishes a limit of at least 60 seconds to be
* selected and displays notice when this limit is actively selected).
*
* @param string $name Select form name.
* @param mixed $selected Current selected value. Can be a single value or an array of selected values (in combination with multiple).
* @param string $script Javascript onChange (select) code.
* @param string $nothing Label when nothing is selected.
* @param mixed $nothing_value Value when nothing is selected.
* @param integer $size Size of the input.
* @param boolean $return Whether to return an output string or echo now (optional, echo by default).
* @param boolean $select_style Wherter to assign to combo a unique name (to have more than one on same page, like dashboard).
* @param boolean $unique_name Uunique name value.
* @param string $class Class value.
* @param boolean $readonly Readonly value.
* @param string $custom_fields Custom fields value.
* @param string $style_icon Style icon value.
* @param boolean $no_change No change value.
* @param boolean $allow_zero Allow the use of the value zero.
* @return string HTML code if return parameter is true.
*/
function html_print_select_agentmodule_interval(
$name,
$selected='',
$script='',
$nothing='',
$nothing_value='0',
$size=false,
$return=false,
$select_style=false,
$unique_name=true,
$class='',
$readonly=false,
$custom_fields=false,
$style_icon='',
$no_change=false,
$allow_zero=0,
$units=null,
$script_input=''
) {
global $config;
include_once $config['homedir'].'/include/functions_clippy.php';
$output = '<div style="display: inline-flex;">';
$output .= html_print_extended_select_for_time(
$name,
$selected,
$script,
$nothing,
$nothing_value,
$size,
$return,
$select_style,
$unique_name,
$class,
$readonly
);
$unique_id = '';
if ($unique_name === true) {
$pattern = '/'.$name.'([a-fA-F0-9]+)_default/';
if (preg_match($pattern, $output, $matches)) {
// Obtain the unique ID of the generated input.
$unique_id = $matches[1];
$name .= $unique_id;
}
}
$output .= html_print_div(
[
'id' => 'agent_module_interval_clippy'.$unique_id,
'class' => 'invisible flex align-self-center',
'content' => clippy_context_help('agent_module_interval'),
],
true
);
$output .= "<script type='text/javascript'>
$(document).ready (function () {
// Trigger first check.
$('#text-".$name."_text').trigger('change');
$('#text-".$name."_text').on('keyup change', function() {
var unit_multiplier = parseInt($('#".$name."_units').val());
var numeric_value = parseInt($(this).val());
if (unit_multiplier <= 0 || numeric_value <= 0) {
return;
}
var curr_secs = numeric_value * unit_multiplier;
if (curr_secs === 60) {
$('#agent_module_interval_clippy".$unique_id."').show();
} else {
$('#agent_module_interval_clippy".$unique_id."').hide();
}
});
$('.".$name."_toggler').on('click', function() {
if ($('#".$name."_default').css('display') != 'none') {
$('#agent_module_interval_clippy".$unique_id."').hide();
} else {
$('#text-".$name."_text').trigger('change');
}
});
$('#".$name."_units').on('input change', function() {
var numeric_value = parseInt($('#text-".$name."_text').val());
var unit_multiplier = parseInt($(this).val());
if (unit_multiplier <= 0 || numeric_value <= 0) {
return;
}
var curr_secs = numeric_value * unit_multiplier;
if (curr_secs== 60) {
$('#agent_module_interval_clippy".$unique_id."').show();
} else {
$('#agent_module_interval_clippy".$unique_id."').hide();
}
});
$('#text-".$name."_text').on('change', function() {
checkMinValue($(this));
});
$('#".$name."_units').on('input change', function() {
checkMinValue($('#text-".$name."_text'));
});
});
function checkMinValue(that) {
if (isNaN(that.val()) === true) {
return;
}
var unit_multiplier = parseInt($('#".$name."_units').val());
var numeric_value = parseInt(that.val());
if (unit_multiplier <= 0 || numeric_value <= 0) {
return;
}
var curr_secs = numeric_value * unit_multiplier;
if (curr_secs < 60) {
// Override value to minimum limited seconds (60).
that
.val((60 / unit_multiplier))
.trigger('change');
}
}
</script>";
$output .= '</div>';
return $output;
}
/**
* Print selects to configure the cron of a module.
*
@ -4132,6 +4597,10 @@ function html_print_table(&$table, $return=false)
} else {
$headStyle = '';
}
if (isset($table->headStyle[$heading])) {
$headStyle = ' style = "'.$table->headStyle[$heading].'" ';
}
$output .= '<th class="'.$table->headclass[$key].'" '.$headColspan.$headStyle.' scope="col">'.$heading.'</th>';
}
@ -5723,6 +6192,7 @@ function html_print_input($data, $wrapper='div', $input_only=false)
((isset($data['class']) === true) ? $data['class'] : ''),
((isset($data['required']) === true) ? $data['required'] : false),
((isset($data['placeholder']) === true) ? $data['placeholder'] : null),
((isset($data['title']) === true) ? $data['title'] : false),
);
break;
@ -6108,6 +6578,10 @@ function html_print_input($data, $wrapper='div', $input_only=false)
$output .= html_print_select_multiple_modules_filtered($data);
break;
case 'select_multiple_modules_filtered_formated':
$output .= html_print_select_multiple_modules_filtered_formated($data);
break;
case 'datalist':
$output .= html_print_datalist(
$data['name'],

View File

@ -99,9 +99,9 @@ function inventory_get_data(
// Prepare pagination.
$url = sprintf(
'?sec=estado&sec2=operation/inventory/inventory&agent_id=%s&agent=%s&id_group=%s&export=%s&module_inventory_general_view=%s&search_string=%s&utimestamp=%s&period=%s&order_by_agent=%s&submit_filter=%d',
$pagination_url_parameters['inventory_id_agent'],
$pagination_url_parameters['inventory_agent'],
$pagination_url_parameters['inventory_id_group'],
(isset($pagination_url_parameters['inventory_id_agent']) ?? ''),
(isset($pagination_url_parameters['inventory_agent']) ?? ''),
(isset($pagination_url_parameters['inventory_id_group']) ?? ''),
$export_csv,
$inventory_module_name,
$inventory_search_string,
@ -710,7 +710,9 @@ function inventory_get_datatable(
$inventory_search_string='',
$export_csv=false,
$return_mode=false,
$order_by_agent=false
$order_by_agent=false,
$date_init=false,
$status_agent=-1,
) {
global $config;
@ -737,6 +739,10 @@ function inventory_get_datatable(
array_push($where, 'tagent_module_inventory.id_agente IN ('.implode(',', $agents_ids).')');
}
if ($status_agent > -1) {
array_push($where, 'tagente.disabled ='.$status_agent);
}
if ($inventory_module_name[0] !== '0'
&& $inventory_module_name !== ''
&& $inventory_module_name !== 'all'
@ -750,21 +756,23 @@ function inventory_get_datatable(
}
if ($utimestamp > 0) {
array_push($where, 'tagente_datos_inventory.utimestamp <= '.$utimestamp.' ');
array_push($where, 'tagent_module_inventory.utimestamp <= '.$utimestamp.' ');
}
if ($date_init !== false) {
array_push($where, 'tagent_module_inventory.utimestamp >= '.$date_init.' ');
}
$sql = sprintf(
'SELECT tmodule_inventory.*,
tagent_module_inventory.*,
tagente.alias as name_agent,
tagente_datos_inventory.utimestamp as last_update,
tagente_datos_inventory.timestamp as last_update_timestamp,
tagente_datos_inventory.data as data_inventory
tagent_module_inventory.utimestamp as last_update,
tagent_module_inventory.timestamp as last_update_timestamp,
tagent_module_inventory.data as data_inventory
FROM tmodule_inventory
INNER JOIN tagent_module_inventory
LEFT JOIN tagent_module_inventory
ON tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory
INNER JOIN tagente_datos_inventory
ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory
LEFT JOIN tagente
ON tagente.id_agente = tagent_module_inventory.id_agente
@ -884,12 +892,14 @@ function get_data_basic_info_sql($params, $count=false)
}
$where = 'WHERE 1=1 ';
if ($params['id_agent'] > 0 && $count === true) {
$where .= sprintf(' AND id_agente = %d', $params['id_agent']);
} else if ($params['id_agent'] > 0 && $count === false) {
if ($params['id_agent'] > 0) {
$where .= sprintf(' AND %s.id_agente = %d', $table, $params['id_agent']);
}
if ($params['status'] >= 0) {
$where .= sprintf(' AND %s.disabled = %d', $table, $params['status']);
}
if ($params['id_group'] > 0) {
$where .= sprintf(' AND id_grupo = %d', $params['id_group']);
} else {
@ -910,7 +920,7 @@ function get_data_basic_info_sql($params, $count=false)
);
}
if ($params['utimestamp'] > 0 && $count === false) {
if ($params['utimestamp'] > 0) {
$where .= sprintf(
' AND utimestamp BETWEEN %d AND %d',
($params['utimestamp'] - $params['period']),
@ -977,21 +987,20 @@ function get_data_basic_info_sql($params, $count=false)
$limit_condition = '';
$order_condition = '';
$fields = 'count(*)';
$innerjoin = '';
$groupby = '';
if ($count !== true) {
if (is_metaconsole() === true) {
$fields = 'tmetaconsole_agent.*, tagent_secondary_group.*, tagent_custom_data.*';
} else {
$fields = 'tagente.*, tagent_secondary_group.*, tagent_custom_data.*';
}
if (is_metaconsole() === true) {
$fields = 'tmetaconsole_agent.*, tagent_secondary_group.*, tagent_custom_data.*';
} else {
$fields = 'tagente.*, tagent_secondary_group.*, tagent_custom_data.*';
}
$innerjoin = 'LEFT JOIN tagente_estado ON '.$table.'.id_agente = tagente_estado.id_agente ';
$innerjoin .= 'LEFT JOIN tagent_secondary_group ON '.$table.'.id_agente = tagent_secondary_group.id_agent ';
$innerjoin .= 'LEFT JOIN tagent_custom_data ON '.$table.'.id_agente = tagent_custom_data.id_agent ';
$groupby = 'GROUP BY '.$table.'.id_agente';
$innerjoin = 'LEFT JOIN tagente_estado ON '.$table.'.id_agente = tagente_estado.id_agente ';
$innerjoin .= 'LEFT JOIN tagent_secondary_group ON '.$table.'.id_agente = tagent_secondary_group.id_agent ';
$innerjoin .= 'LEFT JOIN tagent_custom_data ON '.$table.'.id_agente = tagent_custom_data.id_agent ';
if ($count !== true) {
$limit_condition = sprintf(
'LIMIT %d, %d',
$params['start'],
@ -999,8 +1008,12 @@ function get_data_basic_info_sql($params, $count=false)
);
$order_condition = sprintf('ORDER BY %s', $params['order']);
} else {
$fields = 'COUNT(*)';
}
$groupby = 'GROUP BY '.$table.'.id_agente';
$sql = sprintf(
'SELECT %s
FROM %s
@ -1018,13 +1031,19 @@ function get_data_basic_info_sql($params, $count=false)
$limit_condition
);
$sql_count = sprintf(
'SELECT COUNT(*)
FROM (%s) AS sub_sql',
$sql
);
if ($count !== true) {
$result = db_get_all_rows_sql($sql);
if ($result === false) {
$result = [];
}
} else {
$result = db_get_sql($sql);
$result = db_get_sql($sql_count);
if ($result === false) {
$result = 0;
}

View File

@ -147,6 +147,7 @@ function notifications_get_subtypes(?string $source=null)
'NOTIF.METACONSOLE.DB_CONNECTION',
'NOTIF.DOWNTIME',
'NOTIF.UPDATEMANAGER.REGISTRATION',
'NOTIF.OPENSEARCH.CONSOLELOG',
'NOTIF.API.ACCESS',
'NOTIF.MISC.EVENTSTORMPROTECTION',
'NOTIF.MISC.DEVELOPBYPASS',

View File

@ -3352,8 +3352,8 @@ function reporting_inventory($report, $content, $type)
$date,
'',
false,
'csv',
false,
'csv',
'',
[],
$inventory_regular_expression
@ -3367,12 +3367,13 @@ function reporting_inventory($report, $content, $type)
$date,
'',
false,
'hash',
false,
'hash',
'',
[],
$inventory_regular_expression
);
break;
}

View File

@ -2644,7 +2644,7 @@ function reporting_html_inventory($table, $item, $pdf=0)
} else {
// Grouped type inventory.
$type_modules = array_reduce(
$item['data'],
($item['data'] ?? []),
function ($carry, $it) {
$carry[$it['name']][] = $it;
return $carry;
@ -5169,7 +5169,7 @@ function reporting_html_value(
$table->colspan['data']['cell'] = 3;
$table->cellstyle['data']['cell'] = 'text-align: left;';
$table->data['data']['cell'] = '<p class="bolder" style="font-size: '.$font_size.'; color: #000000;">';
$table->data['data']['cell'] = '<p class="bolder" style="font-size: '.$font_size.';">';
if ($check_empty && empty($item['data']['value'])) {
$table->data['data']['cell'] .= __('Unknown');
@ -6380,6 +6380,7 @@ function reporting_html_sql($table, $item, $pdf=0)
// Print the header.
foreach ($row as $key => $value) {
$table2->head[] = $key;
$table2->headStyle[$key] = 'text-align: center;';
}
}

View File

@ -4283,6 +4283,12 @@ function ui_print_datatable(array $parameters)
$js = '<script>';
$js .= 'var dt = '.$json_data.';';
$js .= 'var config = '.$json_config.';';
if (isset($parameters['data_element']) === true) {
$js .= 'var preload_elements = true;';
} else {
$js .= 'var preload_elements = false;';
}
$js .= '</script>';
$js .= '<script>';
@ -5445,6 +5451,7 @@ function ui_print_page_header(
$buffer .= '</li>';
}
$tabs_class = '';
foreach ($options as $key => $option) {
if (empty($option)) {
continue;
@ -8376,4 +8383,32 @@ function ui_print_status_secmon_div($status, $title=false)
$title = ($title === false) ? __('critical') : $title;
return ui_print_div('group_view_crit '.$class, $title);
}
}
}
function ui_print_empty_view($title, $message, $img_name, $buttons=false)
{
$img = html_print_image(
'images/empty_views/'.$img_name,
true,
[
'title' => __('Empty view image'),
'class' => '',
]
);
$output = '
<div class="empty-view">
<div class="empty-view-img-text">
'.$img.'
<div class="empty-view-text">
<span>'.$title.'</span>
<span>'.$message.'</span>
</div>
</div>
'.($buttons !== false ? '<div class="empty-view-buttons">'.$buttons.'</div>' : '').'
</div>
';
return $output;
}

View File

@ -0,0 +1,49 @@
<?php
// Pandora FMS - https://pandorafms.com
// ==================================================
// Copyright (c) 2005-2023 Pandora FMS
// Please see https://pandorafms.com/community/ for full contribution list
// This program 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; version 2
// This program 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 General Public License for more details.
/**
* @package Include
* @subpackage Clippy
*/
function clippy_agent_module_interval()
{
$return_tours = [];
$return_tours['first_step_by_default'] = true;
$return_tours['help_context'] = true;
$return_tours['tours'] = [];
$return_tours['tours']['agent_module_interval'] = [];
$return_tours['tours']['agent_module_interval']['steps'] = [];
$return_tours['tours']['agent_module_interval']['steps'][] = [
'init_step_context' => true,
'intro' => __('Pandora FMS has been designed to monitor thousands of elements. It is possible to use very low sampling intervals by using specific items for that purpose (Satellite Server), but doing so in a centralized way may negatively affect performance. That is why it is limited to 60-second intervals. Even so, 60-second interval sampling should only take place in very specific modules. The impact on your infrastructure may be severe, leading to event storms and monitoring delays. Should you use 60-second intervals, it is recommended to disable unknown detection monitoring to avoid undesired events and use the FlipFlop protection setup'),
'title' => __('Notice'),
'img' => html_print_image(
'images/info-warning.svg',
true,
[
'class' => 'main_menu_icon invert_filter',
'style' => 'margin-left: 5px;',
]
),
];
$return_tours['tours']['agent_module_interval']['conf'] = [];
$return_tours['tours']['agent_module_interval']['conf']['autostart'] = false;
$return_tours['tours']['agent_module_interval']['conf']['show_bullets'] = 0;
$return_tours['tours']['agent_module_interval']['conf']['show_step_numbers'] = 0;
return $return_tours;
}

View File

@ -32,7 +32,7 @@ function clippy_data_configuration_module()
$return_tours['tours']['data_configuration_module']['steps'] = [];
$return_tours['tours']['data_configuration_module']['steps'][] = [
'init_step_context' => true,
'intro' => __('Please note that information provided here affects how the agent collect information and generate the data XML. Any data/configuration reported by the agent, different from data or description is discarded, and the configuration shown in the console prevails over any configuration coming from the agent, this applies for example for crit/warn thresholds, interval, module group, min/max value, tags, etc.').__('Information imported FIRST time from the XML will fill the information you can see in the console, but after the first import, system will ignore any update coming from the XML/Agent.'),
'intro' => __('Please note that information provided here affects how the agent collects information and generate the data XML. Any data/configuration reported by the agent, different from data or description is discarded, and the configuration shown in the console prevails over any configuration coming from the agent, this applies for example to crit/warn thresholds, interval, module group, min/max value, tags, etc.').'&nbsp'.__('Information imported FIRST time from the XML will fill the information you can see in the console, but after the first import, system will ignore any update coming from the XML/Agent.'),
'title' => __('Data Configuration Module.'),
'img' => html_print_image(
'images/info-warning.svg',

View File

@ -1,4 +1,4 @@
/* global $ */
/* global $, preload_elements */
var dt = dt;
var config = config;
@ -420,8 +420,10 @@ $(document).ready(function() {
$(function() {
$(document).on("preInit.dt", function(ev, settings) {
$(`#${dt.id}_wrapper div.dataTables_length`).hide();
$(`#${dt.id}_wrapper div.dataTables_filter`).hide();
$(`#${dt.id}_wrapper div.dt-buttons`).hide();
if (preload_elements === false) {
$(`#${dt.id}_wrapper div.dataTables_length`).hide();
$(`#${dt.id}_wrapper div.dataTables_filter`).hide();
$(`#${dt.id}_wrapper div.dt-buttons`).hide();
}
});
});

View File

@ -199,7 +199,7 @@ function redirectAgentStatus(e, element) {
switch (e.chart.legend.legendItems[element[0].index].text) {
case "No monitors":
window.location.assign(
`index.php?sec=view&sec2=operation/agentes/estado_agente`
`index.php?sec=view&sec2=operation/agentes/estado_agente&status=5`
);
break;

View File

@ -221,6 +221,31 @@ $(document).ready(function() {
}
}
if ($("#license_dialog_message").length) {
let height = 570;
$("#license_dialog_message").dialog({
dialogClass: "no-close",
closeOnEscape: false,
resizable: false,
draggable: true,
modal: true,
height: "auto",
width: 800,
overlay: {
opacity: 0.5,
background: "black"
},
open: function() {
$("#ok_buttom").show();
}
});
$("#ok_buttom").click(function() {
$("#license_dialog_message").dialog("close");
});
}
if ($("#msg_change_password").length) {
$("#msg_change_password").dialog({
resizable: false,

View File

@ -218,6 +218,7 @@ function fmModuleChange(uniqId, isMeta) {
"#filtered-module-show-common-modules-" + uniqId
).attr("type");
var select_mode = isMeta === 1 ? 0 : 1;
var showCommonModules = +(
$("#filtered-module-show-common-modules-" + uniqId).prop("checked") == false
);
@ -229,7 +230,8 @@ function fmModuleChange(uniqId, isMeta) {
get_modules_group_json: 1,
id_module_group: idModuleGroup,
id_agents: idAgents,
selection: showCommonModules
selection: showCommonModules,
select_mode: select_mode
},
function(data) {
$("#filtered-module-modules-" + uniqId).html("");
@ -247,9 +249,13 @@ function fmModuleChange(uniqId, isMeta) {
? value["id_node"] + "|" + value["id_agente_modulo"]
: value["id_agente_modulo"]
)
.attr("title", value)
.html(value["nombre"]);
} else {
option.attr("value", id).html(value);
option
.attr("value", id)
.attr("title", value)
.html(value);
}
$("#filtered-module-modules-" + uniqId).append(option);

View File

@ -1,6 +1,7 @@
/* globals $, GridStack, load_modal, TreeController, forced_title_callback, createVisualConsole, UndefineTinyMCE*/
// eslint-disable-next-line no-unused-vars
function show_option_dialog(settings) {
$("#modal-config-widget").html("");
load_modal({
target: $("#modal-update-dashboard"),
form: "form-update-dashboard",
@ -280,6 +281,8 @@ function initialiceLayout(data) {
});
$("#configure-widget-" + id).click(function() {
widgetId =
widgetId === 0 ? $("#hidden-widget_id_" + id).val() : widgetId;
getSizeModalConfiguration(id, widgetId);
});
@ -329,7 +332,20 @@ function initialiceLayout(data) {
},
dataType: "json",
success: function(data) {
addCell(data.cellId, 0, 0, 4, 4, true, 0, 2000, 0, 2000, 0, true);
addCell(
data.cellId,
0,
0,
4,
4,
true,
0,
2000,
0,
2000,
original_widgetId,
true
);
},
error: function(xhr, textStatus, errorMessage) {
console.log("ERROR" + errorMessage + textStatus + xhr);
@ -801,6 +817,8 @@ function initialiceLayout(data) {
});
$("#configure-widget-" + cellId).click(function() {
widgetId =
widgetId === 0 ? $("#hidden-widget_id_" + cellId).val() : widgetId;
getSizeModalConfiguration(cellId, widgetId);
});

View File

@ -1250,6 +1250,7 @@ function test_sound_button(test_sound, urlSound) {
}
function action_events_sound(mode, settings) {
test_sound_button(false, "");
if (mode === true) {
// Enable tabs.
$("#tabs-sound-modal").tabs("option", "disabled", [0]);
@ -1337,6 +1338,7 @@ function listen_event_sound(settings) {
);
}
let sound_listener;
function check_event_sound(settings) {
// Update elements time.
$(".elements-discovered-alerts ul li").each(function() {
@ -1380,6 +1382,7 @@ function check_event_sound(settings) {
},
function(data) {
if (data != false) {
clearTimeout(sound_listener);
// Hide empty.
$("#tabs-sound-modal .empty-discovered-alerts").addClass(
"invisible_important"
@ -1399,7 +1402,6 @@ function check_event_sound(settings) {
// Remove audio.
remove_audio();
// Apend audio.
add_audio(settings.urlSound);
// Add elements.
@ -1432,7 +1434,7 @@ function check_event_sound(settings) {
});
// -100 delay sound.
setTimeout(
sound_listener = setTimeout(
remove_audio,
parseInt($("#tabs-sound-modal #time_sound").val()) * 1000 - 100
);

View File

@ -179,7 +179,7 @@ class AgentModuleWidget extends Widget
// This forces at least a first configuration.
$this->configurationRequired = false;
if (isset($this->values['mModules']) === false) {
if (isset($this->values['mModules']) === false || (isset($this->values['mModules']) === true && empty($this->values['mModules'][0]) === true)) {
$this->configurationRequired = true;
}
@ -297,10 +297,10 @@ class AgentModuleWidget extends Widget
}
$inputs[] = [
'class' => 'flex flex-row',
'id' => 'select_multiple_modules_filtered',
'class' => 'flex-colum-center-important',
'id' => 'select_multiple_modules_filtered_formated',
'arguments' => [
'type' => 'select_multiple_modules_filtered',
'type' => 'select_multiple_modules_filtered_formated',
'uniqId' => $this->cellId,
'mGroup' => (isset($this->values['mGroup']) === true) ? $this->values['mGroup'] : $mgroup,
'mRecursion' => (isset($this->values['mRecursion']) === true) ? $this->values['mRecursion'] : '',
@ -514,6 +514,10 @@ class AgentModuleWidget extends Widget
$array_names = [];
foreach ($allModules as $module_name) {
if (is_numeric($module_name)) {
$module_name = io_safe_output(modules_get_agentmodule_name($module_name));
}
$file_name = ui_print_truncate_text(
\io_safe_output($module_name),
'module_small',
@ -744,13 +748,17 @@ class AgentModuleWidget extends Widget
$fullname = $item[1];
if ($this->values['mShowCommonModules'] !== 'on') {
$item = explode('&#x20;&raquo;&#x20;', $fullname);
$name = $item[1];
$name = $item[2];
$carry['modules_selected'][$serverId][$name] = null;
$carry['modules'][$name] = null;
} else {
$carry['modules'][$fullname] = null;
}
} else {
if (is_numeric($item) === true) {
$item = modules_get_agentmodule_name($item);
}
$carry['modules'][$item] = null;
}
@ -817,14 +825,15 @@ class AgentModuleWidget extends Widget
}
$key_name_module = $module->name();
if ($this->values['mTypeShow'] === '1') {
$mod = $module->toArray();
$mod['datos'] = $module->lastValue();
$module_last_value = modules_get_agentmodule_data_for_humans($mod);
$visualData[$agent_id]['modules'][$key_name_module] = $module_last_value;
} else {
$visualData[$agent_id]['modules'][$key_name_module] = $module->getStatus()->estado();
if (array_key_exists($key_name_module, $allModules) === true) {
if ($this->values['mTypeShow'] === '1') {
$mod = $module->toArray();
$mod['datos'] = $module->lastValue();
$module_last_value = modules_get_agentmodule_data_for_humans($mod);
$visualData[$agent_id]['modules'][$key_name_module] = $module_last_value;
} else {
$visualData[$agent_id]['modules'][$key_name_module] = $module->getStatus()->estado();
}
}
}

View File

@ -615,7 +615,7 @@ class EventsListWidget extends Widget
if (in_array('0', $this->values['groupId'])) {
$filter['id_group_filter'] = 0;
} else {
$filter['id_group_filter'] = (!empty($this->values['groupId'][0])) ? $this->values['groupId'] : 0;
$filter['id_group_filter'] = (!empty($customFilter['id_group'])) ? $customFilter['id_group'] : 0;
}
$filter['tag_with'] = base64_encode(

View File

@ -238,7 +238,7 @@ class TopNWidget extends Widget
// Module.
$inputs[] = [
'label' => __('Module').ui_print_help_tip(
__('Case insensitive regular expression or string for module name. For example: .*usage.* will match: cpu_usage, vram usage.'),
__('Case insensitive regular expression or string for module name. For example: %s will match: cpu_usage, vram usage.', '.*usage.*'),
true
),
'arguments' => [

View File

@ -8,15 +8,20 @@ use PandoraFMS\Modules\Shared\Services\ValidateAclSystem;
final class CreateTokenAction
{
public function __construct(
private CreateTokenService $createTokenService,
private ValidateAclSystem $acl,
) {
}
public function __invoke(Token $token): Token
{
$this->acl->validateAclToken($token);
return $this->createTokenService->__invoke($token);
}
}

View File

@ -8,15 +8,20 @@ use PandoraFMS\Modules\Shared\Services\ValidateAclSystem;
final class DeleteTokenAction
{
public function __construct(
private DeleteTokenService $deleteTokenService,
private ValidateAclSystem $acl,
) {
}
public function __invoke(Token $token): void
{
$this->acl->validateAclToken($token);
$this->deleteTokenService->__invoke($token);
}
}

View File

@ -7,13 +7,18 @@ use PandoraFMS\Modules\Authentication\Services\GetTokenService;
final class GetTokenAction
{
public function __construct(
private GetTokenService $getTokenService
) {
}
public function __invoke(int $idToken): Token
{
return $this->getTokenService->__invoke($idToken);
}
}

View File

@ -10,12 +10,15 @@ use PandoraFMS\Modules\Shared\Entities\PaginationData;
final class ListTokenAction
{
public function __construct(
private ListTokenService $listTokenService,
private CountTokenService $countTokenService
) {
}
public function __invoke(TokenFilter $tokenFilter): array
{
return (new PaginationData(
@ -25,4 +28,6 @@ final class ListTokenAction
$this->listTokenService->__invoke($tokenFilter)
))->toArray();
}
}

View File

@ -8,15 +8,20 @@ use PandoraFMS\Modules\Shared\Services\ValidateAclSystem;
final class UpdateTokenAction
{
public function __construct(
private UpdateTokenService $updateTokenService,
private ValidateAclSystem $acl,
) {
}
public function __invoke(Token $token, Token $oldToken): Token
{
$this->acl->validateAclToken($token);
return $this->updateTokenService->__invoke($token, $oldToken);
}
}

View File

@ -11,24 +11,27 @@ use Psr\Http\Message\ServerRequestInterface as Request;
final class CreateTokenController extends Controller
{
public function __construct(
private CreateTokenAction $createTokenAction
) {
}
/**
* @OA\Post(
* security={{ "bearerAuth": {}}},
* tags={"Authentication"},
* path="/token",
* summary="Creates a new tokens",
* @OA\RequestBody(ref="#/components/requestBodies/requestBodyToken"),
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\RequestBody(ref="#/components/requestBodies/requestBodyToken"),
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*/
public function __invoke(Request $request, Response $response): Response
@ -40,4 +43,6 @@ final class CreateTokenController extends Controller
return $this->getResponse($response, $result);
}
}

View File

@ -11,25 +11,28 @@ use Psr\Http\Message\ServerRequestInterface as Request;
final class DeleteTokenController extends Controller
{
public function __construct(
private DeleteTokenAction $deleteTokenAction,
private GetTokenAction $getTokenAction
) {
}
/**
* @OA\Delete(
* security={{ "bearerAuth": {}}},
* tags={"Authentication"},
* path="/token/{id}",
* summary="Deletes an token object.",
* @OA\Parameter(ref="#/components/parameters/parameterIdToken"),
* @OA\Response(response=200, ref="#/components/responses/successfullyDeleted"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\Parameter(ref="#/components/parameters/parameterIdToken"),
* @OA\Response(response=200, ref="#/components/responses/successfullyDeleted"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*/
public function __invoke(Request $request, Response $response): Response
@ -40,4 +43,6 @@ final class DeleteTokenController extends Controller
$result = $this->deleteTokenAction->__invoke($token);
return $this->getResponse($response, $result);
}
}

View File

@ -10,24 +10,27 @@ use Psr\Http\Message\ServerRequestInterface as Request;
final class GetTokenController extends Controller
{
public function __construct(
private GetTokenAction $getTokenAction
) {
}
/**
* @OA\Get(
* security={{ "bearerAuth": {}}},
* path="/token/{id}",
* tags={"Authentication"},
* summary="show tokens",
* @OA\Parameter(ref="#/components/parameters/parameterIdToken"),
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\Parameter(ref="#/components/parameters/parameterIdToken"),
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*/
public function __invoke(Request $request, Response $response): Response
@ -37,4 +40,6 @@ final class GetTokenController extends Controller
$result = $this->getTokenAction->__invoke($idToken);
return $this->getResponse($response, $result);
}
}

View File

@ -10,11 +10,14 @@ use Psr\Http\Message\ServerRequestInterface as Request;
final class ListTokenController extends Controller
{
public function __construct(
private ListTokenAction $listTokenAction
) {
}
/**
* @OA\Post(
* security={{ "bearerAuth": {}}},
@ -30,19 +33,19 @@ final class ListTokenController extends Controller
* response="200",
* description="List Incidence object",
* content={
* @OA\MediaType(
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(
* @OA\Property(
* @OA\Schema(
* @OA\Property(
* property="paginationData",
* type="object",
* ref="#/components/schemas/paginationData",
* description="Page object",
* ),
* @OA\Property(
* @OA\Property(
* property="data",
* type="array",
* @OA\Items(
* @OA\Items(
* ref="#/components/schemas/Token",
* description="Array of Token objects"
* )
@ -51,11 +54,11 @@ final class ListTokenController extends Controller
* )
* }
* ),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*/
public function __invoke(Request $request, Response $response): Response
@ -66,4 +69,6 @@ final class ListTokenController extends Controller
$result = $this->listTokenAction->__invoke($tokenFilter);
return $this->getResponse($response, $result);
}
}

View File

@ -9,31 +9,34 @@ use Psr\Http\Message\ServerRequestInterface as Request;
final class PingController extends Controller
{
public function __construct(
) {
public function __construct()
{
}
/**
* @OA\Get(
* security={{ "bearerAuth": {}}},
* path="/ping",
* tags={"Authentication"},
* summary="ping",
* @OA\Response(response=200, ref="#/components/responses/ResponsePing"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\Response(response=200, ref="#/components/responses/ResponsePing"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*
* @OA\Response(
* @OA\Response(
* response="ResponsePing",
* description="Ping",
* content={
* @OA\MediaType(
* @OA\MediaType(
* mediaType="application/json",
* @OA\Property(
* @OA\Property(
* property="valid",
* type="bool",
* nullable=false,
@ -48,4 +51,6 @@ final class PingController extends Controller
{
return $this->getResponse($response, ['valid' => true]);
}
}

View File

@ -18,22 +18,25 @@ use Psr\Http\Message\ServerRequestInterface as Request;
* summary="Updates an token",
* @OA\Parameter(ref="#/components/parameters/parameterIdToken"),
* @OA\RequestBody(ref="#/components/requestBodies/requestBodyToken"),
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* @OA\Response(response=200, ref="#/components/responses/ResponseToken"),
* @OA\Response(response=400, ref="#/components/responses/BadRequest"),
* @OA\Response(response=401, ref="#/components/responses/Unauthorized"),
* @OA\Response(response=403, ref="#/components/responses/Forbidden"),
* @OA\Response(response=404, ref="#/components/responses/NotFound"),
* @OA\Response(response=500, ref="#/components/responses/InternalServerError")
* )
*/
final class UpdateTokenController extends Controller
{
public function __construct(
private UpdateTokenAction $updateTokenAction,
private GetTokenAction $getTokenAction
) {
}
public function __invoke(Request $request, Response $response): Response
{
$idToken = $this->getParam($request, 'id');
@ -46,4 +49,6 @@ final class UpdateTokenController extends Controller
$result = $this->updateTokenAction->__invoke($token, $oldToken);
return $this->getResponse($response, $result);
}
}

View File

@ -95,20 +95,29 @@ use PandoraFMS\Modules\Shared\Validators\Validator;
*/
final class Token extends Entity
{
private ?int $idToken = null;
private ?string $label = null;
private ?string $uuid = null;
private ?string $challenge = null;
private ?string $idUser = null;
private ?string $validity = null;
private ?string $lastUsage = null;
private ?string $token = null;
public function __construct()
{
}
public function fieldsReadOnly(): array
{
return [
@ -120,6 +129,7 @@ final class Token extends Entity
];
}
public function jsonSerialize(): mixed
{
return [
@ -133,10 +143,11 @@ final class Token extends Entity
];
}
public function getValidations(): array
{
return [
'idToken' => [
'idToken' => [
Validator::INTEGER,
Validator::GREATERTHAN,
],
@ -149,11 +160,13 @@ final class Token extends Entity
];
}
public function validateFields(array $filters): array
{
return (new Validator())->validate($filters);
}
/**
* Get the value of idToken.
*
@ -164,11 +177,11 @@ final class Token extends Entity
return $this->idToken;
}
/**
* Set the value of idToken.
*
* @param ?int $idToken
*
* @param integer $idToken
*/
public function setIdToken(?int $idToken): self
{
@ -188,11 +201,11 @@ final class Token extends Entity
return $this->label;
}
/**
* Set the value of label.
*
* @param ?string $label
*
* @param string $label
*/
public function setLabel(?string $label): self
{
@ -201,6 +214,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of uuid.
*
@ -211,11 +225,11 @@ final class Token extends Entity
return $this->uuid;
}
/**
* Set the value of uuid.
*
* @param ?string $uuid
*
* @param string $uuid
*/
public function setUuid(?string $uuid): self
{
@ -224,6 +238,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of challenge.
*
@ -234,11 +249,11 @@ final class Token extends Entity
return $this->challenge;
}
/**
* Set the value of challenge.
*
* @param ?string $challenge
*
* @param string $challenge
*/
public function setChallenge(?string $challenge): self
{
@ -247,6 +262,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of idUser.
*
@ -257,11 +273,11 @@ final class Token extends Entity
return $this->idUser;
}
/**
* Set the value of idUser.
*
* @param ?string $idUser
*
* @param string $idUser
*/
public function setIdUser(?string $idUser): self
{
@ -270,6 +286,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of validity.
*
@ -280,11 +297,11 @@ final class Token extends Entity
return $this->validity;
}
/**
* Set the value of validity.
*
* @param ?string $validity
*
* @param string $validity
*/
public function setValidity(?string $validity): self
{
@ -293,6 +310,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of lastUsage.
*
@ -303,11 +321,11 @@ final class Token extends Entity
return $this->lastUsage;
}
/**
* Set the value of lastUsage.
*
* @param ?string $lastUsage
*
* @param string $lastUsage
*/
public function setLastUsage(?string $lastUsage): self
{
@ -316,6 +334,7 @@ final class Token extends Entity
return $this;
}
/**
* Get the value of token.
*
@ -326,11 +345,11 @@ final class Token extends Entity
return $this->token;
}
/**
* Set the value of token.
*
* @param ?string $token
*
* @param string $token
*/
public function setToken(?string $token): self
{
@ -338,4 +357,6 @@ final class Token extends Entity
return $this;
}
}

View File

@ -18,6 +18,7 @@ final class TokenDataMapper extends DataMapperAbstract
public const VALIDITY = 'validity';
public const LAST_USAGE = 'last_usage';
public function __construct(
private Repository $repository,
private Builder $builder,
@ -28,27 +29,35 @@ final class TokenDataMapper extends DataMapperAbstract
);
}
public function getClassName(): string
{
return Token::class;
}
public function fromDatabase(array $data): Token
{
return $this->builder->build(new Token(), [
'idToken' => $data[self::ID_TOKEN],
'label' => $this->repository->safeOutput($data[self::LABEL]),
'uuid' => $data[self::UUID],
'challenge' => $data[self::CHALLENGE],
'idUser' => $data[self::ID_USER],
'validity' => $data[self::VALIDITY],
'lastUsage' => $data[self::LAST_USAGE],
]);
return $this->builder->build(
new Token(),
[
'idToken' => $data[self::ID_TOKEN],
'label' => $this->repository->safeOutput($data[self::LABEL]),
'uuid' => $data[self::UUID],
'challenge' => $data[self::CHALLENGE],
'idUser' => $data[self::ID_USER],
'validity' => $data[self::VALIDITY],
'lastUsage' => $data[self::LAST_USAGE],
]
);
}
public function toDatabase(MappeableInterface $data): array
{
/** @var Token $data */
/*
@var Token $data
*/
return [
self::ID_TOKEN => $data->getIdToken(),
self::LABEL => $this->repository->safeInput($data->getLabel()),
@ -59,4 +68,6 @@ final class TokenDataMapper extends DataMapperAbstract
self::LAST_USAGE => $data->getLastUsage(),
];
}
}

View File

@ -39,8 +39,10 @@ use PandoraFMS\Modules\Shared\Validators\Validator;
*/
final class TokenFilter extends FilterAbstract
{
private ?string $freeSearch = null;
public function __construct()
{
$this->setDefaultFieldOrder(TokenDataMapper::LABEL);
@ -48,6 +50,7 @@ final class TokenFilter extends FilterAbstract
$this->setEntityFilter(new Token());
}
public function fieldsTranslate(): array
{
return [
@ -58,11 +61,13 @@ final class TokenFilter extends FilterAbstract
];
}
public function fieldsReadOnly(): array
{
return [];
}
public function jsonSerialize(): mixed
{
return [
@ -70,6 +75,7 @@ final class TokenFilter extends FilterAbstract
];
}
public function getValidations(): array
{
$validations = [];
@ -80,24 +86,30 @@ final class TokenFilter extends FilterAbstract
return $validations;
}
public function validateFields(array $filters): array
{
return (new Validator())->validate($filters);
}
public function getFreeSearch(): ?string
{
return $this->freeSearch;
}
public function setFreeSearch(?string $freeSearch): self
{
$this->freeSearch = $freeSearch;
return $this;
}
public function getFieldsFreeSearch(): ?array
{
return [TokenDataMapper::TABLE_NAME.'.'.TokenDataMapper::LABEL];
}
}

View File

@ -7,20 +7,30 @@ use PandoraFMS\Modules\Authentication\Entities\TokenFilter;
interface TokenRepository
{
/**
* @return Token[],
*/
public function list(TokenFilter $tokenFilter): array;
public function count(TokenFilter $tokenFilter): int;
public function getOne(TokenFilter $tokenFilter): Token;
public function create(Token $token): Token;
public function update(Token $token): Token;
public function delete(int $id): void;
public function getExistToken(string $label): Token;
}

View File

@ -7,13 +7,18 @@ use PandoraFMS\Modules\Authentication\Repositories\TokenRepository;
final class CountTokenService
{
public function __construct(
private TokenRepository $tokenRepository,
) {
}
public function __invoke(TokenFilter $tokenFilter): int
{
return $this->tokenRepository->count($tokenFilter);
}
}

View File

@ -9,6 +9,8 @@ use PandoraFMS\Modules\Shared\Services\Audit;
final class CreateTokenService
{
public function __construct(
private Audit $audit,
private TokenRepository $tokenRepository,
@ -19,6 +21,7 @@ final class CreateTokenService
) {
}
public function __invoke(Token $token): Token
{
$this->tokenValidation->__invoke($token);
@ -40,4 +43,6 @@ final class CreateTokenService
return $token;
}
}

View File

@ -9,12 +9,15 @@ use PandoraFMS\Modules\Shared\Services\Audit;
final class DeleteTokenService
{
public function __construct(
private Audit $audit,
private TokenRepository $tokenRepository,
) {
}
public function __invoke(Token $token): void
{
$idToken = $token->getIdToken();
@ -27,4 +30,6 @@ final class DeleteTokenService
json_encode($token->toArray())
);
}
}

View File

@ -9,15 +9,20 @@ use PandoraFMS\Modules\Shared\Exceptions\NotFoundException;
final class ExistLabelTokenService
{
public function __construct(
private TokenRepository $tokenRepository,
) {
}
public function __invoke(string $label): bool
{
$tokenFilter = new TokenFilter();
/** @var Token $entityFilter */
/*
@var Token $entityFilter
*/
$entityFilter = $tokenFilter->getEntityFilter();
$entityFilter->setLabel($label);
@ -28,4 +33,6 @@ final class ExistLabelTokenService
return false;
}
}
}

View File

@ -4,14 +4,19 @@ namespace PandoraFMS\Modules\Authentication\Services;
final class GenerateUserTokenService
{
public function __construct(
) {
public function __construct()
{
}
public function __invoke(): string
{
$base = preg_replace(
'/[^a-zA-Z0-9]/', '', base64_encode(random_bytes(100)),
'/[^a-zA-Z0-9]/',
'',
base64_encode(random_bytes(100)),
);
$token = substr($base, 0, 8);
@ -19,4 +24,6 @@ final class GenerateUserTokenService
return $token;
}
}

View File

@ -6,12 +6,17 @@ use Ramsey\Uuid\Uuid;
final class GenerateUserUUIDService
{
public function __construct(
) {
public function __construct()
{
}
public function __invoke(): string
{
return Uuid::uuid4()->toString();
}
}

View File

@ -8,18 +8,25 @@ use PandoraFMS\Modules\Authentication\Repositories\TokenRepository;
final class GetTokenService
{
public function __construct(
private TokenRepository $tokenRepository,
) {
}
public function __invoke(int $idToken): Token
{
$tokenFilter = new TokenFilter();
/** @var Token $entityFilter */
/*
@var Token $entityFilter
*/
$entityFilter = $tokenFilter->getEntityFilter();
$entityFilter->setIdToken($idToken);
return $this->tokenRepository->getOne($tokenFilter);
}
}

View File

@ -8,18 +8,25 @@ use PandoraFMS\Modules\Authentication\Repositories\TokenRepository;
final class GetUserTokenService
{
public function __construct(
private TokenRepository $tokenRepository,
) {
}
public function __invoke(string $uuid): Token
{
$tokenFilter = new TokenFilter();
/** @var Token $entityFilter */
/*
@var Token $entityFilter
*/
$entityFilter = $tokenFilter->getEntityFilter();
$entityFilter->setUuid($uuid);
return $this->tokenRepository->getOne($tokenFilter);
}
}

View File

@ -7,13 +7,18 @@ use PandoraFMS\Modules\Authentication\Repositories\TokenRepository;
final class ListTokenService
{
public function __construct(
private TokenRepository $tokenRepository,
) {
}
public function __invoke(TokenFilter $tokenFilter): array
{
return $this->tokenRepository->list($tokenFilter);
}
}

Some files were not shown because too many files have changed in this diff Show More