Sserverdevelop
d44ad782创建于 2021年9月9日历史提交
<?php

/*
 * This file is part of the overtrue/wechat.
 *
 * (c) overtrue <i@overtrue.me>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */
namespace EasyWeChat\Payment;

use Closure;
use EasyWeChat\BasicService;
use EasyWeChat\Kernel\Exceptions\InvalidArgumentException;
use EasyWeChat\Kernel\ServiceContainer;
use EasyWeChat\Kernel\Support;
use EasyWeChat\OfficialAccount;
/**
 * Class Application.
 *
 * @property \EasyWeChat\Payment\Bill\Client              $bill
 * @property \EasyWeChat\Payment\Fundflow\Client          $fundflow
 * @property \EasyWeChat\Payment\Jssdk\Client             $jssdk
 * @property \EasyWeChat\Payment\Order\Client             $order
 * @property \EasyWeChat\Payment\Refund\Client            $refund
 * @property \EasyWeChat\Payment\Coupon\Client            $coupon
 * @property \EasyWeChat\Payment\Reverse\Client           $reverse
 * @property \EasyWeChat\Payment\Redpack\Client           $redpack
 * @property \EasyWeChat\BasicService\Url\Client          $url
 * @property \EasyWeChat\Payment\Transfer\Client          $transfer
 * @property \EasyWeChat\Payment\Security\Client          $security
 * @property \EasyWeChat\Payment\ProfitSharing\Client     $profit_sharing
 * @property \EasyWeChat\Payment\Contract\Client          $contract
 * @property \EasyWeChat\OfficialAccount\Auth\AccessToken $access_token
 *
 * @method mixed pay(array $attributes)
 * @method mixed authCodeToOpenid($authCode)
 */
class Application extends ServiceContainer
{
    /**
     * @var array
     */
    protected $providers = [OfficialAccount\Auth\ServiceProvider::class, BasicService\Url\ServiceProvider::class, Base\ServiceProvider::class, Bill\ServiceProvider::class, Fundflow\ServiceProvider::class, Coupon\ServiceProvider::class, Jssdk\ServiceProvider::class, Merchant\ServiceProvider::class, Order\ServiceProvider::class, Redpack\ServiceProvider::class, Refund\ServiceProvider::class, Reverse\ServiceProvider::class, Sandbox\ServiceProvider::class, Transfer\ServiceProvider::class, Security\ServiceProvider::class, ProfitSharing\ServiceProvider::class, Contract\ServiceProvider::class];
    /**
     * @var array
     */
    protected $defaultConfig = ['http' => ['base_uri' => 'https://api.mch.weixin.qq.com/']];
    /**
     * Build payment scheme for product.
     *
     * @param $productId
     *
     * @return string
     */
    public function scheme($productId)
    {
        $params = ['appid' => $this['config']->app_id, 'mch_id' => $this['config']->mch_id, 'time_stamp' => time(), 'nonce_str' => uniqid(), 'product_id' => $productId];
        $params['sign'] = Support\generate_sign($params, $this['config']->key);
        return 'weixin://wxpay/bizpayurl?' . http_build_query($params);
    }
    /**
     * @param $codeUrl
     *
     * @return string
     */
    public function codeUrlScheme($codeUrl)
    {
        return \sprintf('weixin://wxpay/bizpayurl?sr=%s', $codeUrl);
    }
    /**
     * @param \Closure $closure
     *
     * @return \Symfony\Component\HttpFoundation\Response
     *
     * @codeCoverageIgnore
     *
     * @throws \EasyWeChat\Kernel\Exceptions\Exception
     */
    public function handlePaidNotify(Closure $closure)
    {
        return (new Notify\Paid($this))->handle($closure);
    }
    /**
     * @param \Closure $closure
     *
     * @return \Symfony\Component\HttpFoundation\Response
     *
     * @codeCoverageIgnore
     *
     * @throws \EasyWeChat\Kernel\Exceptions\Exception
     */
    public function handleRefundedNotify(Closure $closure)
    {
        return (new Notify\Refunded($this))->handle($closure);
    }
    /**
     * @param \Closure $closure
     *
     * @return \Symfony\Component\HttpFoundation\Response
     *
     * @codeCoverageIgnore
     *
     * @throws \EasyWeChat\Kernel\Exceptions\Exception
     */
    public function handleScannedNotify(Closure $closure)
    {
        return (new Notify\Scanned($this))->handle($closure);
    }
    /**
     * Set sub-merchant.
     *
     * @param      $mchId
     * @param string|null $appId
     *
     * @return $this
     */
    public function setSubMerchant($mchId, $appId = null)
    {
        $this['config']->set('sub_mch_id', $mchId);
        $this['config']->set('sub_appid', $appId);
        return $this;
    }
    /**
     * @return bool
     */
    public function inSandbox()
    {
        return (bool) $this['config']->get('sandbox');
    }
    /**
     * @param string|null $endpoint
     *
     * @return string
     *
     * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
     */
    public function getKey($endpoint = null)
    {
        if ('sandboxnew/pay/getsignkey' === $endpoint) {
            return $this['config']->key;
        }
        $key = $this->inSandbox() ? $this['sandbox']->getKey() : $this['config']->key;
        if (empty($key)) {
            throw new InvalidArgumentException('config key should not empty.');
        }
        if (32 !== strlen($key)) {
            throw new InvalidArgumentException(sprintf("'%s' should be 32 chars length.", $key));
        }
        return $key;
    }
    /**
     * @param $name
     * @param array  $arguments
     *
     * @return mixed
     */
    public function __call($name, $arguments)
    {
        return call_user_func_array([$this['base'], $name], $arguments);
    }
}