Blame view

website/service/News.class.php 9.17 KB
whb authored
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
<?php
/**
 *  资讯
 *
 * @name Service_News
 * @version 1.0 (2013-6-5)
 * @package Service/News
 * @since 1.0
 */

class Service_News extends Lib_Service
{
    const ROUTER = 'news.yohood.news';
    private static $_tag = 'tag_yohood_news_';
    private static $_key = 'key_yohood_news_';
    
    /**
     * 增加数据
     * 
     * @param array $data
     * @return boolean
     */
    public function setInfo($data)
    {
        $column = Util_Utils_SqlString::mergeInsertFields($data);
        $value  = Util_Utils_SqlString::mergeInsertString($data);
        $up = Util_Utils_SqlString::mergeSqlUpstring($data);
whb authored
28 29 30 31 32 33 34 35
        if(isset($data['id']))
        {
        	$func = 'status';
        }
        else
        {
            $func = 'lastInsertId';
        }
whb authored
36
        $replaces = array('column' => $column, 'value' => $value , 'up' => $up) ;
whb authored
37
        $status = self::service(self::ROUTER)->cache(false)->insert('setInfo', $data, $replaces)->$func();
whb authored
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
        if($status)
        {
        	self::service(self::ROUTER)->delTags(self::$_tag);
        }
        return $status;
    }
    
    /**
     * 获取总数
     *
     * @param string $tag
     * @param array $exceptTags
     * @return int
     */
    public function getTotal($tag, $exceptTags)
    {
       $where = '1' ;
       $exceptWhere = '1';
       if(is_array($exceptTags) && !empty($exceptTags))
       {
       	    $exceptTags = implode("','", $exceptTags);
       		$exceptWhere = " `tag` NOT IN ('$exceptTags') ";
       }
       if ($tag)
       {      
       	   $tag = strip_tags($tag);
           $tag = addslashes($tag);
           $where = '`tag` like ("'.$tag.'%")' ;
       }
       $where = ' WHERE '.$where .' AND '.$exceptWhere;
       return self::service(self::ROUTER)->tag(self::$_tag)->fetchOne('getTotal', array(),array('where' => $where));
    }
    
    /**
     * 获取总数
     * 
     * @param int $tag
     * @param int $offset
     * @param int $limit
     * @param array $exceptTags
     * @return array
     */
tmq authored
80
    public function getList($tag, $offset, $limit, $exceptTags,$type)
whb authored
81 82 83 84 85 86 87 88
    {
       $where = '1' ;
       $exceptWhere = '1';
       if(is_array($exceptTags) && !empty($exceptTags))
       {
       	   $exceptTags = implode("','", $exceptTags);
       	   $exceptWhere = "`tag` NOT IN ('$exceptTags') ";
       }
whb authored
89
       if (!empty($tag))
whb authored
90 91 92 93 94
       {
       	   $tag = strip_tags($tag);
           $tag = addslashes($tag);
           $where = '`tag` like ("'.$tag.'%")' ;
       }
tmq authored
95 96 97 98 99
        if($type==1) {
            $where = ' WHERE ' . $where . ' or is_video=1 AND ' . $exceptWhere;
        }else{
            $where = ' WHERE ' . $where . ' AND ' . $exceptWhere;
        }
whb authored
100
       return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getList', array('offset' => intval($offset), 'limit' => intval($limit)), array('where' => $where));
whb authored
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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    }
     
	/**
     * 获取总数
     *
     * @param int $id
     * @return array
     */
    public function getOneById( $id )
    {
       return self::service(self::ROUTER)->tag(self::$_tag)->fetchRow('getOneById', array('id' => $id));
    }
    
    /**
     * 删除
     *
     * @param int $id
     * @return boolean
     */
    public function delInfo($id = 0 )
    {
       $status = self::service(self::ROUTER)->cache(false)->delete('delInfo', array('id' => $id))->status();
       if($status)
       {
       	   self::service(self::ROUTER)->delTags(self::$_tag);
       }
       return $status;
    }
    
    /**
     * 更新点击量
     *
     * @param unknown_type $id
     */
    public function updateHits($id)
    {
        return self::service(self::ROUTER)->cache(false)->update('updateHits', array('id' => $id));
    }
    
    /**
     * 删除所有标签 
     *
     * @return boolean
     */
    public function delAllTags()
    {
        $status  = self::service(self::ROUTER)->cache(false)->delete('delAllTags')->status();
        if($status)
        {
        	self::service(self::ROUTER)->delTags(self::$_tag);
        }
        return $status;
    }
    
    /**
     * 添加TAG
     *
     * @param string $tag
     * @param int $num
     * @return boolean
     */
    public function createTag($tag, $num)
    {
        $status = self::service(self::ROUTER)->cache(false)->insert('createTag',array('tag' => $tag, 'num' => $num))->status();
        if($status)
        {
        	self::service(self::ROUTER)->delTags(self::$_tag);
        }
        return $status;
    }
    
    /**
     * 获取所有tag
     * 
     * @return array
     */
    public function getTags()
    {
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchAll('getTags');
    }
    
    /**
     * 获取下一个新闻
     * 
     * @param int $id
     * @return array
     */
    public function getNextNews($id)
    {
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchRow('getNextNews',array('id' => $id));
    }
    
    /**
     * 获取上一个新闻
     *
     * @param int $id
     * @return array
     */    
    public function getPrevNews($id)
    {
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchRow('getPrevNews',array('id' => $id));
    }
    
    /**
     * 获取所有资讯
     * 
     * @param int $offset
     * @param int $limit
     * @return array
     */
    public function getAllNews($offset, $limit)
    {
    	return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getAllNews', array('offset' => intval($offset), 'limit' => intval($limit)));
    }
whb authored
215 216
    
    /**
whb authored
217
     * 时间之前获取视频
whb authored
218 219 220 221 222 223 224
     * 
     * @param string $tag
     * @param string $datetime
     * @param int $offset
     * @param int $limit
     * @return array
     */
whb authored
225
    public function getListBeforeTime($tag, $datetime, $offset, $limit)
whb authored
226
    {
whb authored
227
    	return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getListBeforeTime', 
whb authored
228
    	  array('time' => strtotime($datetime), 'offset' => intval($offset), 'limit' => intval($limit),'tag'=> $tag));
whb authored
229 230 231
    }
    
    /**
whb authored
232
     * 时间之前获取总数
whb authored
233 234 235 236 237
     *
     * @param string $tag
     * @param string $datetime
     * @return int
     */
whb authored
238
    public function getTotalBeforeTime($tag, $datetime)
whb authored
239
    {
whb authored
240
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchOne('getTotalBeforeTime', array('time' => strtotime($datetime),'tag'=> $tag));
whb authored
241
    }
whb authored
242 243 244 245 246 247 248
    
    /**
     * 根据点击率获取列表
     *
     * @param string $tag
     * @param int $offset
     * @param int $limit
whb authored
249
     * @param array $exceptTags
whb authored
250 251
     * @return array
     */
whb authored
252
    public function getListByHits($tag, $offset, $limit, $exceptTags)
whb authored
253
    {
whb authored
254 255 256 257 258 259 260 261
        $exceptWhere = "1";
        if(is_array($exceptTags) && !empty($exceptTags))
        {
            $exceptTags = implode("','", $exceptTags);
            $exceptWhere = " `tag` NOT IN ('$exceptTags') ";
        }
    	return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getListByHits',array('tag'=> $tag, 
    	        'offset'=> intval($offset), 'limit'=> intval($limit)), array('where'=> $exceptWhere));
whb authored
262
    }
whb authored
263 264
    
    /**
whb authored
265
     * 获取排序ID新闻
whb authored
266
     *
whb authored
267
     * @param array $ids
whb authored
268 269 270
     * @param array $exceptTags
     * @return int
     */
whb authored
271
    public function getNewsByIds($ids, $exceptTags)
whb authored
272 273
    {
        $exceptWhere = "1";
whb authored
274 275 276 277 278
        if(is_numeric($ids))
        {
        	$ids = array($ids);
        }
        $ids = implode(',', $ids);
whb authored
279 280 281 282 283
        if(is_array($exceptTags) && !empty($exceptTags))
        {
            $exceptTags = implode("','", $exceptTags);
            $exceptWhere = " `tag` NOT IN ('$exceptTags') ";
        }
whb authored
284
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchRow('getNewsByIds', array(), 
whb authored
285
                array('where'=> $exceptWhere, 'ids'=> $ids));
whb authored
286 287
    }
    
whb authored
288 289 290 291 292 293 294 295 296 297 298
    /**
     * 获取信息
     *
     * @param string $tag
     * @param int $offset
     * @param int $limit
     * @param array $exceptTags
     * @return array
     */
    public static function getLatestNews($tag, $offset, $limit, $exceptTags = array())
    {
whb authored
299 300
        $exceptWhere = '1';
        $where = '1';
whb authored
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
        if(is_array($exceptTags) && !empty($exceptTags))
        {
            $exceptTags = implode("','", $exceptTags);
            $exceptWhere = " `tag` NOT IN ('$exceptTags') ";
        }
        if ($tag)
        {
            $tag = strip_tags($tag);
            $tag = addslashes($tag);
            $where = '`tag` like ("'.$tag.'%")' ;
        }
        $where = ' WHERE '.$where .' AND '.$exceptWhere;
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getLatestNews', array('offset' => $offset, 'limit' => $limit), array('where' => $where));
    }
    
    /**
     * 根据日期点击率获取列表
     *
     * @param string $tag
     * @param int $offset
     * @param int $limit
     * @param array $exceptTags
     * @return array
     */
    public function getListByDateHits($tag, $offset, $limit, $exceptTags)
    {
        $exceptWhere = "1";
        if(is_array($exceptTags) && !empty($exceptTags))
        {
            $exceptTags = implode("','", $exceptTags);
            $exceptWhere = " `tag` NOT IN ('$exceptTags') ";
        }
        return self::service(self::ROUTER)->tag(self::$_tag)->fetchAssoc('getListByDateHits',array('tag'=> $tag,
                'offset'=> intval($offset), 'limit'=> intval($limit)), array('where'=> $exceptWhere));
         
    }
whb authored
337 338
}