From 44d14c9f4e80e2254f75efa34706fcf4ed3c5a96 Mon Sep 17 00:00:00 2001 From: Anyon Date: Sat, 21 Oct 2017 18:06:06 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0ExtendSer?= =?UTF-8?q?vice=E6=96=87=E4=BB=B6=20#55?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extend/service/ExtendService.php | 103 +++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 extend/service/ExtendService.php diff --git a/extend/service/ExtendService.php b/extend/service/ExtendService.php new file mode 100644 index 000000000..4d505ef48 --- /dev/null +++ b/extend/service/ExtendService.php @@ -0,0 +1,103 @@ + sysconf('sms_username'), 'tkey' => $tkey, + 'content' => $content, 'mobile' => $phone, 'productid' => $productid, + 'password' => md5(md5(sysconf('sms_password')) . $tkey), + ]; + $result = HttpService::post('http://www.ztsms.cn/sendNSms.do', $data); + list($code, $msg) = explode(',', $result . ','); + $insert = ['phone' => $phone, 'content' => $content, 'result' => $result]; + Db::name('MemberSmsHistory')->insert($insert); + return intval($code) === 1; + } + + /** + * 查询短信余额 + * @return array + */ + public static function querySmsBalance() + { + $tkey = date("YmdHis"); + $data = [ + 'username' => sysconf('sms_username'), 'tkey' => $tkey, + 'password' => md5(md5(sysconf('sms_password')) . $tkey), + ]; + $result = HttpService::post('http://www.ztsms.cn/balanceN.do', $data); + if ($result > -1) { + return ['code' => 1, 'num' => $result, 'msg' => '获取短信剩余条数成功!']; + } elseif ($result > -2) { + return ['code' => 0, 'num' => '0', 'msg' => '用户名或者密码不正确!']; + } elseif ($result > -3) { + return ['code' => 0, 'num' => '0', 'msg' => 'tkey不正确!']; + } elseif ($result > -4) { + return ['code' => 0, 'num' => '0', 'msg' => '用户不存在或用户停用!']; + } + } + + /** + * 通用物流单查询 + * @param string $code 快递物流编号 + * @return array + */ + public static function expressByAuto($code) + { + list($result, $client_ip) = [[], Request::instance()->ip()]; + $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; + $autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}", [], 30, $header); + foreach (json_decode($autoResult)->auto as $vo) { + $result[$vo->comCode] = self::express($vo->comCode, $code); + } + return $result; + } + + /** + * 查询物流信息 + * @param string $express_code 快递公司编辑 + * @param string $express_no 快递物流编号 + * @return array + */ + public static function express($express_code, $express_no) + { + list($microtime, $client_ip) = [microtime(true), Request::instance()->ip()]; + $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; + $location = "http://www.kuaidi100.com/query?type={$express_code}&postid={$express_no}&id=1&valicode=&temp={$microtime}"; + return json_decode(HttpService::get($location, [], 30, $header), true); + } + +} \ No newline at end of file