Client.php 29.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
<?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\OfficialAccount\Guide;

use EasyWeChat\Kernel\BaseClient;
use EasyWeChat\Kernel\Exceptions\InvalidConfigException;
use EasyWeChat\Kernel\Support\Collection;
use Psr\Http\Message\ResponseInterface;

/**
 * Class Client.
 *
 * @author MillsGuo <millsguo@gmail.com>
 */
class Client extends BaseClient
{
    /**
     * 添加顾问
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $guideHeadImgUrl
     * @param string $guideNickname
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createAdviser($guideAccount = '', $guideOpenid = '', $guideHeadImgUrl = '', $guideNickname = '')
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        if (!empty($guideHeadImgUrl)) {
            $params['guide_headimgurl'] = $guideHeadImgUrl;
        }
        if (!empty($guideNickname)) {
            $params['guide_nickname'] = $guideNickname;
        }

        return $this->httpPostJson('cgi-bin/guide/addguideacct', $params);
    }

    /**
     * 获取顾问信息
     * @param string $guideAccount
     * @param string $guideOpenid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getAdviser($guideAccount = '', $guideOpenid = '')
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/getguideacct', $params);
    }

    /**
     * 修改顾问的昵称或头像
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $guideHeadImgUrl
     * @param string $guideNickname
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function updateAdviser($guideAccount = '', $guideOpenid = '', $guideHeadImgUrl = '', $guideNickname = '')
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        if (!empty($guideHeadImgUrl)) {
            $params['guide_headimgurl'] = $guideHeadImgUrl;
        }
        if (!empty($guideNickname)) {
            $params['guide_nickname'] = $guideNickname;
        }

        return $this->httpPostJson('cgi-bin/guide/updateguideacct', $params);
    }

    /**
     * 删除顾问
     * @param string $guideAccount
     * @param string $guideOpenid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteAdviser($guideAccount = '', $guideOpenid = '')
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/delguideacct', $params);
    }

    /**
     * 获取服务号顾问列表
     *
     * @return mixed
     *
     * @throws InvalidConfigException
     */
    public function getAdvisers($count, $page)
    {
        $params = [
            'page' => $page,
            'num' => $count
        ];

        return $this->httpPostJson('cgi-bin/guide/getguideacctlist', $params);
    }

    /**
     * 生成顾问二维码
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $qrCodeInfo
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createQrCode($guideAccount = '', $guideOpenid = '', $qrCodeInfo = '')
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        if (!empty($qrCodeInfo)) {
            $params['qrcode_info'] = $qrCodeInfo;
        }

        return $this->httpPostJson('cgi-bin/guide/guidecreateqrcode', $params);
    }

    /**
     * 获取顾问聊天记录
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @param int $beginTime
     * @param int $endTime
     * @param int $page
     * @param int $count
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerChatRecords($guideAccount = '', $guideOpenid = '', $openid = '', $beginTime = 0, $endTime = 0, $page = 1, $count = 100)
    {
        $params = [
            'page' => $page,
            'num' => $count
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);
        if (!empty($openid)) {
            $params['openid'] = $openid;
        }
        if (!empty($beginTime)) {
            $params['begin_time'] = $beginTime;
        }
        if (!empty($endTime)) {
            $params['end_time'] = $endTime;
        }

        return $this->httpPostJson('cgi-bin/guide/getguidebuyerchatrecord', $params);
    }

    /**
     * 设置快捷回复与关注自动回复
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param bool $isDelete
     * @param array $fastReplyListArray
     * @param array $guideAutoReply
     * @param array $guideAutoReplyPlus
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function setConfig($guideAccount = '', $guideOpenid = '', $isDelete = false, $fastReplyListArray = array(), $guideAutoReply = array(), $guideAutoReplyPlus = array())
    {
        $params = [
            'is_delete' => $isDelete
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);
        if (!empty($fastReplyListArray)) {
            $params['guide_fast_reply_list'] = $fastReplyListArray;
        }
        if (!empty($guideAutoReply)) {
            $params['guide_auto_reply'] = $guideAutoReply;
        }
        if (!empty($guideAutoReplyPlus)) {
            $params['guide_auto_reply_plus'] = $guideAutoReplyPlus;
        }

        return $this->httpPostJson('cgi-bin/guide/setguideconfig', $params);
    }

    /**
     * 获取快捷回复与关注自动回复
     * @param string $guideAccount
     * @param string $guideOpenid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getConfig($guideAccount = '', $guideOpenid = '')
    {
        try {
            $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        } catch (InvalidConfigException $e) {
            $params = array();
        }

        return $this->httpPostJson('cgi-bin/guide/getguideconfig', $params);
    }

    /**
     * 设置离线自动回复与敏感词
     * @param bool $isDelete
     * @param array $blackKeyword
     * @param array $guideAutoReply
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function setAdviserConfig(bool $isDelete, array $blackKeyword = [], array $guideAutoReply = [])
    {
        $params = [
            'is_delete' => $isDelete
        ];
        if (!empty($blackKeyword)) {
            $params['black_keyword'] = $blackKeyword;
        }
        if (!empty($guideAutoReply)) {
            $params['guide_auto_reply'] = $guideAutoReply;
        }

        return $this->httpPostJson('cgi-bin/guide/setguideacctconfig', $params);
    }

    /**
     * 获取离线自动回复与敏感词
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getAdviserConfig()
    {
        return $this->httpPostJson('cgi-bin/guide/getguideacctconfig', array());
    }

    /**
     * 允许微信用户复制小程序页面路径
     * @param string $wxaAppid 小程序APPID
     * @param string $wxUsername 微信用户的微信号
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function allowCopyMiniAppPath(string $wxaAppid, string $wxUsername)
    {
        $params = [
            'wxa_appid' => $wxaAppid,
            'wx_username' => $wxUsername
        ];

        return $this->httpPostJson('cgi-bin/guide/pushshowwxapathmenu', $params);
    }

    /**
     * 传入微信号或OPENID二选一
     * @param array $params
     * @param string $guideAccount
     * @param string $guideOpenid
     * @return array
     * @throws InvalidConfigException
     */
    protected function selectAccountAndOpenid($params, $guideAccount = '', $guideOpenid = '')
    {
        if (!is_array($params)) {
            throw new InvalidConfigException("传入配置参数必须为数组");
        }
        if (!empty($guideOpenid)) {
            $params['guide_openid'] = $guideOpenid;
        } elseif (!empty($guideAccount)) {
            $params['guide_account'] = $guideAccount;
        } else {
            throw new InvalidConfigException("微信号和OPENID不能同时为空");
        }

        return $params;
    }

    /**
     * 新建顾问分组
     * @param string $groupName
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createGroup(string $groupName)
    {
        $params = [
            'group_name' => $groupName
        ];

        return $this->httpPostJson('cgi-bin/guide/newguidegroup', $params);
    }

    /**
     * 获取顾问分组列表
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getGuideGroups()
    {
        return $this->httpPostJson('cgi-bin/guide/getguidegrouplist', array());
    }

    /**
     * 获取指定顾问分组信息
     * @param int $groupId
     * @param int $page
     * @param int $num
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getGroups(int $groupId, int $page, int $num)
    {
        $params = [
            'group_id' => $groupId,
            'page' => $page,
            'num' => $num
        ];

        return $this->httpPostJson('cgi-bin/guide/getgroupinfo', $params);
    }

    /**
     * 分组内添加顾问
     * @param int $groupId
     * @param string $guideAccount
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function addGroupGuide(int $groupId, string $guideAccount)
    {
        $params = [
            'group_id' => $groupId,
            'gruide_account' => $guideAccount
        ];

        return $this->httpPostJson('cgi-bin/guide/addguide2guidegroup', $params);
    }

    /**
     * 分组内删除顾问
     * @param int $groupId
     * @param string $guideAccount
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteGroupGuide(int $groupId, string $guideAccount)
    {
        $params = [
            'group_id' => $groupId,
            'guide_account' => $guideAccount
        ];

        return $this->httpPostJson('cgi-bin/guide/delguide2guidegroup', $params);
    }

    /**
     * 获取顾问所在分组
     * @param string $guideAccount
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getGuideGroup(string $guideAccount)
    {
        $params = [
            'guide_account' => $guideAccount
        ];

        return $this->httpPostJson('cgi-bin/guide/getgroupbyguide', $params);
    }

    /**
     * 删除指定顾问分组
     * @param int $groupId
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteGroup(int $groupId)
    {
        $params = [
            'group_id' => $groupId
        ];

        return $this->httpPostJson('cgi-bin/guide/delguidegroup', $params);
    }

    /**
     * 为顾问分配客户
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param array $buyerList
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createBuyerRelation(string $guideAccount, string $guideOpenid, array $buyerList)
    {
        $params = [
            'buyer_list' => $buyerList
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/addguidebuyerrelation', $params);
    }

    /**
     * 为顾问移除客户
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param array $openidList
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteBuyerRelation(string $guideAccount, string $guideOpenid, array $openidList)
    {
        $params = [
            'openid_list' => $openidList
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/delguidebuyerrelation', $params);
    }

    /**
     * 获取顾问的客户列表
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param int $page
     * @param int $num
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerRelations(string $guideAccount, string $guideOpenid, int $page, int $num)
    {
        $params = [
            'page' => $page,
            'num' => $num
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelationlist', $params);
    }

    /**
     * 为客户更换顾问
     * @param string $oldGuideTarget
     * @param string $newGuideTarget
     * @param array $openidList
     * @param bool $useTargetOpenid true使用OPENID,false使用微信号
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function rebindBuyerGuide(string $oldGuideTarget, string $newGuideTarget, array $openidList, bool $useTargetOpenid = true)
    {
        $params = [
            'openid_list' => $openidList
        ];
        if ($useTargetOpenid) {
            $params['old_guide_openid'] = $oldGuideTarget;
            $params['new_guide_openid'] = $newGuideTarget;
        } else {
            $params['old_guide_account'] = $oldGuideTarget;
            $params['new_guide_account'] = $newGuideTarget;
        }

        return $this->httpPostJson('cgi-bin/guide/rebindguideacctforbuyer', $params);
    }

    /**
     * 修改客户昵称
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @param string $nickname
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function updateBuyerRelation(string $guideAccount, string $guideOpenid, string $openid, string $nickname)
    {
        $params = [
            'openid' => $openid,
            'buyer_nickname' => $nickname
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/updateguidebuyerrelation', $params);
    }

    /**
     * 查询客户所属顾问
     * @param string $openid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerRelation(string $openid)
    {
        $params = [
            'openid' => $openid
        ];

        return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelationbybuyer', $params);
    }

    /**
     * 查询指定顾问和客户的关系
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerRelationByGuide(string $guideAccount, string $guideOpenid, string $openid)
    {
        $params = [
            'openid' => $openid
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelation', $params);
    }

    /**
     * 新建可查询的标签类型
     * @param string $tagName
     * @param array $tagValues
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function newTagOption(string $tagName, array $tagValues)
    {
        $params = [
            'tag_name' => $tagName,
            'tag_values' => $tagValues
        ];

        return $this->httpPostJson('cgi-bin/guide/newguidetagoption', $params);
    }

    /**
     * 删除指定标签类型
     * @param string $tagName
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteTagOption(string $tagName)
    {
        $params = [
            'tag_name' => $tagName
        ];

        return $this->httpPostJson('cgi-bin/guide/delguidetagoption', $params);
    }

    /**
     * 为标签添加可选值
     * @param string $tagName
     * @param array $tagValues
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createTagOption(string $tagName, array $tagValues)
    {
        $params = [
            'tag_name' => $tagName,
            'tag_values' => $tagValues
        ];

        return $this->httpPostJson('cgi-bin/guide/addguidetagoption', $params);
    }

    /**
     * 获取标签和可选值
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getTagOption()
    {
        return $this->httpPostJson('cgi-bin/guide/getguidetagoption', array());
    }

    /**
     * 为客户设置标签
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param array $openidList
     * @param string $tagValue
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function setBuyersTag(string $guideAccount, string $guideOpenid, array $openidList, string $tagValue)
    {
        $params = [
            'tag_value' => $tagValue,
            'openid_list' => $openidList
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/addguidebuyertag', $params);
    }

    /**
     * 查询客户标签
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerTags(string $guideAccount, string $guideOpenid, string $openid)
    {
        $params = [
            'openid' => $openid
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/getguidebuyertag', $params);
    }

    /**
     * 根据标签值筛选粉丝
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param int $pushCount
     * @param array $tagValues
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerByTag(string $guideAccount, string $guideOpenid, int $pushCount = 0, array $tagValues = array())
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        if ($pushCount > 0) {
            $params['push_count'] = $pushCount;
        }
        if (count($tagValues) > 0) {
            $params['tag_values'] = $tagValues;
        }

        return $this->httpPostJson('cgi-bin/guide/queryguidebuyerbytag', $params);
    }

    /**
     * 删除客户标签
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $tagValue
     * @param array $openidList
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteBuyerTag(string $guideAccount, string $guideOpenid, string $tagValue, array $openidList)
    {
        $params = [
            'tag_value' => $tagValue
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);
        if (count($openidList) > 0) {
            $params['openid_list'] = $openidList;
        }

        return $this->httpPostJson('cgi-bin/guide/delguidebuyertag', $params);
    }

    /**
     * 设置自定义客户信息
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @param array $displayTagList
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function setBuyerDisplayTags(string $guideAccount, string $guideOpenid, string $openid, array $displayTagList)
    {
        $params = [
            'openid' => $openid,
            'display_tag_list' => $displayTagList
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/addguidebuyerdisplaytag', $params);
    }

    /**
     * 获取自定义客户信息
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $openid
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getBuyerDisplayTags(string $guideAccount, string $guideOpenid, string $openid)
    {
        $params = [
            'openid' => $openid
        ];
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/getguidebuyerdisplaytag', $params);
    }

    /**
     * 添加小程序卡片素材
     * @param string $mediaId
     * @param string $title
     * @param string $path
     * @param string $appid
     * @param int $type
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createCardMaterial(string $mediaId, string $title, string $path, string $appid, int $type = 0)
    {
        $params = [
            'media_id' => $mediaId,
            'type' => $type,
            'title' => $title,
            'path' => $path,
            'appid' => $appid
        ];

        return $this->httpPostJson('cgi-bin/guide/setguidecardmaterial', $params);
    }

    /**
     * 查询小程序卡片素材
     * @param int $type
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getCardMaterial(int $type = 0)
    {
        $params = [
            'type' => $type
        ];

        return $this->httpPostJson('cgi-bin/guide/getguidecardmaterial', $params);
    }

    /**
     * 删除小程序卡片素材
     * @param string $title
     * @param string $path
     * @param string $appid
     * @param int $type
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteCardMaterial(string $title, string $path, string $appid, int $type = 0)
    {
        $params = [
            'type' => $type,
            'title' => $title,
            'path' => $path,
            'appid' => $appid
        ];

        return $this->httpPostJson('cgi-bin/guide/delguidecardmaterial', $params);
    }

    /**
     * 添加图片素材
     * @param string $mediaId
     * @param int $type
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createImageMaterial(string $mediaId, int $type = 0)
    {
        $params = [
            'media_id' => $mediaId,
            'type' => $type
        ];

        return $this->httpPostJson('cgi-bin/guide/setguideimagematerial', $params);
    }

    /**
     * 查询图片素材
     * @param int $type
     * @param int $start
     * @param int $num
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getImageMaterial(int $type, int $start, int $num)
    {
        $params = [
            'type' => $type,
            'start' => $start,
            'num' => $num
        ];

        return $this->httpPostJson('cgi-bin/guide/getguideimagematerial', $params);
    }

    /**
     * 删除图片素材
     * @param int $type
     * @param string $picUrl
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteImageMaterial(int $type, string $picUrl)
    {
        $params = [
            'type' => $type,
            'picurl' => $picUrl
        ];

        return $this->httpPostJson('cgi-bin/guide/delguideimagematerial', $params);
    }

    /**
     * 添加文字素材
     * @param int $type
     * @param string $word
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createWordMaterial(int $type, string $word)
    {
        $params = [
            'type' => $type,
            'word' => $word
        ];

        return $this->httpPostJson('cgi-bin/guide/setguidewordmaterial', $params);
    }

    /**
     * 查询文字素材
     * @param int $type
     * @param int $start
     * @param int $num
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getWordMaterial(int $type, int $start, int $num)
    {
        $params = [
            'type' => $type,
            'start' => $start,
            'num' => $num
        ];

        return $this->httpPostJson('cgi-bin/guide/getguidewordmaterial', $params);
    }

    /**
     * 删除文字素材
     * @param int $type
     * @param string $word
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function deleteWordMaterial(int $type, string $word)
    {
        $params = [
            'type' => $type,
            'word' => $word
        ];

        return $this->httpPostJson('cgi-bin/guide/delguidewordmaterial', $params);
    }

    /**
     * 添加群发任务,为指定顾问添加群发任务
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param string $taskName
     * @param string $taskRemark
     * @param int $pushTime
     * @param array $openidArray
     * @param array $materialArray
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function createMasSendJob(string $guideAccount, string $guideOpenid, string $taskName, string $taskRemark, int $pushTime, array $openidArray, array $materialArray)
    {
        $params = [
            'task_name' => $taskName,
            'push_time' => $pushTime,
            'openid' => $openidArray,
            'material' => $materialArray
        ];
        if (!empty($taskRemark)) {
            $params['task_remark'] = $taskRemark;
        }
        $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid);

        return $this->httpPostJson('cgi-bin/guide/addguidemassendjob', $params);
    }

    /**
     * 获取群发任务列表
     * @param string $guideAccount
     * @param string $guideOpenid
     * @param array $taskStatus
     * @param int $offset
     * @param int $limit
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getMasSendJobs(string $guideAccount, string $guideOpenid, array $taskStatus = [], int $offset = 0, int $limit = 50)
    {
        $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid);
        if (!empty($taskStatus)) {
            $params['task_status'] = $taskStatus;
        }
        if ($offset > 0) {
            $params['offset'] = $offset;
        }
        if ($limit != 50) {
            $params['limit'] = $limit;
        }

        return $this->httpPostJson('cgi-bin/guide/getguidemassendjoblist', $params);
    }

    /**
     * 获取指定群发任务信息
     * @param string $taskId
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function getMasSendJob(string $taskId)
    {
        $params = [
            'task_id' => $taskId
        ];

        return $this->httpPostJson('cgi-bin/guide/getguidemassendjob', $params);
    }

    /**
     * 修改群发任务
     * @param string $taskId
     * @param string $taskName
     * @param string $taskRemark
     * @param int $pushTime
     * @param array $openidArray
     * @param array $materialArray
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function updateMasSendJob(string $taskId, string $taskName, string $taskRemark, int $pushTime, array $openidArray, array $materialArray)
    {
        $params = [
            'task_id' => $taskId
        ];
        if (!empty($taskName)) {
            $params['task_name'] = $taskName;
        }
        if (!empty($taskRemark)) {
            $params['task_remark'] = $taskRemark;
        }
        if (!empty($pushTime)) {
            $params['push_time'] = $pushTime;
        }
        if (!empty($openidArray)) {
            $params['openid'] = $openidArray;
        }
        if (!empty($materialArray)) {
            $params['material'] = $materialArray;
        }

        return $this->httpPostJson('cgi-bin/guide/updateguidemassendjob', $params);
    }

    /**
     * 取消群发任务
     * @param string $taskId
     * @return array|Collection|object|ResponseInterface|string
     * @throws InvalidConfigException
     */
    public function cancelMasSendJob(string $taskId)
    {
        $params = [
            'task_id' => $taskId
        ];

        return $this->httpPostJson('cgi-bin/guide/cancelguidemassendjob', $params);
    }
}