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.

207 lines
4.8 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 mixed $data - строка для экранирования
  64. * @return mixed
  65. */
  66. function escape($data)
  67. {
  68. if(is_array($data)){
  69. foreach($data as $id => $val){
  70. $data[$id] = mysqli_real_escape_string($this->handler, $val);
  71. }
  72. return $data;
  73. }
  74. return mysqli_real_escape_string($this->handler, $data);
  75. }
  76. //////////////////////////
  77. function update($id, $data)
  78. {
  79. $sql = '';
  80. foreach ($data as $key => $val) {
  81. $sql .= $key."='".$this->escape($val)."', ";
  82. }
  83. return $this->query('UPDATE '.$this->table.' SET '.rtrim($sql, ', ').' WHERE '.$this->primary_key.'='.(int) $id);
  84. }
  85. function insert($data, $postfix = '')
  86. {
  87. $sql = '';
  88. foreach ($data as $key => $val) {
  89. $sql .= $key.'="'.$this->escape($val).'", ';
  90. }
  91. return $this->query('INSERT '.$this->table.' SET '.rtrim($sql, ', ').' '.$postfix);
  92. }
  93. function delete($id)
  94. {
  95. return $this->query('DELETE FROM '.$this->table.' WHERE '.$this->primary_key.'='.(int) $id);
  96. }
  97. function get($id)
  98. {
  99. return $this->query('SELECT * FROM '.$this->table.' WHERE '.$this->primary_key.'='.(int) $id);
  100. }
  101. function getList($limit = false, $sort = 'ASC')
  102. {
  103. return $this->query('SELECT * FROM '.$this->table.' ORDER BY '.$this->primary_key.' '.($sort == 'ASC' ? 'ASC' : 'DESC').($limit === false ? ' LIMIT '.(int) $limit : ''));
  104. }
  105. }
  106. class ModelResult
  107. {
  108. function __call($name, $args)
  109. {
  110. throw new MJException('Call undeclared method "'.$name.'" in "'.get_class($this).'" class', -1);
  111. }
  112. }
  113. class ModelSelectResult extends ModelResult
  114. {
  115. public $result;
  116. function __construct($res)
  117. {
  118. $this->result = $res;
  119. }
  120. function fetch($class_name = false)
  121. {
  122. return $class_name ? mysqli_fetch_object($this->result, $class_name) : mysqli_fetch_object($this->result);
  123. }
  124. function fetchField($field, $default = false)
  125. {
  126. $row = $this->fetch();
  127. return isset($row->$field) ? $row->$field : $default;
  128. }
  129. function fetchAll($key = false)
  130. {
  131. $array = array();
  132. if ($key) {
  133. while ($row = mysqli_fetch_object($this->result)) {
  134. $array[$row->$key] = $row;
  135. }
  136. } else {
  137. while ($row = mysqli_fetch_object($this->result)) {
  138. $array[] = $row;
  139. }
  140. }
  141. return $array;
  142. }
  143. function count()
  144. {
  145. return mysqli_num_rows($this->result);
  146. }
  147. function free()
  148. {
  149. mysqli_free_result($this->result);
  150. }
  151. function __destruct() {
  152. $this->free();
  153. }
  154. }
  155. class ModelChangeResult extends ModelResult
  156. {
  157. public $affected;
  158. function __construct($resource)
  159. {
  160. $this->affected = mysqli_affected_rows($resource);
  161. }
  162. function count()
  163. {
  164. return $this->affected;
  165. }
  166. }
  167. class ModelInsertResult extends ModelChangeResult
  168. {
  169. public $id;
  170. function __construct($resource)
  171. {
  172. parent::__construct($resource);
  173. $this->id = mysqli_insert_id($resource);
  174. }
  175. function getId()
  176. {
  177. return $this->id;
  178. }
  179. }
  180. ?>