cart.js 15.9 KB
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 28 29 30 31 32 33 34 35 36 37 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 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 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
/**
 * Created by TaoHuang on 2016/10/19.
 */

'use strict';

const _ = require('lodash');
const co = require('bluebird').coroutine;
const logger = global.yoho.logger;
const yohoHelpers = global.yoho.helpers;
const config = global.yoho.config;
const service = require('../models/cart-service');
const helper = require('../models/cart-helper');
const simpleHeaderModel = require('../../../doraemon/models/simple-header');

const stepper = [
    {name: '查看购物车', focus: true},
    {name: '填写订单'},
    {name: '付款,完成购买'}
];

const getProductInfo = (req, res, next) => {
    let pid = req.query.productId || '';

    req.ctx(service).getProductInfoAsync(pid).then(result => {
        return res.render('goods-detail', Object.assign({
            layout: false
        }, result));
    }).catch(next);
};

/**
 * 获取产品数据json信息
 * @param req
 * @param res
 * @param next
 */
const getProductData = (req, res, next) => {
    let pid = req.query.productId || '';

    req.ctx(service).getProductInfoAsync(pid).then(result => {
        return res.send(result);
    }).catch(next);
};

// 获取优惠券列表
const getCoupons = (req, res, next) => {
    req.ctx(service).getCoupons(req.user.uid).then(data => {
        res.send(data);
    }).catch(next);
};

/**
 * 设置购物车COOKIE信息
 */
const setShoppingCookie = (req, res) => {

    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);

    return req.ctx(service).getCartCount(uid, shoppingKey).then(ret => {

        if (ret && ret.data && ret.data.cart_goods_count) {
            res.cookie('_g', JSON.stringify({
                _k: shoppingKey,
                _nac: ret.data.cart_goods_count,
                _ac: 0,
                _r: 1
            }), {
                domain: '.yohobuy.com',
                path: '/'
            });
        }
    });
};

/**
 * 首页迷你购物车数据信息json
 * @param req
 * @param res
 * @param next
 */
const miniCart = (req, res, next) => {

    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);

    req.ctx(service).getMiniCartData(uid, shoppingKey).then(ret => {
        let dest = {
            code: 200,
            message: 'shoppingCart',
            data: ret
        };

        res.type('text/javascript');
        res.send(req.query.callback + '(' + JSON.stringify(dest) + ')');
    }).catch(next);
};

/**
 * 首页迷你购物车删除数据信息
 * @param req
 * @param res
 * @param next
 */
const delCartGoods = (req, res, next) => {

    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let productSku = req.query.product_sku;
    let buyNumber = req.query.product_num || 1;
    let callback = req.query.callback;
    let skuList = {};

    skuList[productSku] = parseInt(buyNumber);  //eslint-disable-line

    req.ctx(service).removeFromCart(uid, shoppingKey, JSON.stringify(skuList))
        .then(ret => {
            if (ret && ret.code === 200 && _.has(ret, 'data.goods_count')) {
                ret.data.total_goods_num = ret.data.goods_count;
                return res.send(callback + '(' + JSON.stringify(ret) + ')');
            } else {
                return res.send(callback + '(' + JSON.stringify(ret) + ')');
            }
        })
        .catch(next);
};

/**
 * 加入购物车  商品详情页
 *
 * @param string productSku 商品的SKU
 * @param int buyNumber 购买数量
 * @param int promotionId 促销ID, 加价购有关
 * @param int goodsType 商品类型,0表示普通商品,1表示加价购商品
 * @param int isEdit 是否是编辑商品SKU,0表示不是编辑
 * @return json
 */
const cartAddIndex = (req, res, next) => {

    co(function * () {
        let uid = req.user.uid;
        let shoppingKey = helper.getShoppingKeyByCookie(req);
        let productSku = req.body.productSku;
        let buyNumber = req.body.buyNumber || 1;
        let goodsType = req.body.goodsType || 0;
        let promotionId = req.body.promotionId || 0;
        let isEdit = req.body.isEdit || 0;

        // 执行加入购物车操作
        let result = yield req.ctx(service).addCart(productSku, buyNumber,
            goodsType, isEdit, promotionId,
            uid, shoppingKey);

        // 设置加入购物车凭证到客户端浏览器
        if (!shoppingKey && _.get(result, 'data.shopping_key')) {

            res.cookie('_SPK', result.data.shopping_key, {
                expires: new Date(Date.now() + 86400 * 360),
                domain: config.cookieDomain
            });
        }

        // 更新头部购物车COOKIE
        if (_.get(result, 'data.shopping_key')) {

            res.cookie('_g', JSON.stringify({
                _k: result.data.shopping_key,
                _nac: result.data.goods_count,
                _ac: 0,
                _r: 1
            }), {
                expires: new Date(Date.now() + 86400 * 360),
                domain: config.cookieDomain
            });
        }

        res.send(result);
    })().catch(next);
};

/**
 * 我的购物车
 */
const cart = (req, res, next) => {

    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let cartDelList = req.cookies['cart-del-list'];

    let isNewCart = _.get(req.app.locals.pc, 'pay.oldCart', false);

    if (isNewCart) {
        return res.redirect(yohoHelpers.urlFormat('/shopping/cart'));
    }

    if (cartDelList) {
        res.cookie('cart-del-list', '', {
            domain: '.yohobuy.com',
            path: '/'
        });
    }

    req.ctx(service).getCartData(uid, shoppingKey)
        .then(ret => {

            return res.render('cart', {
                title: '购物车 | ' + (res.locals.title || ''),
                module: 'cart',
                page: 'cart',
                stepper: stepper,
                simpleHeader: simpleHeaderModel.setSimpleHeaderData(),
                uid: uid,
                cart: ret
            });
        })
        .catch(next);
};

/**
 * 加入购物车
 */
const cartAdd = (req, res) => {

    co(function * () {
        let uid = req.user.uid;
        let shoppingKey = helper.getShoppingKeyByCookie(req);
        let productSku = req.body.productSku;
        let buyNumber = req.body.buyNumber || 1;
        let goodsType = req.body.goodsType || 0;
        let promotionId = req.body.promotionId || 0;
        let isEdit = req.body.isEdit || 0;
        let isReAdd = !!req.body.isReAdd || false;
        let cartDelList = helper.getCartDelList(req, res, null, isReAdd ? productSku : null);

        let result = yield req.ctx(service).addToCart(productSku, buyNumber,
            goodsType, isEdit, promotionId,
            uid, shoppingKey, cartDelList);

        // 设置加入购物车凭证到客户端浏览器
        if (!shoppingKey && result && result.data && result.data.shopping_key) {
            res.cookie('_SPK', result.data.shopping_key, {
                expires: new Date(Date.now() + 86400 * 360),
                domain: config.cookieDomain
            });
        }

        if (result && result.code === 200) {
            yield setShoppingCookie(req, res);
        }

        res.send(result);
    })();
};

/**
 * 获取购物车商品总数
 */
const cartTotal = (req, res) => {

    co(function * () {

        let uid = req.user.uid;
        let shoppingKey = helper.getShoppingKeyByCookie(req);
        let callback = req.query.callback;
        let ret = yield req.ctx(service).getCartCount(uid, shoppingKey);

        return res.send(callback + '(' + JSON.stringify(ret) + ')');
    })();
};

/**
 * 购物车商品选择与取消
 */
const selectProduct = (req, res, next) => {

    let uid = req.user.uid;
    let productId = req.body.skuList;
    let hasPromotion = req.body.hasPromotion || false;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let cartDelList = helper.getCartDelList(req, res);

    req.ctx(service).selectGoods(uid, productId, shoppingKey, hasPromotion, cartDelList)
        .then(ret => {
            res.send(ret);
        }).catch(next);
};

/**
 * 修改购物车商品数量
 */
const modifyProductNum = (req, res, next) => {

    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let sku = req.body.sku;
    let increaseNum = req.body.increaseNum || null;
    let decreaseNum = req.body.decreaseNum || null;
    let cartDelList = helper.getCartDelList(req, res);
    let batchNo = req.body.batch_no || null;
    let activityId = req.body.activity_id || null;

    if (activityId) {
        return req.ctx(service).bundleNumData({
            uid: uid,
            batch_no: batchNo,
            activity_id: activityId,
            shopping_key: shoppingKey,
            increaseNum: increaseNum,
            decreaseNum: decreaseNum
        }).then(ret => {
            if (ret && ret.code === 200) {
                return setShoppingCookie(req, res).then(() => {
                    return res.send(ret);
                });
            } else {
                return res.send({
                    code: 400,
                    message: '修改购物车商品数量失败!'
                });
            }
        })
            .catch(next);
    }

    return req.ctx(service).modifyProductNum(uid, sku, increaseNum, decreaseNum, shoppingKey, cartDelList)
        .then(ret => {
            if (ret && ret.code === 200) {
                return setShoppingCookie(req, res).then(() => {
                    return res.send(ret);
                });
            } else {
                return res.send({
                    code: 400,
                    message: '修改购物车商品数量失败!'
                });
            }
        })
        .catch(next);
};

/**
 * 移出购物车
 */
const removeProduct = (req, res) => {

    co(function * () {
        let uid = req.user.uid;
        let shoppingKey = helper.getShoppingKeyByCookie(req);
        let skuList = req.body.skuList;
        let hasPromotion = true;
        let cartDelList = helper.getCartDelList(req, res, req.body.cartDelList);

        let ret = yield req.ctx(service).removeFromCart(uid, shoppingKey, skuList, hasPromotion, cartDelList);

        if (ret && ret.code === 200) {
            yield setShoppingCookie(req, res);
        }

        return res.send(ret);
    })();
};

/**
 * 移入收藏夹
 * 支持批量移入收藏夹
 */
const moveToFav = (req, res) => {

    co(function * () {
        let uid = req.user.uid;
        let skuList = req.body.skuList;
        let hasPromotion = req.body.hasPromotion || false;
        let isReFav = !!req.body.isReFav || false;
        let productSku = null;
        let cartDelList;
        let ret;

        if (isReFav) {
            try {
                let sl = JSON.parse(skuList);

                if (sl && sl.length) {
                    productSku = _.get(sl[0], 'product_sku');
                }
            } catch (err) {
                logger.error(err);
            }
        }

        cartDelList = helper.getCartDelList(req, res, null, productSku);
        ret = yield req.ctx(service).addToFav(uid, skuList, hasPromotion, cartDelList);

        if (ret && ret.code === 200) {
            yield setShoppingCookie(req, res);
        }

        return res.send(ret);
    })();
};

/**
 * 检查是否收藏
 */
const checkFav = (req, res) => {

    co(function * () {

        let uid = req.user.uid;
        let ret = {
            code: 400,
            message: '是否收藏',
            data: {}
        };

        if (uid && req.body.pidList) {
            let pids = req.body.pidList.split(',');

            Object.assign(ret, {code: 200,
                data: yield req.ctx(service).checkUserIsFav(uid, pids)});
        }

        return res.send(ret);
    })();
};

/**
 * 凑单商品异步请求
 */
const getTogetherProduct = (req, res) => {
    co(function * () {
        let ret = yield req.ctx(service).getTogetherProduct(req.query);

        return res.send(ret);
    })();
};

/**
 * 为你优选商品异步请求
 */
const getRecommendProductAction = (req, res) => {

    co(function * () {

        let channelNum = req.yoho.channelNum;
        let uid = req.user.uid;
        let udid = req.yoho.udid;
        let page = Number(req.query.page || 1);
        let ret;

        if (page <= 0 || page >= 6) {
            page = 1;
        }

        ret = yield req.ctx(service).getRecommendProduct(channelNum, uid, udid, page);
        res.send(ret);
    })();
};

/**
 * 凑单 加价购异步请求
 */
const getIncreasePurchase = (req, res) => {

    co(function * () {

        let page = req.query.page;
        let ret = yield req.ctx(service).getTogetherProduct(page);

        return res.send(ret);
    });
};

/**
 * 修改购物车商品颜色和尺寸
 */
const modifyProduct = (req, res, next) => {
    const uid = req.user.uid;
    const shoppingKey = helper.getShoppingKeyByCookie(req);
    let cartDelList = helper.getCartDelList(req, res);

    // swapData => [{"buy_number":"1","selected":"Y","new_product_sku":"735172","old_product_sku":"735171"}]
    const swapData = req.body.swapData;

    req.ctx(service).modifyProduct({swapData, shoppingKey, uid}, uid, shoppingKey, cartDelList).then((result) => {
        res.send(result);
    }).catch(next);
};

/**
 * 换购赠品或加价购
 * @param req
 * @param res
 * @param next
 */
const swapGift = (req, res, next) => {

    let uid = req.user && req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);

    let promotionId = req.body.promotionId;
    let newSkn = req.body.newSkn;
    let newSku = req.body.newSku;
    let cartDelList = helper.getCartDelList(req, res);

    req.ctx(service).swapGift(uid, shoppingKey, promotionId, newSkn, newSku, cartDelList)
        .then(ret => {
            res.send(ret);
        }).catch(next);
};

/**
 * 查询优惠可选择的商品,
 * 根据用户购物车数据标记是否选中
 * @param req
 * @param res
 * @param next
 */
const queryUserPromotionGift = (req, res, next) => {

    let uid = req.user && req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let promotionId = req.query.promotionId;

    req.ctx(service).queryUserPromotionGift(promotionId, uid, shoppingKey)
        .then(ret => {
            res.send(ret);
        }).catch(next);
};

/**
 * [套餐添加购物车]
 * @param  {[type]}   req  [description]
 * @param  {[type]}   res  [description]
 * @param  {Function} next [description]
 * @return {[type]}        [description]
 */
const addBundle = (req, res, next) => {
    let params = {};
    let uid = req.user.uid;
    let shoppingKey = helper.getShoppingKeyByCookie(req);
    let bundleId = req.body.bundleId || 0;
    let pSkuList = req.body.pSkuList;

    params = {
        shopping_key: shoppingKey,
        activity_id: bundleId,
        product_sku_list: pSkuList
    };

    if (uid) {
        params.uid = uid;
    }

    req.ctx(service).addBundleData(params).then(result => {

        // 设置加入购物车凭证到客户端浏览器
        if (!shoppingKey && _.get(result, 'data.shopping_key')) {

            res.cookie('_SPK', result.data.shopping_key, {
                expires: new Date(Date.now() + 86400 * 360),
                domain: config.cookieDomain
            });
        }

        // 更新头部购物车COOKIE
        if (_.get(result, 'data.shopping_key')) {

            res.cookie('_g', JSON.stringify({
                _k: result.data.shopping_key,
                _nac: result.data.goods_count,
                _ac: 0,
                _r: 1
            }), {
                expires: new Date(Date.now() + 86400 * 360),
                domain: config.cookieDomain
            });
        }

        res.json(result);
    }).catch(next);
};

module.exports = {
    cartAddIndex,
    getProductInfo,
    getProductData,
    cart,
    cartAdd,
    cartTotal,
    setShoppingCookie,
    selectProduct,
    modifyProductNum,
    removeProduct,
    moveToFav,
    checkFav,
    getTogetherProduct,
    getRecommendProductAction,
    getIncreasePurchase,
    modifyProduct,
    swapGift,
    queryUserPromotionGift,
    getCoupons,
    miniCart,
    delCartGoods,
    addBundle
};