123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633 |
- <?php
- /**
- * lionfish 商城系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- * 拼团模块
- * @author fish
- *
- */
- namespace Home\Controller;
- class RecipeController extends CommonController {
-
- protected function _initialize()
- {
-
- parent::_initialize();
-
- }
-
-
- public function get_index_info()
- {
-
- $is_open_recipe = D('Home/Front')->get_config_by_name('is_open_recipe');
- $modify_recipe_name = D('Home/Front')->get_config_by_name('modify_recipe_name');
- $modify_recipe_share_title = D('Home/Front')->get_config_by_name('modify_recipe_share_title');
- $modify_vipcard_share_image = D('Home/Front')->get_config_by_name('modify_vipcard_share_image');
-
-
- $is_open_recipe = empty($is_open_recipe) || $is_open_recipe == 0 ? 0 : 1;
-
- $modify_recipe_name = empty($modify_recipe_name) || $modify_recipe_name == '' ? '菜谱' : $modify_recipe_name;
-
- $modify_recipe_share_title = empty($modify_recipe_share_title) ? '':$modify_recipe_share_title;
-
- $modify_vipcard_share_image = empty($modify_vipcard_share_image) ? '': tomedia($modify_vipcard_share_image);
-
-
-
- $cate_list = M()->query('SELECT * FROM ' . C('DB_PREFIX'). "lionfish_comshop_goods_category
- WHERE is_show=1 and cate_type='recipe' and pid = 0 " . '
- order by sort_order desc, id desc ' );
-
- if( empty($cate_list) )
- {
- $cate_list = array();
- }
-
-
- $need_data = array();
-
- $adv_list = M()->query("select * from ".C('DB_PREFIX')."lionfish_comshop_adv where type='recipe' and enabled=1
- order by displayorder desc , id asc ");
-
- $adv_arr = array();
-
- foreach( $adv_list as $val )
- {
-
- if( !empty($val['thumb']) )
- {
- $val['thumb'] = tomedia($val['thumb']);
-
- $adv_arr[] = $val;
- }
-
- }
-
- $need_data['is_open_recipe'] = $is_open_recipe;
- $need_data['modify_recipe_name'] = $modify_recipe_name;
- $need_data['modify_recipe_share_title'] = $modify_recipe_share_title;
- $need_data['modify_vipcard_share_image'] = $modify_vipcard_share_image;
- $need_data['cate_list'] = $cate_list;
- $need_data['adv_arr'] = $adv_arr;
-
-
- echo json_encode( array('code' => $need_data ) );
- die();
-
- }
-
- public function get_recipe_list()
- {
- $_GPC = I('request.');
-
-
- $pageNum = isset($_GPC['pageNum']) && $_GPC['pageNum'] > 0 ? $_GPC['pageNum'] : 1 ;
- $gid = isset($_GPC['gid']) && $_GPC['gid'] > 0 ? $_GPC['gid'] : 0;
-
- $keyword = isset($_GPC['keyword']) && !empty($_GPC['keyword']) ? $_GPC['keyword'] : '';
-
- $is_random = 0;
- $per_page = isset($_GPC['per_page']) ? $_GPC['per_page'] : 10;
-
- $cate_info = '';
-
- if($gid > 0){
-
- $sub_cate_list = M()->query('SELECT * FROM ' . C('DB_PREFIX'). "lionfish_comshop_goods_category
- WHERE is_show=1 and cate_type='recipe' and pid = {$gid} " . '
- order by sort_order desc, id desc ' );
-
- $gidArr = array();
- $gidArr[] = $gid;
- foreach ($sub_cate_list as $key => $val) {
- $gidArr[] = $val['id'];
- }
- $gid = implode(',', $gidArr);
- }
-
- $where = " ";
-
- if( !empty($keyword) )
- {
- $where .= " and recipe_name like '%{$keyword}%' ";
-
- }else if( !empty($gid) )
- {
- $where .= " and cate_id in ({$gid}) ";
- }
-
- $offset = ($pageNum - 1) * $per_page;
- $limit = "{$offset},{$per_page}";
-
- $token = $_GPC['token'];
-
-
- $weprogram_token = M('lionfish_comshop_weprogram_token')->field('member_id')->where( array('token' => $token) )->find();
-
- $member_id = 0;
- if( !empty($weprogram_token) && !empty($weprogram_token['member_id']) )
- {
- $member_id = $weprogram_token['member_id'];
- }
-
-
- $list = M()->query("select * from ".C('DB_PREFIX')."lionfish_comshop_recipe where state=1 {$where} order by id desc limit {$limit} ");
-
- if( !empty($list) )
- {
- foreach( $list as $key => $val )
- {
- if( !empty($val['video'] ))
- {
- $val['is_pic_or_video'] = 2;//视频
- $val['video'] = tomedia($val['video']);
- $val['images'] = tomedia($val['images']);
- }else if( !empty($val['images']) )
- {
- $val['is_pic_or_video'] = 1;//图片
- $val['images'] = tomedia($val['images']);
- $val['video'] = tomedia($val['video']);
- }
-
- $val['username'] = '';
- $val['avatar'] = '';
- $val['has_fav'] = 0;
-
- if( $val['member_id'] >0 )
- {
-
- $mb_info = M('lionfish_comshop_member')->field('avatar,username')->where( array('member_id' => $val['member_id'] ) )->find();
-
- $val['username'] = $mb_info['username'];
- $val['avatar'] = $mb_info['avatar'];
- }
-
- if( $member_id > 0 )
- {
-
- $check_fav = M('lionfish_comshop_recipe_fav')->where( array('recipe_id' => $val['id'], 'member_id' => $member_id ) )->find();
-
- if( !empty($check_fav) )
- {
- $val['has_fav'] = 1;
- }
- }
- unset($val['content']);
- unset($val['content']);
- unset($val['sub_name']);
- unset($val['cate_id']);
- unset($val['make_time']);
- unset($val['make_time']);
- unset($val['diff_type']);
- unset($val['state']);
-
- $list[$key] = $val;
- }
-
- echo json_encode( array('code' => 0, 'data' =>$list) );
- die();
-
- }else{
-
- echo json_encode( array('code' => 1) );
- die();
- }
- }
-
-
- public function fav_recipe_do()
- {
- $_GPC = I('request.');
-
- $recipe_id = $_GPC['id'];
-
- $token = $_GPC['token'];
-
- $weprogram_token = M('lionfish_comshop_weprogram_token')->field('member_id')->where( array('token' => $token) )->find();
-
- if( empty($weprogram_token) )
- {
- echo json_encode( array('code' => 1, 'msg' => '请先登录') );
- die();
- }
-
- $mb_info = M('lionfish_comshop_member')->field('avatar,username')->where( array('member_id' => $weprogram_token['member_id'] ) )->find();
-
- if( empty($mb_info) )
- {
- echo json_encode( array('code' => 1, 'msg' => '请先登录') );
- die();
- }
-
- $recipe_info = M('lionfish_comshop_recipe')->where( array('id' => $recipe_id ) )->find();
-
- if( empty($recipe_info) )
- {
- echo json_encode( array('code' => 1, 'msg' => '非法菜谱id' ) );
- die();
- }
-
- $fav_info = M('lionfish_comshop_recipe_fav')->where( array('recipe_id' => $recipe_id, 'member_id' => $weprogram_token['member_id'] ) )->find();
-
- if( !empty($fav_info) )
- {
- //要取消
-
- M('lionfish_comshop_recipe_fav')->where( array('id' => $fav_info['id']) )->delete();
-
- M('lionfish_comshop_recipe')->where( array('id' => $recipe_id ) )->setInc('fav_count',-1);
-
- echo json_encode( array('code' => 2,'msg' => '取消收藏成功', 'fav_count' => ($recipe_info['fav_count'] -1)) );
- die();
- }else{
- //要新增
- $ins_data = array();
-
- $ins_data['recipe_id'] = $recipe_id;
- $ins_data['member_id'] = $weprogram_token['member_id'];
- $ins_data['addtime'] = time();
-
- M('lionfish_comshop_recipe_fav')->add( $ins_data );
-
- M('lionfish_comshop_recipe')->where( array('id' => $recipe_id ) )->setInc('fav_count',1);
-
- echo json_encode( array('code' => 0,'msg' => '收藏成功' , 'fav_count' => ($recipe_info['fav_count'] +1) ) );
- die();
-
- }
- }
-
-
- public function get_fav_recipelist()
- {
- $_GPC = I('request.');
-
-
- $pageNum = isset($_GPC['pageNum']) && $_GPC['pageNum'] > 0 ? $_GPC['pageNum'] : 1 ;
-
-
- $per_page = isset($_GPC['per_page']) ? $_GPC['per_page'] : 10;
-
- $token = $_GPC['token'];
-
- $weprogram_token = M('lionfish_comshop_weprogram_token')->field('member_id')->where( array('token' => $token) )->find();
-
- if( empty($weprogram_token) )
- {
- echo json_encode( array('code' => 1, 'msg' => '请先登录') );
- die();
- }
-
- $offset = ($pageNum - 1) * $per_page;
- $limit = "{$offset},{$per_page}";
-
- $member_id = $weprogram_token['member_id'];
-
-
- $sql = "select r.* from ".C('DB_PREFIX')."lionfish_comshop_recipe_fav as rf left join ".C('DB_PREFIX')."lionfish_comshop_recipe as r on rf.recipe_id = r.id
- where rf.member_id = {$member_id} order by rf.id desc limit {$limit} ";
-
- $list = M()->query( $sql );
-
-
- if( !empty($list) )
- {
- foreach( $list as $key => $val )
- {
- if( !empty($val['video'] ))
- {
- $val['is_pic_or_video'] = 2;//视频
- $val['video'] = tomedia($val['video']);
- $val['images'] = tomedia($val['images']);
-
- }else if( !empty($val['images']) )
- {
- $val['is_pic_or_video'] = 1;//图片
- $val['images'] = tomedia($val['images']);
- }
-
- $val['username'] = '';
- $val['avatar'] = '';
- $val['has_fav'] = 0;
-
- if( $val['member_id'] >0 )
- {
- $mb_info = M('lionfish_comshop_member')->field('avatar,username')->where( array('member_id' => $val['member_id']) )->find();
-
- $val['username'] = $mb_info['username'];
- $val['avatar'] = $mb_info['avatar'];
- }
-
- if( $member_id > 0 )
- {
- $check_fav = M('lionfish_comshop_recipe_fav')->where( array('recipe_id' => $val['id'] , 'member_id' => $member_id ) )->find();
-
- if( !empty($check_fav) )
- {
- $val['has_fav'] = 1;
- }
- }
- unset($val['content']);
- unset($val['content']);
- unset($val['sub_name']);
- unset($val['cate_id']);
- unset($val['make_time']);
- unset($val['make_time']);
- unset($val['diff_type']);
- unset($val['state']);
-
- $list[$key] = $val;
- }
-
- echo json_encode( array('code' => 0, 'data' =>$list) );
- die();
-
- }else{
-
- echo json_encode( array('code' => 1) );
- die();
- }
-
-
- }
-
-
- public function get_recipe_categorylist()
- {
-
- $category_list = M('lionfish_comshop_goods_category')->where( "pid=0 and cate_type='recipe' and is_show=1" )->order('sort_order desc,id asc')->select();
-
-
- if( !empty($category_list) )
- {
- foreach( $category_list as $key => $val )
- {
- $sub_category_list = M('lionfish_comshop_goods_category')->where( "cate_type='recipe' and pid=".$val['id']." and is_show=1" )->order('sort_order desc,id asc')->select();
-
- if( !empty($val['logo']) )
- {
- $val['logo'] = tomedia($val['logo']);
- }
-
- if( empty($sub_category_list) )
- {
- $val['sub_cate'] = array();
- }else{
- foreach( $sub_category_list as $kk => $vv )
- {
- if( !empty($vv['logo']) )
- {
- $vv['logo'] = tomedia($vv['logo']);
- }
-
- unset($vv['uniacid']);
- unset($vv['pid']);
- unset($vv['is_hot']);
- unset($vv['banner']);
- unset($vv['sort_order']);
- unset($vv['is_show']);
- unset($vv['is_show_topic']);
-
- $sub_category_list[$kk] = $vv;
- }
-
- $val['sub_cate'] = $sub_category_list;
- }
-
- unset($val['uniacid']);
- unset($val['pid']);
- unset($val['is_hot']);
- unset($val['banner']);
- unset($val['sort_order']);
- unset($val['is_show']);
- unset($val['is_show_topic']);
-
- $category_list[$key] = $val;
- }
-
- echo json_encode( array('code' => 0, 'data' => $category_list ) );
- die();
-
- }else{
- echo json_encode( array('code' => 1, 'msg' => '无菜谱分类数据') );
- die();
- }
- }
-
-
- public function get_recipe_detail()
- {
- $_GPC = I('request.');
-
- $id = $_GPC['id'];
- $head_id = isset($_GPC['head_id']) ? $_GPC['head_id']: 0;
-
- $token = $_GPC['token'];
-
- $weprogram_token = M('lionfish_comshop_weprogram_token')->field('member_id')->where( array('token' => $token) )->find();
-
- if( empty($weprogram_token) )
- {
- $member_id = 0;
- }else{
- $member_id = $weprogram_token['member_id'];
- }
-
- $recipe_info = M('lionfish_comshop_recipe')->where( array('id' => $id ) )->find();
-
- if( empty($recipe_info) )
- {
- echo json_encode( array('code' =>1, 'msg' => '该菜谱已经不存在') );
- die();
- }
-
-
- if( !empty($recipe_info['video'] ))
- {
- $recipe_info['is_pic_or_video'] = 2;//视频
- $recipe_info['video'] = tomedia($recipe_info['video']);
- $recipe_info['images'] = tomedia($recipe_info['images']);
-
- }else if( !empty($recipe_info['images']) )
- {
- $recipe_info['is_pic_or_video'] = 1;//图片
- $recipe_info['images'] = tomedia($recipe_info['images']);
- }
-
- $recipe_info['content'] = htmlspecialchars_decode($recipe_info['content']);
- $recipe_info['username'] = '';
- $recipe_info['avatar'] = '';
- $recipe_info['has_fav'] = 0;
- if($recipe_info['diff_type'] == 1)
- {
- $recipe_info['diff_name'] = '简单';
- }else if($recipe_info['diff_type'] == 2)
- {
- $recipe_info['diff_name'] = '容易';
- }else if( $recipe_info['diff_type'] == 3 ){
- $recipe_info['diff_name'] = '困难';
- }
- $recipe_info['diff_type'] = 0;
-
- if( $recipe_info['member_id'] >0 )
- {
- $mb_info = M('lionfish_comshop_member')->field('avatar,username')->where( array('member_id' => $recipe_info['member_id'] ) )->find();
-
- $recipe_info['username'] = $mb_info['username'];
- $recipe_info['avatar'] = $mb_info['avatar'];
- }
-
- if( $member_id > 0 )
- {
- $check_fav = M('lionfish_comshop_recipe_fav')->where( array('recipe_id' =>$recipe_info['id'], 'member_id' => $member_id ) )->find();
-
- if( !empty($check_fav) )
- {
- $recipe_info['has_fav'] = 1;
- }
- }
- $cart= D('Home/Car');
-
-
- $relative_goods = M('lionfish_comshop_recipe_ingredients')->where( array('recipe_id' => $recipe_info['id'] ) )->order('id asc')->select();
-
- if( !empty($relative_goods) )
- {
- //团长休息
- $community_id = $head_id;
- foreach($relative_goods as $key => $val)
- {
- //title
- //subtitle goodsname
-
-
- $val['ingredients_title'] = $val['title'];
-
- if( !empty($val['goods_id']) )
- {
- $gd_info_list = M()->query('select g.*,gc.begin_time,gc.end_time,gc.big_img,gc.is_take_fullreduction,gc.labelname,gc.video from
- '.C('DB_PREFIX')."lionfish_comshop_goods as g ,".C('DB_PREFIX')."lionfish_comshop_good_common as gc where g.id in(".$val['goods_id'].") and g.id =gc.goods_id ");
- $need_data = array();
- foreach($gd_info_list as $gd_info )
- {
- if( isset($community_id) && $community_id > 0 )
- {
- $is_can_buy = D('Seller/Communityhead')->check_goods_can_community($gd_info['id'], $community_id);
- if( !$is_can_buy )
- {
- continue;
- }
- // is_all_sale
- }
-
- $tmp_data = array();
- $tmp_data['actId'] = $gd_info['id'];
- $tmp_data['spuName'] = $gd_info['goodsname'];
-
- $tmp_data['spuCanBuyNum'] = $gd_info['total'];
- $tmp_data['spuDescribe'] = $gd_info['subtitle'];
-
- $tmp_data['is_take_vipcard'] = $gd_info['is_take_vipcard'];
- $tmp_data['soldNum'] = $gd_info['seller_count'] + $gd_info['sales'];
-
- $productprice = $gd_info['productprice'];
- $tmp_data['marketPrice'] = explode('.', $productprice);
- if( !empty($gd_info['big_img']) )
- {
- $tmp_data['bigImg'] = tomedia($gd_info['big_img']);
- }
-
- $good_image = D('Home/Pingoods')->get_goods_images($gd_info['id']);
- if( !empty($good_image) )
- {
- $tmp_data['skuImage'] = tomedia($good_image['image']);
- }
- $price_arr = D('Home/Pingoods')->get_goods_price($gd_info['id'], $member_id);
- $price = $price_arr['price'];
-
- if( $pageNum == 1 )
- {
- $copy_text_arr[] = array('goods_name' => $gd_info['goodsname'], 'price' => $price);
- }
-
- $tmp_data['actPrice'] = explode('.', $price);
- $tmp_data['card_price'] = $price_arr['card_price'];
-
- //card_price
-
- $tmp_data['skuList']= D('Home/Pingoods')->get_goods_options($gd_info['id'],$member_id);
-
- if( !empty($tmp_data['skuList']) )
- {
- $tmp_data['car_count'] = 0;
- }else{
-
- $car_count = $cart->get_wecart_goods($gd_info['id'],"",$head_id ,$token);
-
- if( empty($car_count) )
- {
- $tmp_data['car_count'] = 0;
- }else{
- $tmp_data['car_count'] = $car_count;
- }
-
-
- }
-
- if($is_open_fullreduction == 0)
- {
- $tmp_data['is_take_fullreduction'] = 0;
- }else if($is_open_fullreduction == 1){
- $tmp_data['is_take_fullreduction'] = $gd_info['is_take_fullreduction'];
- }
- // 商品角标
- $label_id = unserialize($gd_info['labelname']);
- if($label_id){
- $label_info = D('Home/Pingoods')->get_goods_tags($label_id);
- if($label_info){
- if($label_info['type'] == 1){
- $label_info['tagcontent'] = tomedia($label_info['tagcontent']);
- } else {
- $label_info['len'] = mb_strlen($label_info['tagcontent'], 'utf-8');
- }
- }
- $tmp_data['label_info'] = $label_info;
- }
- $tmp_data['is_video'] = false;
-
- $need_data[] = $tmp_data;
- }
-
- $val['goods'] = $need_data;
- }
-
-
- $relative_goods[$key] = $val;
- }
-
- $recipe_info['recipe_ingredients'] = $relative_goods;
- }else{
- $recipe_info['recipe_ingredients'] = array();
- }
- $is_open_recipe_full_video = D('Home/Front')->get_config_by_name('is_open_recipe_full_video');
-
- echo json_encode( array('code' => 0, 'data' => $recipe_info, 'is_open_recipe_full_video'=>$is_open_recipe_full_video) );
- die();
- }
-
- }
|