123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <?php
- /**
- * Created by PhpStorm.
- * User: stanley-king
- * Date: 15/12/5
- * Time: 下午4:21
- */
- class spec_attr_parser
- {
- private $tm_goods;
- private $tm_spec;
- private $tm_props;
- private $tm_prop_values;
- private $mod_spec;
- private $mod_spec_value;
- private $mod_good_class;
- private $mod_type;
- private $mod_type_spec;
- private $tm_spvid_tpvid; //spec value id => tmall props vid
- private $mod_attribute;
- private $tm_cpid_attrid;
- private $mod_attribute_value;
- private $tm_tvid_attrvid;
- const store_name = "美宝莲";
- const store_id = 1;
- public function __construct()
- {
- $this->tm_spec = Model('tm_spec');
- $this->tm_props = Model('tm_props');
- $this->tm_prop_values = Model('tm_prop_values');
- $this->tm_goods = Model('tm_goods');
- $this->mod_good_class = Model('goods_class');
- $this->mod_spec = Model('spec');
- $this->mod_type = Model('type');
- $this->mod_type_spec = Model('type_spec');
- $this->mod_spec_value = Model('spec_value');
- $this->tm_spvid_tpvid = Model('tm_spvid_tpvid');
- $this->mod_attribute = Model('attribute');
- $this->tm_cpid_attrid = Model('tm_cpid_attrid');
- $this->mod_attribute_value = Model('attribute_value');
- $this->tm_tvid_attrvid = Model('tm_tvid_attrvid');
- }
- //根据天猫的商品规格,对应生成规格,并做好分类,类型,规格的映射关系
- public function proc()
- {
- $this->add_spec(); //建立规格
- $this->add_type(); //建立类型,以及 规格与类型 的关系
- $this->add_type_spec();
- $this->add_spec_val(); //添加规格值,由于规格值是按照分类走的
- $this->add_attribute();
- $this->update_attrval();
- }
- private function add_spec()
- {
- $datas = $this->tm_spec->group('props')->order('props')->limit(false)->select(); //获取所有独立的规格
- foreach ($datas as $item) {
- $cid = $item['cid'];
- if(is_excids($cid)) continue;
- $pid = $item['props'];
- $spec_name = $this->get_tm_props_name($cid, $pid);
- $sp_id = $this->mod_spec->insert(array('sp_id' => $pid, 'sp_name' => $spec_name));
- if($sp_id != $pid) {
- Log::record(__FUNCTION__ . ':' . __LINE__ . " cannt find prop values from {$cid} {$pid}",Log::ERR);
- }
- }
- }
- private function add_type()
- {
- //通过分类直接建立类型
- $items = $this->tm_spec->field('cid')->group('cid')->limit(false)->select();
- foreach($items as $item) {
- $cid = $item['cid']; // $cid => $typeid 以分类建立类型
- if(is_excids($cid)) continue;
- $cnmae = $this->get_class_name($cid);
- $this->mod_type->insert(array("type_id" => $cid, "type_name" => $cnmae));
- $this->mod_good_class->where(array("gc_id" => $cid))->update(array("type_id" => $cid, "type_name" => $cnmae));
- }
- }
- private function type_spec_exist($type_id,$sp_id)
- {
- $items = $this->mod_type_spec->where(array('type_id' => $type_id,'sp_id' => $sp_id))->limit(false)->select();
- return (!empty($items));
- }
- private function add_type_spec()
- {
- //按照分类建立类型
- $items = $this->tm_spec->field('cid,props')->group('cid,props')->limit(false)->select();
- foreach($items as $item)
- {
- $cid = $item['cid']; // $cid => $typeid 以分类建立类型
- if(is_excids($cid)) continue;
- $pid = $item['props'];
- if($this->type_spec_exist($cid,$pid)) continue;
- $this->mod_type_spec->insert(array("type_id" => $cid,"sp_id" => $pid));
- }
- }
- private function get_tmgoods()
- {
- $bodys = $this->tm_goods->field('num_iid,body')->where(array('imported' => 0))->limit(false)->order('num_iid')->select();
- $result = array();
- foreach($bodys as $body) {
- $item = json_decode($body['body'],true);
- if(empty($item)) {
- Log::record('Cannot decode num_iid='.$body['num_iid'].' goods.');
- continue;
- }
- $product = array();
- $product['body'] = $item['item_seller_get_response']['item'];
- $product['num_iid'] = $body['num_iid'];
- $cid = $product['body']['cid'];
- if(is_excids($cid)) continue;
- array_push($result,$product);
- }
- return $result;
- }
- private function parse_properties_name($props)
- {
- $spec_vals = preg_split("/[;]+/", $props);
- $ret = array();
- foreach($spec_vals as $sv)
- {
- $data = preg_split("/[:]+/", $sv);
- if(!empty($data)) {
- $item = array();
- $item['pid'] = $data[0];
- $item['vid'] = $data[1];
- $item['pname'] = $data[2];
- $item['vname'] = $data[3];
- if(empty($item['pid']) || empty($item['vid']) || empty($item['pname']) || empty($item['vname'])) {
- continue;
- } else {
- array_push($ret,$item);
- }
- }
- }
- return $ret;
- }
- private function specval_exist($props,$cid)
- {
- $pid = $props['pid'];
- $vid = $props['vid'];
- $results = $this->tm_spvid_tpvid->where(array('tppid' => $pid,'tpvid' => $vid, 'tpcid' => $cid))->select();
- return (!empty($results));
- }
- private function add_spval($props,$cid)
- {
- foreach($props as $spvals)
- {
- if($this->specval_exist($spvals,$cid)) continue;
- $spec_val = array();
- $spec_val['sp_id'] = $spvals['pid'];
- $spec_val['sp_value_name'] = $spvals['vname'];
- $spec_val['store_id'] = 1;
- $spec_val['sp_value_color'] = '#ddd9c3';
- $spec_val['gc_id'] = $cid;
- $spec_val['sp_value_sort'] = 0;
- $tm_vid = $spvals['vid'];
- $specval_id = $this->mod_spec_value->insert($spec_val);
- if($specval_id)
- {
- $ret = $this->tm_spvid_tpvid->insert(array('spvid' => $specval_id,'tpcid' => $cid, 'tppid' => $spvals['pid'],'tpvid' => $tm_vid));
- if(empty($ret)) {
- Log::record(__FUNCTION__ . ':' . __LINE__,Log::ERR);
- }
- }
- else
- {
- Log::record(__FUNCTION__ . ':' . __LINE__,Log::ERR);
- }
- }
- }
- private function add_spec_val()
- {
- $tmgoods = $this->get_tmgoods();
- foreach ($tmgoods as $goods)
- {
- $cid = $goods['body']['cid'];
- if(is_excids($cid)) continue;
- $skus = $goods['body']['skus'];
- if(empty($skus)) continue;
- $skus = $skus['sku'];
- foreach($skus as $sku) {
- $prpos_name = $this->parse_properties_name($sku['properties_name']);
- $this->add_spval($prpos_name,$cid);
- }
- }
- }
- private function get_class_name($cid)
- {
- $item = $this->mod_good_class->where(array('gc_id' => $cid))->limit(false)->select();
- if(empty($item)) {
- return NULL;
- } else {
- return $item[0]['gc_name'];
- }
- }
- //根据cid 和 pid 取到规格名称。
- private function get_tm_props_name($cid,$pid)
- {
- $item = $this->tm_props->where(array('cid' => $cid,'pid' => $pid))->limit(false)->select();
- if(empty($item)) {
- return NULL;
- } else {
- return $item[0]['name'];
- }
- }
- private function attrval_exist($props,$cid)
- {
- $pid = $props['pid'];
- $vid = $props['vid'];
- $results = $this->tm_tvid_attrvid->field('attr_vid')->where(array('tpid' => $pid,'tvid' => $vid, 'tcid' => $cid))->select();
- if(empty($results)) {
- return false;
- } else {
- return $results[0]['attr_vid'];
- }
- }
- private function attr_exist($props,$cid)
- {
- $pid = $props['pid'];
- $results = $this->tm_cpid_attrid->field('attr_id')->where(array('pid' => $pid, 'cid' => $cid))->select();
- if(empty($results)) {
- return false;
- } else {
- return $results[0]['attr_id'];
- }
- }
- private function is_private_attr($pid,$cid)
- {
- if($pid == 20000) return false;
- $items = $this->tm_props->field('id')->where(array('pid' => $pid,'cid' => $cid))->select();
- return empty($items);
- }
- //需要从天猫的数据表里面排除掉 规格 =》 从而得到属性
- public function add_attribute()
- {
- $tmgoods = $this->get_tmgoods();
- foreach ($tmgoods as $goods)
- {
- $cid = $goods['body']['cid'];
- if(is_excids($cid)) continue;
- $props = $this->parse_properties_name($goods['body']['props_name']);
- $expids = $this->get_specids($cid);
- foreach($props as $attr)
- {
- $pid = $attr['pid'];
- if(in_array($pid,$expids)) continue;
- if($this->is_private_attr($pid,$cid)) continue;
- $attrid = $this->attr_exist($attr,$cid);
- if($attrid == false) {
- $row = array("attr_name" => $attr['pname'],"type_id" => $cid,"attr_show" => 1);
- $attrid = $this->mod_attribute->table('attribute')->insert($row);
- $this->tm_cpid_attrid->insert(array("attr_id" => $attrid, "cid" => $cid, "pid" => $pid));
- }
- if($this->attrval_exist($attr,$cid)) continue;
- $attr_vid = $this->mod_attribute_value->insert(array("attr_id" => $attrid,"type_id" => $cid, "attr_value_name" => $attr['vname']));
- if($attr_vid)
- {
- $rid = $this->tm_tvid_attrvid->insert(array('attr_vid' =>$attr_vid,'tcid' => $cid,'tpid' => $pid,'tvid' => $attr['vid']));
- if(empty($rid)) {
- throw new Exception('insert tm_tvid_attrvid error');
- }
- }
- else
- {
- throw new Exception('insert attribute_value error');
- }
- }
- }
- }
- private function get_specids($typeid)
- {
- $ret = array();
- $items = $this->mod_type_spec->field('type_id,sp_id')->where(array('type_id' => $typeid))->limit(false)->select();
- foreach($items as $item) {
- array_push($ret,(int)$item['sp_id']);
- }
- return $ret;
- }
- private function attr_value($type_id,$attr_id)
- {
- $items = $this->mod_attribute_value->field('attr_value_id,attr_value_name')->where(array('attr_id' => $attr_id,'type_id' => $type_id))->order('attr_value_sort')->limit(false)->select();
- $ret = array();
- foreach($items as $item) {
- array_push($ret,$item['attr_value_name']);
- }
- return implode(',',$ret);
- }
- private function update_attrval()
- {
- $items = $this->mod_attribute->table('attribute')->field('attr_id,type_id')->limit(false)->select();
- foreach($items as $item) {
- $attr_id = $item['attr_id'];
- $type_id = $item['type_id'];
- $attr_value = $this->attr_value($type_id,$attr_id);
- $this->mod_attribute->table('attribute')->where(array('attr_id' => $attr_id))->update(array('attr_value' => $attr_value));
- }
- }
- }
|