1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** 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.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Container class for favorite value management.
* Uses caching.
*/
class CFavorite {
/**
* Cache for favorite values.
*
* $cache[idx][]['value']
* $cache[idx][]['source']
*/
private static $cache = null;
/**
* Returns favorite values from db. Uses caching for performance.
*
* @param string $idx identifier of favorite value group
*
* @return array list of favorite values corresponding to $idx
*/
public static function get($idx) {
// return values if cached
if (isset(self::$cache[$idx])) {
return self::$cache[$idx];
}
$result = [];
$db_profiles = DBselect(
'SELECT p.value_id,p.source'.
' FROM profiles p'.
' WHERE p.userid='.CWebUser::$data['userid'].
' AND p.idx='.zbx_dbstr($idx).
' ORDER BY p.profileid'
);
while ($profile = DBfetch($db_profiles)) {
$result[] = ['value' => $profile['value_id'], 'source' => $profile['source']];
}
// store db values in cache
self::$cache[$idx] = $result;
return $result;
}
/**
* Adds favorite value to DB.
*
* @param string $idx identifier of favorite value group
* @param int $favid value id
* @param string $favobj source object
*
* @return bool did SQL INSERT succeeded
*/
public static function add($idx, $favid, $favobj = null) {
if (self::exists($idx, $favid, $favobj)) {
return true;
}
// add to cache only if cache is created
if (isset(self::$cache[$idx])) {
self::$cache[$idx][] = [
'value' => $favid,
'source' => $favobj
];
}
$values = [
'profileid' => get_dbid('profiles', 'profileid'),
'userid' => CWebUser::$data['userid'],
'idx' => zbx_dbstr($idx),
'value_id' => zbx_dbstr($favid),
'type' => PROFILE_TYPE_ID
];
if (!is_null($favobj)) {
$values['source'] = zbx_dbstr($favobj);
}
return DBexecute(
'INSERT INTO profiles ('.implode(', ', array_keys($values)).')'.
' VALUES ('.implode(', ', $values).')'
);
}
/**
* Removes favorite from DB. Clears cache by $idx.
*
* @param string $idx identifier of favorite value group
* @param int $favid value id
* @param string $favobj source object
*
* @return boolean did SQL DELETE succeeded
*/
public static function remove($idx, $favid = 0, $favobj = null) {
// empty cache, we know that all $idx values will be removed in DELETE
if ($favid == 0 && $favobj === null) {
self::$cache[$idx] = [];
}
// remove from cache, cache will be rebuilt upon get()
else {
self::$cache[$idx] = null;
}
return DBexecute(
'DELETE FROM profiles'.
' WHERE userid='.CWebUser::$data['userid'].
' AND idx='.zbx_dbstr($idx).
($favid > 0 ? ' AND value_id='.zbx_dbstr($favid) : '').
(is_null($favobj) ? '' : ' AND source='.zbx_dbstr($favobj))
);
}
/**
* Checks whether favorite value exists.
*
* @param string $idx identifier of favorite value group
* @param int $favid value id
* @param string $favobj source object
*
* @return boolean
*/
public static function exists($idx, $favid, $favobj = null) {
$favorites = self::get($idx);
foreach ($favorites as $favorite) {
if (idcmp($favid, $favorite['value']) && $favorite['source'] == $favobj) {
return true;
}
}
return false;
}
}
|