12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: table_portal_topic.php 32654 2013-02-28 03:55:27Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class table_portal_topic extends discuz_table
- {
- public function __construct() {
- $this->_table = 'portal_topic';
- $this->_pk = 'topicid';
- parent::__construct();
- }
- public function count_by_search_where($wherearr) {
- $wheresql = empty($wherearr) ? '' : implode(' AND ', $wherearr);
- return DB::result_first('SELECT COUNT(*) FROM '.DB::table($this->_table).($wheresql ? ' WHERE '.$wheresql : ''));
- }
- public function fetch_all_by_search_where($wherearr, $ordersql, $start, $limit) {
- $wheresql = empty($wherearr) ? '' : implode(' AND ', $wherearr);
- return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).($wheresql ? ' WHERE '.$wheresql : '').' '.$ordersql.DB::limit($start, $limit), null, 'topicid');
- }
- public function fetch_by_name($name) {
- return $name ? DB::fetch_first('SELECT * FROM %t WHERE name=%s LIMIT 1', array($this->_table, $name)) : false;
- }
- public function increase($ids, $data) {
- $ids = array_map('intval', (array)$ids);
- $sql = array();
- $allowkey = array('commentnum', 'viewnum');
- foreach($data as $key => $value) {
- if(($value = intval($value)) && in_array($key, $allowkey)) {
- $sql[] = "`$key`=`$key`+'$value'";
- }
- }
- if(!empty($sql)){
- DB::query('UPDATE '.DB::table($this->_table).' SET '.implode(',', $sql).' WHERE topicid IN ('.dimplode($ids).')', 'UNBUFFERED');
- }
- }
- public function fetch_all_by_title($idtype, $subject) {
- if(empty($idtype) || !is_string($idtype) || empty($subject)) {
- return array();
- }
- $parameter = array($this->_table);
- $or = $wheresql = '';
- $subject = explode(',', str_replace(' ', '', $subject));
- for($i = 0; $i < count($subject); $i++) {
- if(preg_match("/\{(\d+)\}/", $subject[$i])) {
- $subject[$i] = preg_replace("/\\\{(\d+)\\\}/", ".{0,\\1}", preg_quote($subject[$i], '/'));
- $wheresql .= " $or title REGEXP %s";
- $parameter[] = $subject[$i];
- } else {
- $wheresql .= " $or title LIKE %s";
- $parameter[] = '%'.$subject[$i].'%';
- }
- $or = 'OR';
- }
- return DB::fetch_all("SELECT $idtype FROM %t WHERE $wheresql", $parameter);
- }
- public function repair_htmlmade($ids) {
- if(($ids = dintval($ids, true))) {
- return DB::update($this->_table, array('htmlmade' => 0), DB::field($this->_pk, $ids));
- }
- return false;
- }
- public function fetch_all_topicid_by_dateline($dateline) {
- $data = array();
- $where = array();
- if($dateline) {
- $where[] = DB::field('dateline', intval($dateline), '>=');
- }
- $where[] = "closed='0'";
- if($where) {
- $data = DB::fetch_all('SELECT topicid FROM '.DB::table($this->_table).' WHERE '. implode(' AND ', $where).' LIMIT 20000', NULL, $this->_pk);
- }
- return $data;
- }
- }
- ?>
|