123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <?php
- /**
- * 缓存操作
- *
- *
- *
- *
- */
- defined('InShopNC') or exit('Access Invalid!');
- class cacheModel extends Model
- {
- public function __construct(){
- parent::__construct();
- }
- public function call($method){
- $method = '_'.strtolower($method);
- if (method_exists($this,$method)){
- return $this->$method();
- }else{
- return false;
- }
- }
- /**
- * 基本设置
- *
- * @return array
- */
- private function _setting(){
- $list =$this->table('setting')->limit(false)->select();
- $array = array();
- foreach ((array)$list as $v) {
- $array[$v['name']] = $v['value'];
- }
- unset($list);
- return $array;
- }
- /**
- * 商品分类SEO
- *
- * @return array
- */
- private function _goods_class_seo(){
- $list = $this->table('goods_class')->field('gc_id,gc_title,gc_keywords,gc_description')->where(array('gc_keywords'=>array('neq','')))->limit(false)->select();
- if (!is_array($list)) return null;
- $array = array();
- foreach ($list as $k=>$v) {
- if ($v['gc_title'] != '' || $v['gc_keywords'] != '' || $v['gc_description'] != ''){
- if ($v['gc_name'] != ''){
- $array[$v['gc_id']]['name'] = $v['gc_name'];
- }
- if ($v['gc_title'] != ''){
- $array[$v['gc_id']]['title'] = $v['gc_title'];
- }
- if ($v['gc_keywords'] != ''){
- $array[$v['gc_id']]['key'] = $v['gc_keywords'];
- }
- if ($v['gc_description'] != ''){
- $array[$v['gc_id']]['desc'] = $v['gc_description'];
- }
- }
- }
- return $array;
- }
- /**
- * 商城主要频道SEO
- *
- * @return array
- */
- private function _seo(){
- $list =$this->table('seo')->limit(false)->select();
- if (!is_array($list)) return null;
- $array = array();
- foreach ($list as $key=>$value){
- $array[$value['type']] = $value;
- }
- return $array;
- }
- /**
- * 快递公司
- *
- * @return array
- */
- private function _express() {
- $fields = 'id,e_name,e_code,e_kdn_code,e_oms_code,e_letter,e_order,e_url,e_zt_state';
- $list = $this->table('express')->field($fields)->order('e_order,e_letter')->where(array('e_state'=>1))->limit(false)->select();
- if (!is_array($list)) return null;
- $array = array();
- foreach ($list as $k=>$v) {
- $array[$v['id']] = $v;
- }
- return $array;
- }
- /**
- * 自定义导航
- *
- * @return array
- */
- private function _nav(){
- $list = $this->table('navigation')->order('nav_sort')->limit(false)->select();
- if (!is_array($list)) return null;
- return $list;
- }
- /**
- * 抢购价格区间
- *
- * @return array
- */
- private function _groupbuy_price(){
- $price = $this->table('groupbuy_price_range')->order('range_start')->key('range_id')->select();
- if (!is_array($price)) $price = array();
- return $price;
- }
- /**
- * 商品TAG
- *
- * @return array
- */
- private function _class_tag(){
- $field = 'gc_tag_id,gc_tag_name,gc_tag_value,gc_id,type_id';
- $list = $this->table('goods_class_tag')->field($field)->limit(false)->select();
- if (!is_array($list)) return null;
- return $list;
- }
- /**
- * 店铺分类
- *
- * @return array
- */
- private function _store_class(){
- $store_class_tmp = $this->table('store_class')->limit(false)->order('sc_sort asc,sc_id asc')->select();
- $store_class = array();
- if (is_array($store_class_tmp) && !empty($store_class_tmp)){
- foreach ($store_class_tmp as $k=>$v){
- $store_class[$v['sc_id']] = $v;
- }
- }
- return $store_class;
- }
- /**
- * 店铺等级
- *
- * @return array
- */
- private function _store_grade(){
- $list =$this->table('store_grade')->limit(false)->select();
- $array = array();
- foreach ((array)$list as $v) {
- $array[$v['sg_id']] = $v;
- }
- unset($list);
- return $array;
- }
- /**
- * 店铺等级
- *
- * @return array
- */
- private function _store_msg_tpl(){
- $list = Model('store_msg_tpl')->getStoreMsgTplList(array());
- $array = array();
- foreach ((array)$list as $v) {
- $array[$v['smt_code']] = $v;
- }
- unset($list);
- return $array;
- }
- /**
- * 店铺等级
- *
- * @return array
- */
- private function _member_msg_tpl(){
- $list = Model('member_msg_tpl')->getMemberMsgTplList(array());
- $array = array();
- foreach ((array)$list as $v) {
- $array[$v['mmt_code']] = $v;
- }
- unset($list);
- return $array;
- }
- /**
- * 咨询类型
- *
- * @return array
- */
- private function _consult_type(){
- $list = Model('consult_type')->getConsultTypeList(array());
- $array = array();
- foreach ((array)$list as $val) {
- $val['ct_introduce'] = html_entity_decode($val['ct_introduce']);
- $array[$val['ct_id']] = $val;
- }
- unset($list);
- return $array;
- }
- /**
- * Circle Member Level
- *
- * @return array
- */
- private function _circle_level(){
- $list = $this->table('circle_mldefault')->limit(false)->select();
- if (!is_array($list)) return null;
- $array = array();
- foreach ($list as $val){
- $array[$val['mld_id']] = $val;
- }
- return $array;
- }
- private function _home_goods()
- {
- $name = BASE_DATA_PATH . '/sales/home_goods.txt';
- if(!$content = file_get_contents($name)) {
- Log::record("cannot read file={$name}",Log::ERR);
- return null;
- }
- else
- {
- $common_ids = array();
- $ids = explode(',',$content);
- foreach($ids as $val)
- {
- $id = intval($val);
- if($id > 0) {
- array_push($common_ids,$id);
- }
- }
- return $this->fill_goods($common_ids);
- }
- }
- private function fill_goods($common_ids)
- {
- $tops = array();
- $ids = Model('goods')->field('goods_commonid,goods_id')->where(array('goods_state' => 1,'goods_verify' => 1))->group('goods_commonid')->order('goods_salenum')->limit(false)->select();
- $all = array();
- foreach($ids as $val) {
- $all[intval($val['goods_commonid'])] = intval($val['goods_id']);
- }
- foreach($common_ids as $commid)
- {
- $goods_id = $all[$commid];
- if(!empty($goods_id) && $goods_id > 0) {
- $tops[$commid] = $goods_id;
- unset($all[$commid]);
- }
- }
- $ret = array();
- foreach($tops as $key => $val) {
- array_push($ret,$val);
- }
- foreach($all as $key => $val) {
- array_push($ret,$val);
- }
- return $ret;
- }
- private function _android_version()
- {
- $model = Model();
- $items = $model->table('app_update')->where(array('cur_version' => '1', 'enable' => '1', 'platform' => 'android'))->order('ver_code desc')->select();
- if (empty($items)) {
- return array();
- } else {
- $lastest = $items[0];
- $app_path = BASE_ROOT_PATH . $lastest['app_path'];
- $lastest['md5_file'] = md5_file($app_path);
- return $lastest;
- }
- }
- }
|