OfficialAccountEnum.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. /**
  21. * 微信公众号枚举
  22. * Class OfficialAccountEnum
  23. * @package app\common\enum
  24. */
  25. class OfficialAccountEnum
  26. {
  27. /**
  28. * 菜单类型
  29. * click - 关键字
  30. * view - 跳转网页链接
  31. * miniprogram - 小程序
  32. */
  33. const MENU_TYPE = ['click', 'view', 'miniprogram'];
  34. /**
  35. * 关注回复
  36. */
  37. const REPLY_TYPE_FOLLOW = 1;
  38. /**
  39. * 关键字回复
  40. */
  41. const REPLY_TYPE_KEYWORD = 2;
  42. /**
  43. * 默认回复
  44. */
  45. const REPLY_TYPE_DEFAULT= 3;
  46. /**
  47. * 回复类型
  48. * follow - 关注回复
  49. * keyword - 关键字回复
  50. * default - 默认回复
  51. */
  52. const REPLY_TYPE = [
  53. self::REPLY_TYPE_FOLLOW => 'follow',
  54. self::REPLY_TYPE_KEYWORD => 'keyword',
  55. self::REPLY_TYPE_DEFAULT => 'default'
  56. ];
  57. /**
  58. * 匹配类型 - 全匹配
  59. */
  60. const MATCHING_TYPE_FULL = 1;
  61. /**
  62. * 匹配类型 - 模糊匹配
  63. */
  64. const MATCHING_TYPE_FUZZY = 2;
  65. /**
  66. * 消息类型 - 事件
  67. */
  68. const MSG_TYPE_EVENT = 'event';
  69. /**
  70. * 消息类型 - 文本
  71. */
  72. const MSG_TYPE_TEXT = 'text';
  73. /**
  74. * 事件类型 - 关注
  75. */
  76. const EVENT_SUBSCRIBE = 'subscribe';
  77. /**
  78. * @notes 获取类型英文名称
  79. * @param $type
  80. * @return string
  81. * @author Tab
  82. * @date 2021/7/29 16:32
  83. */
  84. public static function getReplyType($type)
  85. {
  86. return self::REPLY_TYPE[$type] ?? '';
  87. }
  88. }