buildadmin/app/api/common.php
2023-06-25 02:35:30 +08:00

38 lines
1011 B
PHP

<?php
use ba\Filesystem;
use app\admin\library\module\Server;
if (!function_exists('get_account_verification_type')) {
/**
* 获取可用的账户验证方式
* 用于:用户找回密码|用户注册
* @return string[] email=电子邮件,mobile=手机短信验证
* @throws Throwable
*/
function get_account_verification_type(): array
{
$types = [];
// 电子邮件,检查后台系统邮件配置是否全部填写
$sysMailConfig = get_sys_config('', 'mail');
$configured = true;
foreach ($sysMailConfig as $item) {
if (!$item) {
$configured = false;
}
}
if ($configured) {
$types[] = 'email';
}
// 手机号,检查是否安装短信模块
$sms = Server::getIni(Filesystem::fsFit(root_path() . 'modules/sms/'));
if ($sms && $sms['state'] == 1) {
$types[] = 'mobile';
}
return $types;
}
}