| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 | 
							- <?php
 
- namespace Elgg\Database;
 
- use Elgg\Database;
 
- use Elgg\Database\EntityTable;
 
- /**
 
-  * Private settings for entities
 
-  *
 
-  * Private settings provide metadata like storage of settings for plugins
 
-  * and users.
 
-  *
 
-  * WARNING: API IN FLUX. DO NOT USE DIRECTLY.
 
-  *
 
-  * @access private
 
-  * @since 2.0.0
 
-  */
 
- class PrivateSettingsTable {
 
- 	/** @var Database */
 
- 	private $db;
 
- 	/** @var EntityTable */
 
- 	private $entities;
 
- 	/** @var Name of the database table */
 
- 	private $table;
 
- 	/**
 
- 	 * Constructor
 
- 	 *
 
- 	 * @param Database    $db       The database
 
- 	 * @param EntityTable $entities Entities table
 
- 	 */
 
- 	public function __construct(Database $db, EntityTable $entities) {
 
- 		$this->db = $db;
 
- 		$this->entities = $entities;
 
- 		$this->table = $this->db->getTablePrefix() . 'private_settings';
 
- 	}
 
- 	/**
 
- 	 * Returns entities based upon private settings
 
- 	 *
 
- 	 * Also accepts all options available to elgg_get_entities(). Supports
 
- 	 * the singular option shortcut.
 
- 	 *
 
- 	 * @param array $options Array in format:
 
- 	 *
 
- 	 *  private_setting_names => null|ARR private setting names
 
- 	 *
 
- 	 *  private_setting_values => null|ARR metadata values
 
- 	 *
 
- 	 *  private_setting_name_value_pairs => null|ARR (
 
- 	 *                                       name => 'name',
 
- 	 *                                       value => 'value',
 
- 	 *                                       'operand' => '=',
 
- 	 *                                      )
 
- 	 *                               Currently if multiple values are sent via
 
- 	 *                               an array (value => array('value1', 'value2')
 
- 	 *                               the pair's operand will be forced to "IN".
 
- 	 *
 
- 	 *  private_setting_name_value_pairs_operator => null|STR The operator to
 
- 	 *                                 use for combining
 
- 	 *                                 (name = value) OPERATOR (name = value);
 
- 	 *                                 default AND
 
- 	 *
 
- 	 *  private_setting_name_prefix => STR A prefix to apply to all private
 
- 	 *                                 settings. Used to namespace plugin user
 
- 	 *                                 settings or by plugins to namespace their
 
- 	 *                                 own settings.
 
- 	 *
 
- 	 * @return mixed int If count, int. If not count, array. false on errors.
 
- 	 */
 
- 	public function getEntities(array $options = array()) {
 
- 		$defaults = array(
 
- 			'private_setting_names'                     => ELGG_ENTITIES_ANY_VALUE,
 
- 			'private_setting_values'                    => ELGG_ENTITIES_ANY_VALUE,
 
- 			'private_setting_name_value_pairs'          => ELGG_ENTITIES_ANY_VALUE,
 
- 			'private_setting_name_value_pairs_operator' => 'AND',
 
- 			'private_setting_name_prefix'               => '',
 
- 		);
 
- 		$options = array_merge($defaults, $options);
 
- 		$singulars = array(
 
- 			'private_setting_name',
 
- 			'private_setting_value',
 
- 			'private_setting_name_value_pair',
 
- 		);
 
- 		$options = _elgg_normalize_plural_options_array($options, $singulars);
 
- 		$clauses = $this->getWhereSql('e',
 
- 			$options['private_setting_names'],
 
- 			$options['private_setting_values'],
 
- 			$options['private_setting_name_value_pairs'],
 
- 			$options['private_setting_name_value_pairs_operator'],
 
- 			$options['private_setting_name_prefix']);
 
- 		if ($clauses) {
 
- 			// merge wheres to pass to get_entities()
 
- 			if (isset($options['wheres']) && !is_array($options['wheres'])) {
 
- 				$options['wheres'] = array($options['wheres']);
 
- 			} elseif (!isset($options['wheres'])) {
 
- 				$options['wheres'] = array();
 
- 			}
 
- 			$options['wheres'] = array_merge($options['wheres'], $clauses['wheres']);
 
- 			// merge joins to pass to get_entities()
 
- 			if (isset($options['joins']) && !is_array($options['joins'])) {
 
- 				$options['joins'] = array($options['joins']);
 
- 			} elseif (!isset($options['joins'])) {
 
- 				$options['joins'] = array();
 
- 			}
 
- 			$options['joins'] = array_merge($options['joins'], $clauses['joins']);
 
- 		}
 
- 		return $this->entities->getEntities($options);
 
- 	}
 
- 	/**
 
- 	 * Returns private setting name and value SQL where/join clauses for entities
 
- 	 *
 
- 	 * @param string     $table         Entities table name
 
- 	 * @param array|null $names         Array of names
 
- 	 * @param array|null $values        Array of values
 
- 	 * @param array|null $pairs         Array of names / values / operands
 
- 	 * @param string     $pair_operator Operator for joining pairs where clauses
 
- 	 * @param string     $name_prefix   A string to prefix all names with
 
- 	 * @return array
 
- 	 */
 
- 	private function getWhereSql($table, $names = null, $values = null,
 
- 		$pairs = null, $pair_operator = 'AND', $name_prefix = '') {
 
- 		// @todo short circuit test
 
- 		$return = array (
 
- 			'joins' => array (),
 
- 			'wheres' => array(),
 
- 		);
 
- 		$return['joins'][] = "JOIN {$this->table} ps on
 
- 			{$table}.guid = ps.entity_guid";
 
- 		$wheres = array();
 
- 		// get names wheres
 
- 		$names_where = '';
 
- 		if ($names !== null) {
 
- 			if (!is_array($names)) {
 
- 				$names = array($names);
 
- 			}
 
- 			$sanitised_names = array();
 
- 			foreach ($names as $name) {
 
- 				$name = $name_prefix . $name;
 
- 				$sanitised_names[] = '\'' . $this->db->sanitizeString($name) . '\'';
 
- 			}
 
- 			$names_str = implode(',', $sanitised_names);
 
- 			if ($names_str) {
 
- 				$names_where = "(ps.name IN ($names_str))";
 
- 			}
 
- 		}
 
- 		// get values wheres
 
- 		$values_where = '';
 
- 		if ($values !== null) {
 
- 			if (!is_array($values)) {
 
- 				$values = array($values);
 
- 			}
 
- 			$sanitised_values = array();
 
- 			foreach ($values as $value) {
 
- 				// normalize to 0
 
- 				if (!$value) {
 
- 					$value = 0;
 
- 				}
 
- 				$sanitised_values[] = '\'' . $this->db->sanitizeString($value) . '\'';
 
- 			}
 
- 			$values_str = implode(',', $sanitised_values);
 
- 			if ($values_str) {
 
- 				$values_where = "(ps.value IN ($values_str))";
 
- 			}
 
- 		}
 
- 		if ($names_where && $values_where) {
 
- 			$wheres[] = "($names_where AND $values_where)";
 
- 		} elseif ($names_where) {
 
- 			$wheres[] = "($names_where)";
 
- 		} elseif ($values_where) {
 
- 			$wheres[] = "($values_where)";
 
- 		}
 
- 		// add pairs which must be in arrays.
 
- 		if (is_array($pairs)) {
 
- 			// join counter for incremental joins in pairs
 
- 			$i = 1;
 
- 			// check if this is an array of pairs or just a single pair.
 
- 			if (isset($pairs['name']) || isset($pairs['value'])) {
 
- 				$pairs = array($pairs);
 
- 			}
 
- 			$pair_wheres = array();
 
- 			foreach ($pairs as $index => $pair) {
 
- 				// @todo move this elsewhere?
 
- 				// support shortcut 'n' => 'v' method.
 
- 				if (!is_array($pair)) {
 
- 					$pair = array(
 
- 						'name' => $index,
 
- 						'value' => $pair
 
- 					);
 
- 				}
 
- 				// must have at least a name and value
 
- 				if (!isset($pair['name']) || !isset($pair['value'])) {
 
- 					// @todo should probably return false.
 
- 					continue;
 
- 				}
 
- 				if (isset($pair['operand'])) {
 
- 					$operand = $this->db->sanitizeString($pair['operand']);
 
- 				} else {
 
- 					$operand = ' = ';
 
- 				}
 
- 				// for comparing
 
- 				$trimmed_operand = trim(strtolower($operand));
 
- 				// if the value is an int, don't quote it because str '15' < str '5'
 
- 				// if the operand is IN don't quote it because quoting should be done already.
 
- 				if (is_numeric($pair['value'])) {
 
- 					$value = $this->db->sanitizeString($pair['value']);
 
- 				} else if (is_array($pair['value'])) {
 
- 					$values_array = array();
 
- 					foreach ($pair['value'] as $pair_value) {
 
- 						if (is_numeric($pair_value)) {
 
- 							$values_array[] = $this->db->sanitizeString($pair_value);
 
- 						} else {
 
- 							$values_array[] = "'" . $this->db->sanitizeString($pair_value) . "'";
 
- 						}
 
- 					}
 
- 					if ($values_array) {
 
- 						$value = '(' . implode(', ', $values_array) . ')';
 
- 					}
 
- 					// @todo allow support for non IN operands with array of values.
 
- 					// will have to do more silly joins.
 
- 					$operand = 'IN';
 
- 				} else if ($trimmed_operand == 'in') {
 
- 					$value = "({$pair['value']})";
 
- 				} else {
 
- 					$value = "'" . $this->db->sanitizeString($pair['value']) . "'";
 
- 				}
 
- 				$name = $this->db->sanitizeString($name_prefix . $pair['name']);
 
- 				// @todo The multiple joins are only needed when the operator is AND
 
- 				$return['joins'][] = "JOIN {$this->table} ps{$i}
 
- 					on {$table}.guid = ps{$i}.entity_guid";
 
- 				$pair_wheres[] = "(ps{$i}.name = '$name' AND ps{$i}.value
 
- 					$operand $value)";
 
- 				$i++;
 
- 			}
 
- 			$where = implode(" $pair_operator ", $pair_wheres);
 
- 			if ($where) {
 
- 				$wheres[] = "($where)";
 
- 			}
 
- 		}
 
- 		$where = implode(' AND ', $wheres);
 
- 		if ($where) {
 
- 			$return['wheres'][] = "($where)";
 
- 		}
 
- 		return $return;
 
- 	}
 
- 	/**
 
- 	 * Gets a private setting for an entity
 
- 	 *
 
- 	 * Plugin authors can set private data on entities. By default private
 
- 	 * data will not be searched or exported.
 
- 	 *
 
- 	 * @param int    $entity_guid The entity GUID
 
- 	 * @param string $name        The name of the setting
 
- 	 *
 
- 	 * @return mixed The setting value, or null if does not exist
 
- 	 */
 
- 	public function get($entity_guid, $name) {
 
- 		$entity_guid = (int) $entity_guid;
 
- 		$name = $this->db->sanitizeString($name);
 
- 		$entity = $this->entities->get($entity_guid);
 
- 		if (!$entity instanceof \ElggEntity) {
 
- 			return null;
 
- 		}
 
- 		$query = "SELECT value FROM {$this->table}
 
- 			where name = '{$name}' and entity_guid = {$entity_guid}";
 
- 		$setting = $this->db->getDataRow($query);
 
- 		if ($setting) {
 
- 			return $setting->value;
 
- 		}
 
- 		return null;
 
- 	}
 
- 	/**
 
- 	 * Return an array of all private settings.
 
- 	 *
 
- 	 * @param int $entity_guid The entity GUID
 
- 	 *
 
- 	 * @return string[] empty array if no settings
 
- 	 */
 
- 	function getAll($entity_guid) {
 
- 		$entity_guid = (int) $entity_guid;
 
- 		$entity = $this->entities->get($entity_guid);
 
- 		if (!$entity instanceof \ElggEntity) {
 
- 			return false;
 
- 		}
 
- 		$query = "SELECT * FROM {$this->table} WHERE entity_guid = {$entity_guid}";
 
- 		$result = $this->db->getData($query);
 
- 		if ($result) {
 
- 			$return = array();
 
- 			foreach ($result as $r) {
 
- 				$return[$r->name] = $r->value;
 
- 			}
 
- 			return $return;
 
- 		}
 
- 		return array();
 
- 	}
 
- 	/**
 
- 	 * Sets a private setting for an entity.
 
- 	 *
 
- 	 * @param int    $entity_guid The entity GUID
 
- 	 * @param string $name        The name of the setting
 
- 	 * @param string $value       The value of the setting
 
- 	 * @return bool
 
- 	 */
 
- 	public function set($entity_guid, $name, $value) {
 
- 		$entity_guid = (int) $entity_guid;
 
- 		$name = $this->db->sanitizeString($name);
 
- 		$value = $this->db->sanitizeString($value);
 
- 		$result = $this->db->insertData("INSERT into {$this->table}
 
- 			(entity_guid, name, value) VALUES
 
- 			($entity_guid, '$name', '$value')
 
- 			ON DUPLICATE KEY UPDATE value='$value'");
 
- 		return $result !== false;
 
- 	}
 
- 	/**
 
- 	 * Deletes a private setting for an entity.
 
- 	 *
 
- 	 * @param int    $entity_guid The Entity GUID
 
- 	 * @param string $name        The name of the setting
 
- 	 * @return bool
 
- 	 */
 
- 	function remove($entity_guid, $name) {
 
- 		$entity_guid = (int) $entity_guid;
 
- 		$entity = $this->entities->get($entity_guid);
 
- 		if (!$entity instanceof \ElggEntity) {
 
- 			return false;
 
- 		}
 
- 		$name = $this->db->sanitizeString($name);
 
- 		return $this->db->deleteData("DELETE FROM {$this->table}
 
- 			WHERE name = '{$name}'
 
- 			AND entity_guid = {$entity_guid}");
 
- 	}
 
- 	/**
 
- 	 * Deletes all private settings for an entity
 
- 	 *
 
- 	 * @param int $entity_guid The Entity GUID
 
- 	 * @return bool
 
- 	 */
 
- 	function removeAllForEntity($entity_guid) {
 
- 		$entity_guid = (int) $entity_guid;
 
- 		$entity = $this->entities->get($entity_guid);
 
- 		if (!$entity instanceof \ElggEntity) {
 
- 			return false;
 
- 		}
 
- 		return $this->db->deleteData("DELETE FROM {$this->table}
 
- 			WHERE entity_guid = {$entity_guid}");
 
- 	}
 
- }
 
 
  |