Placeorder.php 10.8 KB
Newer Older
_
__FresHmaN 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
/**
 * FecShop file.
 *
 * @link http://www.fecshop.com/
 * @copyright Copyright (c) 2016 FecShop Software LLC
 * @license http://www.fecshop.com/license/
 */

namespace fecshop\app\appfront\modules\checkout\block\onepage;

use Yii;

/**
 * @author Terry Zhao <2358269014@qq.com>
T
微调  
Terry 已提交
16
 * @since 1.0 
_
__FresHmaN 已提交
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
 */
class Placeorder
{
    /**
     * 用户的账单地址信息,通过用户传递的信息计算而来。
     */
    public $_billing;

    public $_address_id;
    /**
     * 用户的货运方式.
     */
    public $_shipping_method;
    /**
     * 用户的支付方式.
     */
    public $_payment_method;

    public function getLastData()
    {
        $post = Yii::$app->request->post();
        if (is_array($post) && !empty($post)) {
            /**
             * 对传递的数据,去除掉非法xss攻击部分内容(通过\Yii::$service->helper->htmlEncode()).
             */
            $post = \Yii::$service->helper->htmlEncode($post);
            // 检查前台传递的数据的完整
            if ($this->checkOrderInfoAndInit($post)) {
                // 如果游客用户勾选了注册账号,则注册,登录,并把地址写入到用户的address中
                $gus_status = $this->guestCreateAndLoginAccount($post);
                $save_address_status = $this->updateAddress($post);
                if ($gus_status && $save_address_status) {
                    // 更新Cart信息
                    //$this->updateCart();
                    // 设置checkout type
                    $serviceOrder = Yii::$service->order;
                    $checkout_type = $serviceOrder::CHECKOUT_TYPE_STANDARD;
                    $serviceOrder->setCheckoutType($checkout_type);
                    // 将购物车数据,生成订单。
T
微调  
Terry 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
                    $innerTransaction = Yii::$app->db->beginTransaction();
                    try {
                        $genarateStatus = Yii::$service->order->generateOrderByCart($this->_billing, $this->_shipping_method, $this->_payment_method);
                        if ($genarateStatus) {
                            // 得到当前的订单信息
                            //$orderInfo = Yii::$service->order->getCurrentOrderInfo();
                            // 发送新订单邮件
                            //Yii::$service->email->order->sendCreateEmail($orderInfo);
                            // 得到支付跳转前的准备页面。
                            $startUrl = Yii::$service->payment->getStandardStartUrl();
                            $innerTransaction->commit();
                            Yii::$service->url->redirect($startUrl);
                            return true;
                        } else {
                           $innerTransaction->rollBack();
                        }
                    } catch (Exception $e) {
                        $innerTransaction->rollBack();
_
__FresHmaN 已提交
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
                    }
                }
            } else {
            }
        }
        //echo 333;exit;
        Yii::$service->page->message->addByHelperErrors();

        return false;
    }

    /**
     * @property $post|Array,前台传递参数数组。
     * 如果游客选择了创建账户,并且输入了密码,则使用address email作为账号,
     * 进行账号的注册和登录。
     */
    public function guestCreateAndLoginAccount($post)
    {
        $create_account = $post['create_account'];
        $billing = $post['billing'];
        if (!is_array($billing) || empty($billing)) {
            Yii::$service->helper->errors->add('billing must be array and can not empty');

            return false;
        }
        if ($create_account) {
            $customer_password = $billing['customer_password'];
            $confirm_password = $billing['confirm_password'];
            if ($customer_password != $confirm_password) {
                Yii::$service->helper->errors->add('the passwords are inconsistent');

                return false;
            }
            $passMin = Yii::$service->customer->getRegisterPassMinLength();
            $passMax = Yii::$service->customer->getRegisterPassMaxLength();
            if (strlen($customer_password) < $passMin) {
                Yii::$service->helper->errors->add('password must Greater than '.$passMin);

                return false;
            }
            if (strlen($customer_password) > $passMax) {
                Yii::$service->helper->errors->add('password must less than '.$passMax);

                return false;
            }
            $param['email'] = $billing['email'];
            $param['password'] = $billing['customer_password'];
            $param['firstname'] = $billing['first_name'];
            $param['lastname'] = $billing['last_name'];
            if (!Yii::$service->customer->register($param)) {
                return false;
            } else {
                Yii::$service->customer->Login([
                    'email'        => $billing['email'],
                    'password'    => $billing['customer_password'],
                ]);
            }
        }

        return true;
    }

    /**
     * @property $post | Array
     * 登录用户,保存货运地址到customer address ,然后把生成的
     * address_id 写入到cart中。
     * shipping method写入到cart中
     * payment method 写入到cart中 updateCart
     */
    public function updateAddress($post)
    {
        if (!Yii::$app->user->isGuest) {
            $billing = $post['billing'];
            $address_id = $post['address_id'];
            if (!$address_id) {
                $identity = Yii::$app->user->identity;
                $customer_id = $identity['id'];
                $one = [
                    'first_name'    => $billing['first_name'],
                    'last_name'    => $billing['last_name'],
                    'email'        => $billing['email'],
                    'company'        => '',
                    'telephone'    => $billing['telephone'],
                    'fax'            => '',
                    'street1'        => $billing['street1'],
                    'street2'        => $billing['street2'],
                    'city'            => $billing['city'],
                    'state'        => $billing['state'],
                    'zip'            => $billing['zip'],
                    'country'        => $billing['country'],
                    'customer_id'    => $customer_id,
                    'is_default'    => 1,
                ];
                $address_id = Yii::$service->customer->address->save($one);
                $this->_address_id = $address_id;
                if (!$address_id) {
                    Yii::$service->helper->errors->add('new customer address save fail');

                    return false;
                }
                //echo "$address_id,$this->_shipping_method,$this->_payment_method";
            }

            return Yii::$service->cart->updateLoginCart($this->_address_id, $this->_shipping_method, $this->_payment_method);
        } else {
            return Yii::$service->cart->updateGuestCart($this->_billing, $this->_shipping_method, $this->_payment_method);
        }

        return true;
    }

    /**
     * 如果是游客,那么保存货运地址到购物车表。
     */
    /*
    public function updateCart(){
        if(Yii::$app->user->isGuest){
            return Yii::$service->cart->updateGuestCart($this->_billing,$this->_shipping_method,$this->_payment_method);
        }else{
            return Yii::$service->cart->updateLoginCart($this->_address_id,$this->_shipping_method,$this->_payment_method);
        }
    }
    */

    /**
     * @property $post | Array
     * @return bool
     *              检查前台传递的信息是否正确。同时初始化一部分类变量
     */
    public function checkOrderInfoAndInit($post)
    {
        $address_one = '';
        $address_id = isset($post['address_id']) ? $post['address_id'] : '';
        $billing = isset($post['billing']) ? $post['billing'] : '';
        if ($address_id) {
            $this->_address_id = $address_id;
            if (Yii::$app->user->isGuest) {
                Yii::$service->helper->errors->add('address id can not use for guest');

                return false; // address_id 这种情况,必须是登录用户。
            } else {
                $customer_id = Yii::$app->user->identity->id;
                if (!$customer_id) {
                    Yii::$service->helper->errors->add('customer id is empty');

                    return false;
                } else {
                    $address_one = Yii::$service->customer->address->getAddressByIdAndCustomerId($address_id, $customer_id);
                    if (!$address_one) {
                        Yii::$service->helper->errors->add('current address id is not belong to current user');

                        return false;
                    } else {
                        // 从address_id中取出来的字段,查看是否满足必写的要求。
                        if (!Yii::$service->order->checkRequiredAddressAttr($address_one)) {
                            return false;
                        }
                        $arr['customer_id'] = $customer_id;
                        foreach ($address_one as $k=>$v) {
                            $arr[$k] = $v;
                        }
                        $this->_billing = $arr;
                    }
                }
            }
        } elseif ($billing && is_array($billing)) {
            // 检查address的必写字段是否都存在
            //var_dump($billing);exit;
            if (!Yii::$service->order->checkRequiredAddressAttr($billing)) {
                return false;
            }
            $this->_billing = $billing;
        }
        $shipping_method = isset($post['shipping_method']) ? $post['shipping_method'] : '';
        $payment_method = isset($post['payment_method']) ? $post['payment_method'] : '';
        // 验证货运方式
        if (!$shipping_method) {
            Yii::$service->helper->errors->add('shipping method can not empty');

            return false;
        } else {
            if (!Yii::$service->shipping->ifIsCorrect($shipping_method)) {
                Yii::$service->helper->errors->add('shipping method is not correct');

                return false;
            }
        }
        // 验证支付方式
        if (!$payment_method) {
            Yii::$service->helper->errors->add('payment method can not empty');

            return false;
        } else {
            if (!Yii::$service->payment->ifIsCorrectStandard($payment_method)) {
                Yii::$service->helper->errors->add('payment method is not correct');

                return false;
            }
        }
        $this->_shipping_method = $shipping_method;
        $this->_payment_method = $payment_method;
        Yii::$service->payment->setPaymentMethod($this->_payment_method);

        return true;
    }
}