<?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\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\OfficialAccount\Auth\AccessToken $access_token
*
* @method mixed pay(array $attributes)
* @method mixed authCodeToOpenid(string $authCode)
*/
class Application extends ServiceContainer
{
/**
* @var array
*/
protected $providers = [
OfficialAccount\Auth\ServiceProvider::class,
BasicService\Url\ServiceProvider::class,
Base\ServiceProvider::class,
Bill\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,
];
/**
* @var array
*/
protected $defaultConfig = [
'http' => [
'base_uri' => 'https://api.mch.weixin.qq.com/',
],
];
/**
* Build payment scheme for product.
*
* @param string $productId
*
* @return string
*/
public function scheme(string $productId): string
{
$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 \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 string $mchId
* @param string|null $appId
*
* @return $this
*/
public function setSubMerchant(string $mchId, string $appId = null)
{
$this['config']->set('sub_mch_id', $mchId);
$this['config']->set('sub_appid', $appId);
return $this;
}
/**
* @return bool
*/
public function inSandbox(): bool
{
return (bool) $this['config']->get('sandbox');
}
/**
* @param string|null $endpoint
*
* @return string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
*/
public function getKey(string $endpoint = null)
{
if ('sandboxnew/pay/getsignkey' === $endpoint) {
return $this['config']->key;
}
$key = $this->inSandbox() ? $this['sandbox']->getKey() : $this['config']->key;
if (32 !== strlen($key)) {
throw new InvalidArgumentException(sprintf("'%s' should be 32 chars length.", $key));
}
return $key;
}
/**
* @param string $name
* @param array $arguments
*
* @return mixed
*/
public function __call($name, $arguments)
{
return call_user_func_array([$this['base'], $name], $arguments);
}
}