Transfer.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace AliPay;
  14. use WeChat\Contracts\BasicAliPay;
  15. use WeChat\Exceptions\InvalidArgumentException;
  16. /**
  17. * 支付宝转账到账户
  18. * Class Transfer
  19. * @package AliPay
  20. */
  21. class Transfer extends BasicAliPay
  22. {
  23. /**
  24. * 旧版 向指定支付宝账户转账
  25. * @param array $options
  26. * @return mixed
  27. * @throws \WeChat\Exceptions\InvalidResponseException
  28. * @throws \WeChat\Exceptions\LocalCacheException
  29. */
  30. public function apply($options)
  31. {
  32. $this->options->set('method', 'alipay.fund.trans.toaccount.transfer');
  33. return $this->getResult($options);
  34. }
  35. /**
  36. * 新版 向指定支付宝账户转账
  37. * @param array $options
  38. * @return array|bool
  39. * @throws \WeChat\Exceptions\InvalidResponseException
  40. * @throws \WeChat\Exceptions\LocalCacheException
  41. */
  42. public function create($options = [])
  43. {
  44. $this->setAppCertSnAndRootCertSn();
  45. $this->options->set('method', 'alipay.fund.trans.uni.transfer');
  46. return $this->getResult($options);
  47. }
  48. /**
  49. * 新版 转账业务单据查询接口
  50. * @param array $options
  51. * @return array|bool
  52. * @throws \WeChat\Exceptions\InvalidResponseException
  53. * @throws \WeChat\Exceptions\LocalCacheException
  54. */
  55. public function queryResult($options = [])
  56. {
  57. $this->setAppCertSnAndRootCertSn();
  58. $this->options->set('method', 'alipay.fund.trans.common.query');
  59. return $this->getResult($options);
  60. }
  61. /**
  62. * 新版 支付宝资金账户资产查询接口
  63. * @param array $options
  64. * @return array|bool
  65. * @throws \WeChat\Exceptions\InvalidResponseException
  66. * @throws \WeChat\Exceptions\LocalCacheException
  67. */
  68. public function queryAccount($options = [])
  69. {
  70. $this->setAppCertSnAndRootCertSn();
  71. $this->options->set('method', 'alipay.fund.account.query');
  72. return $this->getResult($options);
  73. }
  74. /**
  75. * 新版 设置网关应用公钥证书SN、支付宝根证书SN
  76. */
  77. protected function setAppCertSnAndRootCertSn()
  78. {
  79. if (!$this->config->get('app_cert')) {
  80. throw new InvalidArgumentException("Missing Config -- [app_cert]");
  81. }
  82. if (!$this->config->get('root_cert')) {
  83. throw new InvalidArgumentException("Missing Config -- [root_cert]");
  84. }
  85. $this->options->set('app_cert_sn', $this->getCertSN($this->config->get('app_cert')));
  86. $this->options->set('alipay_root_cert_sn', $this->getRootCertSN($this->config->get('root_cert')));
  87. if (!$this->options->get('app_cert_sn')) {
  88. throw new InvalidArgumentException("Missing options -- [app_cert_sn]");
  89. }
  90. if (!$this->options->get('alipay_root_cert_sn')) {
  91. throw new InvalidArgumentException("Missing options -- [alipay_root_cert_sn]");
  92. }
  93. }
  94. }