12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace Journal\Lib;
- use Dever;
- class Pay
- {
- /**
- * 支付成功后,调取的接口
- *
- * @return mixed
- */
- public function act_api($param = array())
- {
- $send = Dever::preInput('pay_');
- $key = md5('jmss_2018');
- ksort($send);
- $send['signature'] = md5($key . '&' . http_build_query($send));
- $signature = Dever::input('signature');
- if ($send['signature'] == $signature) {
- $product_id = $send['pay_product_id'];
- $uid = $send['pay_uid'];
- $cash = $send['pay_cash'];
- $order_id = $send['pay_order_id'];
- $status = $send['pay_status'];
- $msg = $send['pay_msg'];
- $order = Dever::db('journal/order')->one(array('order_id' => $order_id, 'uid' => $uid));
- if ($send['pay_status'] == 2 && $order) {
- Dever::db('journal/order')->update(array('where_id' => $order['id'], 'status' => 2));
- # 订阅
- Dever::load('act/lib/subscribe')->submit($uid, $order['product_id'], 1);
- $score = false;
- $num = false;
- if ($order['buy_id'] > 0) {
- $info = Dever::db('journal/info')->one($order['product_id']);
- $buy = Dever::db('journal/buy_num')->one($order['buy_id']);
- if ($info && $buy && $info['score'] > 0) {
- $score = $buy['num'] * $info['score'];
- } elseif ($info && $buy) {
- $num = $buy['num'];
- }
- }
- Dever::score($uid, 'buy_journal', '购买小刊', 'act/lib/score.submit?method=pay&type=4&id=' . $order['product_id'], $score, $num);
- # 发消息
- $journal = Dever::db('journal/info')->one($order['product_id']);
- if (Dever::project('message')) {
- Dever::load('message/lib/data')->push(-1, $uid, '购买提醒', '购买成功,您获得了 '.$journal['name'].' 的阅读资格!', $type = 1);
- }
- # 发模板消息
- $user = Dever::db('passport/user')->one($uid);
- $wechat = Dever::db('passport/wechat')->one(array('uid' => $uid));
- if ($wechat && Dever::project('wechat_applet')) {
- $send['key'] = 'buy_journal';
- $send['project_id'] = 1;
- $send['touser'] = $wechat['openid'];
- $send['page'] = Dever::config('base')->applet_index . '?scene=' . Dever::login($uid) . ',' . '4,' . $order['product_id'];
- $send['data'] = array
- (
- 'keyword1' => array('value', date('Y年m月d日 H:i', $order['cdate'])),
- 'keyword2' => array('value', '购买成功,您获得了 '.$journal['name'].' 的阅读资格!'),
- );
- $send['form_id'] = Dever::load('act/lib/form')->get($this->data['uid'], 2);
- if ($send['form_id']) {
- Dever::load('wechat_applet/msg.send', $send);
- }
- }
- # 发短信
- if (isset($user['mobile']) && $user['mobile'] && Dever::project('sms')) {
- $send = array();
- $send['name'] = $journal['name'];
- Dever::load('sms/api.send', 'buy_journal', $user['mobile'], $send);
- }
- } else {
- Dever::db('journal/order')->update(array('where_id' => $order['id'], 'status' => 3));
- }
- }
- }
- }
|