You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

200 lines
4.6 KiB

  1. <?php
  2. /**
  3. * Класс модели данных
  4. *
  5. * @copyright
  6. * @link
  7. * @package Majestic
  8. * @subpackage DB
  9. * @since
  10. * @version SVN: $Id$
  11. * @filesource $URL$
  12. */
  13. abstract class Model
  14. {
  15. private $handler;
  16. protected $table = false;
  17. protected $primary_key = 'id';
  18. function __construct()
  19. {
  20. $this->handler = DBConnector::getConnect(Env::getParam('db_settings'));
  21. }
  22. /**
  23. * Выполняет запрос и возвращает сырой результат
  24. *
  25. * @param string $sql
  26. * @return resource
  27. */
  28. function exec($sql)
  29. {
  30. $time = microtime(true);
  31. $res = mysqli_query($this->handler, $sql);
  32. if (mysqli_errno($this->handler)) {
  33. throw new MJException("<b>Query Error:</b>\n".$sql."\n<b>Error:</b>\n".mysqli_error($this->handler), 1);
  34. }
  35. if (DEBUG_ENABLE) {
  36. DBConnector::$queries[] = $sql.'; ('.round((microtime(true)-$time)*1000, 1).'ms)';
  37. }
  38. return $res;
  39. }
  40. /**
  41. * Выполняет запрос и возвращает объект результата
  42. *
  43. * @param string $sql
  44. * @return object
  45. */
  46. function query($sql)
  47. {
  48. $res = $this->exec($sql);
  49. switch (strtolower(substr($sql, 0, 6))) {
  50. case 'select':
  51. case '(selec':
  52. return new ModelSelectResult($res);
  53. case 'insert':
  54. case 'replac':
  55. return new ModelInsertResult($this->handler);
  56. default:
  57. return new ModelChangeResult($this->handler);
  58. }
  59. }
  60. /**
  61. * Экранирует строку
  62. *
  63. * @param string $data - строка для экранирования
  64. * @return string
  65. */
  66. function escape($data)
  67. {
  68. return mysqli_real_escape_string($this->handler, $data);
  69. }
  70. //////////////////////////
  71. function update($id, $data)
  72. {
  73. $sql = '';
  74. foreach ($data as $key => $val) {
  75. $sql .= $key."='".$this->escape($val)."', ";
  76. }
  77. return $this->query('UPDATE '.$this->table.' SET '.rtrim($sql, ', ').' WHERE '.$this->primary_key.'='.(int) $id);
  78. }
  79. function insert($data, $postfix = '')
  80. {
  81. $sql = '';
  82. foreach ($data as $key => $val) {
  83. $sql .= $key.'="'.$this->escape($val).'", ';
  84. }
  85. return $this->query('INSERT '.$this->table.' SET '.rtrim($sql, ', ').' '.$postfix);
  86. }
  87. function delete($id)
  88. {
  89. return $this->query('DELETE FROM '.$this->table.' WHERE '.$this->primary_key.'='.(int) $id);
  90. }
  91. function get($id)
  92. {
  93. return $this->query('SELECT * FROM '.$this->table.' WHERE '.$this->primary_key.'='.(int) $id);
  94. }
  95. function getList($limit = false, $sort = 'ASC')
  96. {
  97. return $this->query('SELECT * FROM '.$this->table.' ORDER BY '.$this->primary_key.' '.($sort == 'ASC' ? 'ASC' : 'DESC').($limit === false ? ' LIMIT '.(int) $limit : ''));
  98. }
  99. }
  100. class ModelResult
  101. {
  102. function __call($name, $args)
  103. {
  104. throw new MJException('Call undeclared method "'.$name.'" in "'.get_class($this).'" class', -1);
  105. }
  106. }
  107. class ModelSelectResult extends ModelResult
  108. {
  109. public $result;
  110. function __construct($res)
  111. {
  112. $this->result = $res;
  113. }
  114. function fetch($class_name = false)
  115. {
  116. return $class_name ? mysqli_fetch_object($this->result, $class_name) : mysqli_fetch_object($this->result);
  117. }
  118. function fetchField($field, $default = false)
  119. {
  120. $row = $this->fetch();
  121. return isset($row->$field) ? $row->$field : $default;
  122. }
  123. function fetchAll($key = false)
  124. {
  125. $array = array();
  126. if ($key) {
  127. while ($row = mysqli_fetch_object($this->result)) {
  128. $array[$row->$key] = $row;
  129. }
  130. } else {
  131. while ($row = mysqli_fetch_object($this->result)) {
  132. $array[] = $row;
  133. }
  134. }
  135. return $array;
  136. }
  137. function count()
  138. {
  139. return mysqli_num_rows($this->result);
  140. }
  141. function free()
  142. {
  143. mysqli_free_result($this->result);
  144. }
  145. function __destruct() {
  146. $this->free();
  147. }
  148. }
  149. class ModelChangeResult extends ModelResult
  150. {
  151. public $affected;
  152. function __construct($resource)
  153. {
  154. $this->affected = mysqli_affected_rows($resource);
  155. }
  156. function count()
  157. {
  158. return $this->affected;
  159. }
  160. }
  161. class ModelInsertResult extends ModelResult
  162. {
  163. public $id;
  164. function __construct($resource)
  165. {
  166. $this->id = mysqli_insert_id($resource);
  167. }
  168. function getId()
  169. {
  170. return $this->id;
  171. }
  172. }
  173. ?>