99 lines
2.5 KiB
PHP
Executable File
99 lines
2.5 KiB
PHP
Executable File
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeshop100%开源免费商用商城系统
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | 商业版本务必购买商业授权,以免引起法律纠纷
|
||
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
||
// | gitee下载:https://gitee.com/likeshop_gitee
|
||
// | github下载:https://github.com/likeshop-github
|
||
// | 访问官网:https://www.likeshop.cn
|
||
// | 访问社区:https://home.likeshop.cn
|
||
// | 访问手册:http://doc.likeshop.cn
|
||
// | 微信公众号:likeshop技术社区
|
||
// | likeshop团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeshopTeam
|
||
// +----------------------------------------------------------------------
|
||
namespace app\common\enum;
|
||
|
||
/**
|
||
* 微信公众号枚举
|
||
* Class OfficialAccountEnum
|
||
* @package app\common\enum
|
||
*/
|
||
class OfficialAccountEnum
|
||
{
|
||
/**
|
||
* 菜单类型
|
||
* click - 关键字
|
||
* view - 跳转网页链接
|
||
* miniprogram - 小程序
|
||
*/
|
||
const MENU_TYPE = ['click', 'view', 'miniprogram'];
|
||
|
||
/**
|
||
* 关注回复
|
||
*/
|
||
const REPLY_TYPE_FOLLOW = 1;
|
||
|
||
/**
|
||
* 关键字回复
|
||
*/
|
||
const REPLY_TYPE_KEYWORD = 2;
|
||
|
||
/**
|
||
* 默认回复
|
||
*/
|
||
const REPLY_TYPE_DEFAULT= 3;
|
||
|
||
/**
|
||
* 回复类型
|
||
* follow - 关注回复
|
||
* keyword - 关键字回复
|
||
* default - 默认回复
|
||
*/
|
||
const REPLY_TYPE = [
|
||
self::REPLY_TYPE_FOLLOW => 'follow',
|
||
self::REPLY_TYPE_KEYWORD => 'keyword',
|
||
self::REPLY_TYPE_DEFAULT => 'default'
|
||
];
|
||
|
||
/**
|
||
* 匹配类型 - 全匹配
|
||
*/
|
||
const MATCHING_TYPE_FULL = 1;
|
||
|
||
/**
|
||
* 匹配类型 - 模糊匹配
|
||
*/
|
||
const MATCHING_TYPE_FUZZY = 2;
|
||
|
||
/**
|
||
* 消息类型 - 事件
|
||
*/
|
||
const MSG_TYPE_EVENT = 'event';
|
||
|
||
/**
|
||
* 消息类型 - 文本
|
||
*/
|
||
const MSG_TYPE_TEXT = 'text';
|
||
|
||
/**
|
||
* 事件类型 - 关注
|
||
*/
|
||
const EVENT_SUBSCRIBE = 'subscribe';
|
||
|
||
/**
|
||
* @notes 获取类型英文名称
|
||
* @param $type
|
||
* @return string
|
||
* @author Tab
|
||
* @date 2021/7/29 16:32
|
||
*/
|
||
public static function getReplyType($type)
|
||
{
|
||
return self::REPLY_TYPE[$type] ?? '';
|
||
}
|
||
} |