$value) { if (!in_array($key, [ 'reg', 'reg_identity', 'reg_invite', 'temp_account_alias', 'login_code', 'password_policy', 'project_invite', 'chat_information', 'anon_message', 'voice2text', 'translation', 'e2e_message', 'msg_rev_limit', 'msg_edit_limit', 'auto_archived', 'archived_day', 'task_visible', 'task_default_time', 'all_group_mute', 'all_group_autoin', 'user_private_chat_mute', 'user_group_chat_mute', 'system_alias', 'system_welcome', 'image_compress', 'image_quality', 'image_save_local', 'start_home', 'file_upload_limit', 'unclaimed_task_reminder', 'unclaimed_task_reminder_time', ])) { unset($all[$key]); } } $all['archived_day'] = floatval($all['archived_day']); if ($all['auto_archived'] == 'open') { if ($all['archived_day'] <= 0) { return Base::retError('自动归档时间不可小于1天!'); } elseif ($all['archived_day'] > 100) { return Base::retError('自动归档时间不可大于100天!'); } } if ($all['voice2text'] == 'open' && !Setting::AIOpen()) { return Base::retError('开启语音转文字功能需要在应用中开启 ChatGPT AI 机器人。'); } if ($all['translation'] == 'open' && !Setting::AIOpen()) { return Base::retError('开启翻译功能需要在应用中开启 ChatGPT AI 机器人。'); } if ($all['system_alias'] == env('APP_NAME')) { $all['system_alias'] = ''; } if ($all['system_welcome'] == '欢迎您,{username}') { $all['system_welcome'] = ''; } $setting = Base::setting('system', Base::newTrim($all)); } else { $setting = Base::setting('system'); } // if ($type == 'all' || $type == 'save') { User::auth('admin'); $setting['reg_invite'] = $setting['reg_invite'] ?: Base::generatePassword(); } else { if (isset($setting['reg_invite'])) unset($setting['reg_invite']); } // $setting['reg'] = $setting['reg'] ?: 'open'; $setting['reg_identity'] = $setting['reg_identity'] ?: 'normal'; $setting['temp_account_alias'] = $setting['temp_account_alias'] ?: ''; $setting['login_code'] = $setting['login_code'] ?: 'auto'; $setting['password_policy'] = $setting['password_policy'] ?: 'simple'; $setting['project_invite'] = $setting['project_invite'] ?: 'open'; $setting['chat_information'] = $setting['chat_information'] ?: 'optional'; $setting['anon_message'] = $setting['anon_message'] ?: 'open'; $setting['voice2text'] = $setting['voice2text'] ?: 'close'; $setting['translation'] = $setting['translation'] ?: 'close'; $setting['e2e_message'] = $setting['e2e_message'] ?: 'close'; $setting['msg_rev_limit'] = $setting['msg_rev_limit'] ?: ''; $setting['msg_edit_limit'] = $setting['msg_edit_limit'] ?: ''; $setting['auto_archived'] = $setting['auto_archived'] ?: 'close'; $setting['archived_day'] = floatval($setting['archived_day']) ?: 7; $setting['task_visible'] = $setting['task_visible'] ?: 'close'; $setting['all_group_mute'] = $setting['all_group_mute'] ?: 'open'; $setting['all_group_autoin'] = $setting['all_group_autoin'] ?: 'yes'; $setting['user_private_chat_mute'] = $setting['user_private_chat_mute'] ?: 'open'; $setting['user_group_chat_mute'] = $setting['user_group_chat_mute'] ?: 'open'; $setting['start_home'] = $setting['start_home'] ?: 'close'; $setting['file_upload_limit'] = $setting['file_upload_limit'] ?: ''; $setting['unclaimed_task_reminder'] = $setting['unclaimed_task_reminder'] ?: 'close'; $setting['unclaimed_task_reminder_time'] = $setting['unclaimed_task_reminder_time'] ?: ''; $setting['server_closeai'] = env("SERVER_CLOSEAI") ?: 'open'; $setting['server_timezone'] = config('app.timezone'); $setting['server_version'] = Base::getVersion(); // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/email 02. 获取邮箱设置、保存邮箱设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__email * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['smtp_server', 'port', 'account', 'password', 'reg_verify', 'notice_msg', 'msg_unread_user_minute', 'msg_unread_group_minute', 'ignore_addr']) * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__email() { $user = User::auth(); // $type = trim(Request::input('type')); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $user->identity('admin'); $all = Request::input(); foreach ($all as $key => $value) { if (!in_array($key, [ 'smtp_server', 'port', 'account', 'password', 'reg_verify', 'notice_msg', 'msg_unread_user_minute', 'msg_unread_group_minute', 'msg_unread_time_ranges', 'ignore_addr' ])) { unset($all[$key]); } } $ranges = array_map(function ($item) { return !is_array($item) ? explode(',', $item) : $item; }, is_array($all['msg_unread_time_ranges']) ? $all['msg_unread_time_ranges'] : []); $all['msg_unread_time_ranges'] = array_values(array_filter($ranges, function ($item) { return count($item) == 2 && Timer::isTime($item[0]) && Timer::isTime($item[1]); })); $setting = Base::setting('emailSetting', Base::newTrim($all)); } else { $setting = Base::setting('emailSetting'); } // $setting['smtp_server'] = $setting['smtp_server'] ?: ''; $setting['port'] = $setting['port'] ?: ''; $setting['account'] = $setting['account'] ?: ''; $setting['password'] = $setting['password'] ?: ''; $setting['reg_verify'] = $setting['reg_verify'] ?: 'close'; $setting['notice_msg'] = $setting['notice_msg'] ?: 'close'; $setting['msg_unread_user_minute'] = intval($setting['msg_unread_user_minute'] ?? -1); $setting['msg_unread_group_minute'] = intval($setting['msg_unread_group_minute'] ?? -1); $setting['msg_unread_time_ranges'] = is_array($setting['msg_unread_time_ranges']) ? $setting['msg_unread_time_ranges'] : [[]]; $setting['ignore_addr'] = $setting['ignore_addr'] ?: ''; // if ($type != 'save' && !in_array('admin', $user->identity)) { $setting = array_intersect_key($setting, array_flip(['reg_verify'])); } // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/meeting 03. 获取会议设置、保存会议设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__meeting * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['open', 'appid', 'app_certificate', 'api_key', 'api_secret']) * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__meeting() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $all = Request::input(); foreach ($all as $key => $value) { if (!in_array($key, [ 'open', 'appid', 'app_certificate', 'api_key', 'api_secret', ])) { unset($all[$key]); } } if ($all['open'] === 'open' && (!$all['appid'] || !$all['app_certificate'])) { return Base::retError('请填写基本配置'); } $setting = Base::setting('meetingSetting', Base::newTrim($all)); } else { $setting = Base::setting('meetingSetting'); } // $setting['open'] = $setting['open'] ?: 'close'; if (env("SYSTEM_SETTING") == 'disabled') { $setting['appid'] = substr($setting['appid'], 0, 4) . str_repeat('*', strlen($setting['appid']) - 8) . substr($setting['appid'], -4); $setting['app_certificate'] = substr($setting['app_certificate'], 0, 4) . str_repeat('*', strlen($setting['app_certificate']) - 8) . substr($setting['app_certificate'], -4); $setting['api_key'] = substr($setting['api_key'], 0, 4) . str_repeat('*', strlen($setting['api_key']) - 8) . substr($setting['api_key'], -4); $setting['api_secret'] = substr($setting['api_secret'], 0, 4) . str_repeat('*', strlen($setting['api_secret']) - 8) . substr($setting['api_secret'], -4); } // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/aibot 04. 获取会议设置、保存AI机器人设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__aibot * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:[...]) * @apiParam {String} filter 过滤字段(可选) * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__aibot() { User::auth('admin'); // $type = trim(Request::input('type')); $filter = trim(Request::input('filter')); $setting = Base::setting('aibotSetting'); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } Base::checkClientVersion('0.41.11'); $all = Request::input(); foreach ($all as $key => $value) { if (isset($setting[$key])) { $setting[$key] = $value; } } $setting = Base::setting('aibotSetting', Base::newTrim($setting)); } if ($filter) { $setting = array_filter($setting, function($value, $key) use ($filter) { return str_starts_with($key, $filter); }, ARRAY_FILTER_USE_BOTH); } // if (env("SYSTEM_SETTING") == 'disabled') { foreach ($setting as $key => $item) { if (empty($item)) { continue; } if (str_ends_with($key, '_key') || str_ends_with($key, '_secret')) { $setting[$key] = substr($item, 0, 4) . str_repeat('*', strlen($item) - 8) . substr($item, -4); } } } // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/aibot_models 05. 获取AI模型 * * @apiDescription 获取所有AI机器人模型设置 * @apiVersion 1.0.0 * @apiGroup system * @apiName aibot_models * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__aibot_models() { $setting = Base::setting('aibotSetting'); $setting = array_filter($setting, function($value, $key) { return str_ends_with($key, '_models') || str_ends_with($key, '_model'); }, ARRAY_FILTER_USE_BOTH); return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/aibot_defmodels 06. 获取AI默认模型 * * @apiDescription 获取AI机器人默认模型 * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__aibot_defmodels * * @apiParam {String} type AI类型 * @apiParam {String} [base_url] 基础URL(仅 type=ollama 时有效) * @apiParam {String} [key] Key(仅 type=ollama 时有效) * @apiParam {String} [agency] 使用代理(仅 type=ollama 时有效) * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__aibot_defmodels() { $type = trim(Request::input('type')); if ($type == 'ollama') { $baseUrl = trim(Request::input('base_url')); $key = trim(Request::input('key')); $agency = trim(Request::input('agency')); if (empty($baseUrl)) { return Base::retError('请先填写 Base URL'); } return Extranet::ollamaModels($baseUrl, $key, $agency); } $models = Setting::AIDefaultModels($type); if (empty($models)) { return Base::retError('未找到默认模型'); } return Base::retSuccess('success', [ 'models' => $models ]); } /** * @api {get} api/system/setting/checkin 07. 获取签到设置、保存签到设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__checkin * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['open', 'time', 'advance', 'delay', 'remindin', 'remindexceed', 'edit', 'modes', 'key']) * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__checkin() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $all = Request::input(); foreach ($all as $key => $value) { if (!in_array($key, [ 'open', 'time', 'advance', 'delay', 'remindin', 'remindexceed', 'edit', 'face_upload', 'face_remark', 'face_retip', 'locat_remark', 'locat_bd_lbs_key', 'locat_bd_lbs_point', // 格式:{"lng":116.404, "lat":39.915, "radius":500} 'manual_remark', 'modes', 'key', ])) { unset($all[$key]); } } if ($all['open'] === 'close') { $all['key'] = md5(Base::generatePassword(32)); $all['face_key'] = md5(Base::generatePassword(32)); } else { $botUser = User::botGetOrCreate('check-in'); if (!$botUser) { return Base::retError('创建签到机器人失败'); } if (in_array('locat', $all['modes'])) { if (empty($all['locat_bd_lbs_key'])) { return Base::retError('请填写百度地图AK'); } if (!is_array($all['locat_bd_lbs_point'])) { return Base::retError('请选择允许签到位置'); } $all['locat_bd_lbs_point']['radius'] = intval($all['locat_bd_lbs_point']['radius']); if (empty($all['locat_bd_lbs_point']['lng']) || empty($all['locat_bd_lbs_point']['lat']) || empty($all['locat_bd_lbs_point']['radius'])) { return Base::retError('请选择有效的签到位置'); } } } if ($all['modes']) { $all['modes'] = array_intersect($all['modes'], ['auto', 'manual', 'locat', 'face']); } $setting = Base::setting('checkinSetting', Base::newTrim($all)); } else { $setting = Base::setting('checkinSetting'); } // if (empty($setting['key'])) { $setting['key'] = md5(Base::generatePassword(32)); Base::setting('checkinSetting', $setting); } if (empty($setting['face_key'])) { $setting['face_key'] = md5(Base::generatePassword(32)); Base::setting('checkinSetting', $setting); } // $setting['open'] = $setting['open'] ?: 'close'; $setting['face_upload'] = $setting['face_upload'] ?: 'close'; $setting['face_remark'] = $setting['face_remark'] ?: Doo::translate('考勤机'); $setting['face_retip'] = $setting['face_retip'] ?: 'open'; $setting['locat_remark'] = $setting['locat_remark'] ?: Doo::translate('定位签到'); $setting['locat_bd_lbs_point'] = is_array($setting['locat_bd_lbs_point']) ? $setting['locat_bd_lbs_point'] : ['radius' => 500]; $setting['manual_remark'] = $setting['manual_remark'] ?: Doo::translate('手动签到'); $setting['time'] = $setting['time'] ? Base::json2array($setting['time']) : ['09:00', '18:00']; $setting['advance'] = intval($setting['advance']) ?: 120; $setting['delay'] = intval($setting['delay']) ?: 120; $setting['remindin'] = intval($setting['remindin']) ?: 5; $setting['remindexceed'] = intval($setting['remindexceed']) ?: 10; $setting['edit'] = $setting['edit'] ?: 'close'; $setting['modes'] = is_array($setting['modes']) ? $setting['modes'] : []; $setting['cmd'] = "curl -sSL '" . Base::fillUrl("api/public/checkin/install?key={$setting['key']}") . "' | sh"; if (Base::judgeClientVersion('0.34.67')) { $setting['cmd'] = base64_encode($setting['cmd']); } // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/apppush 08. 获取APP推送设置、保存APP推送设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__apppush * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['push', 'ios_key', 'ios_secret', 'android_key', 'android_secret']) * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__apppush() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $all = Request::input(); foreach ($all as $key => $value) { if (!in_array($key, [ 'push', 'ios_key', 'ios_secret', 'android_key', 'android_secret', ])) { unset($all[$key]); } } $setting = Base::setting('appPushSetting', Base::newTrim($all)); } else { $setting = Base::setting('appPushSetting'); } // $setting['push'] = $setting['push'] ?: 'close'; // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/thirdaccess 09. 第三方帐号(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__thirdaccess * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['ldap_open', 'ldap_host', 'ldap_port', 'ldap_password', 'ldap_user_dn', 'ldap_base_dn', 'ldap_sync_local']) * - testldap: 测试ldap连接 * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__thirdaccess() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'testldap') { $all = Base::newTrim(Request::input()); $connection = Container::getDefaultConnection(); try { $connection->setConfiguration([ "hosts" => [$all['ldap_host']], "port" => intval($all['ldap_port']), "password" => $all['ldap_password'], "username" => $all['ldap_user_dn'], "base_dn" => $all['ldap_base_dn'], ]); if ($connection->auth()->attempt($all['ldap_user_dn'], $all['ldap_password'])) { return Base::retSuccess('验证通过'); } else { return Base::retError('验证失败'); } } catch (LdapRecordException $e) { return Base::retError($e->getMessage() ?: "验证失败:未知错误", config("ldap.connections.default")); } } elseif ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $all = Base::newTrim(Request::input()); foreach ($all as $key => $value) { if (!in_array($key, [ 'ldap_open', 'ldap_host', 'ldap_port', 'ldap_password', 'ldap_user_dn', 'ldap_base_dn', 'ldap_sync_local' ])) { unset($all[$key]); } } $all['ldap_port'] = intval($all['ldap_port']) ?: 389; $setting = Base::setting('thirdAccessSetting', Base::newTrim($all)); } else { $setting = Base::setting('thirdAccessSetting'); } // $setting['ldap_open'] = $setting['ldap_open'] ?: 'close'; $setting['ldap_port'] = intval($setting['ldap_port']) ?: 389; $setting['ldap_sync_local'] = $setting['ldap_sync_local'] ?: 'close'; // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/setting/file 10. 文件设置(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName setting__file * * @apiParam {String} type * - get: 获取(默认) * - save: 保存设置(参数:['permission_pack_type', 'permission_pack_userids']) * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function setting__file() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'save') { if (env("SYSTEM_SETTING") == 'disabled') { return Base::retError('当前环境禁止修改'); } $all = Base::newTrim(Request::input()); foreach ($all as $key => $value) { if (!in_array($key, [ 'permission_pack_type', 'permission_pack_userids' ])) { unset($all[$key]); } } $setting = Base::setting('fileSetting', Base::newTrim($all)); } else { $setting = Base::setting('fileSetting'); } // return Base::retSuccess('success', $setting ?: json_decode('{}')); } /** * @api {get} api/system/demo 11. 获取演示帐号 * * @apiVersion 1.0.0 * @apiGroup system * @apiName demo * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function demo() { $demo_account = env('DEMO_ACCOUNT'); $demo_password = env('DEMO_PASSWORD'); if (empty($demo_account) || empty($demo_password)) { return Base::retError('No demo account'); } return Base::retSuccess('success', [ 'account' => $demo_account, 'password' => $demo_password, ]); } /** * @api {post} api/system/priority 12. 任务优先级 * * @apiDescription 获取任务优先级、保存任务优先级 * @apiVersion 1.0.0 * @apiGroup system * @apiName priority * * @apiParam {String} type * - get: 获取(默认) * - save: 保存(限管理员) * @apiParam {Array} list 优先级数据,格式:[{name,color,days,priority}] * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function priority() { $type = trim(Request::input('type')); if ($type == 'save') { User::auth('admin'); $list = Request::input('list'); $array = []; if (empty($list) || !is_array($list)) { return Base::retError('参数错误'); } foreach ($list AS $item) { if (empty($item['name']) || empty($item['color']) || empty($item['priority'])) { continue; } $array[] = [ 'name' => $item['name'], 'color' => $item['color'], 'days' => intval($item['days']), 'priority' => intval($item['priority']), ]; } if (empty($array)) { return Base::retError('参数为空'); } $setting = Base::setting('priority', $array); } else { $setting = Base::setting('priority'); } // return Base::retSuccess('success', $setting); } /** * @api {post} api/system/column/template 13. 创建项目模板 * * @apiDescription 获取创建项目模板、保存创建项目模板 * @apiVersion 1.0.0 * @apiGroup system * @apiName column__template * * @apiParam {String} type * - get: 获取(默认) * - save: 保存(限管理员) * @apiParam {Array} list 优先级数据,格式:[{name,columns}] * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function column__template() { $type = trim(Request::input('type')); if ($type == 'save') { User::auth('admin'); $list = Request::input('list'); $array = []; if (empty($list) || !is_array($list)) { return Base::retError('参数错误'); } foreach ($list AS $item) { if (empty($item['name']) || empty($item['columns'])) { continue; } $array[] = [ 'name' => $item['name'], 'columns' => array_values(array_filter(array_unique(explode(",", $item['columns'])))) ]; } if (empty($array)) { return Base::retError('参数为空'); } $setting = Base::setting('columnTemplate', $array); } else { $setting = Base::setting('columnTemplate'); } // return Base::retSuccess('success', $setting); } /** * @api {post} api/system/license 14. License * * @apiDescription 获取License信息、保存License(限管理员) * @apiVersion 1.0.0 * @apiGroup system * @apiName license * * @apiParam {String} type * - get: 获取 * - save: 保存 * @apiParam {String} license License 原文 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function license() { User::auth('admin'); // $type = trim(Request::input('type')); if ($type == 'save') { $license = Request::input('license'); Doo::licenseSave($license); } // $data = [ 'license' => Doo::licenseContent(), 'info' => Doo::license(), 'macs' => Doo::macs(), 'doo_sn' => Doo::dooSN(), 'user_count' => User::whereBot(0)->whereNull('disable_at')->count(), 'error' => [] ]; if ($data['info']['people'] > 3) { // 小于3人的License不检查 if ($data['info']['sn'] != $data['doo_sn']) { $data['error'][] = '终端SN与License不匹配'; } if ($data['info']['mac']) { $approved = false; foreach ($data['info']['mac'] as $mac) { if (in_array($mac, $data['macs'])) { $approved = true; break; } } if (!$approved) { $data['error'][] = '终端MAC与License不匹配'; } } } if ($data['info']['people'] > 0 && $data['user_count'] > $data['info']['people']) { $data['error'][] = '终端用户数超过License限制'; } if ($data['info']['expired_at'] && strtotime($data['info']['expired_at']) <= Timer::time()) { $data['error'][] = '终端License已过期'; } // if ($type === 'error') { $data = [ 'error' => $data['error'] ]; } // return Base::retSuccess('success', $data); } /** * @api {get} api/system/get/info 15. 获取终端详细信息 * * @apiVersion 1.0.0 * @apiGroup system * @apiName get__info * * @apiParam {String} key key值 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__info() { if (Request::input("key") !== env('APP_KEY')) { return []; } return Base::retSuccess('success', [ 'ip' => Base::getIp(), 'ip-info' => Extranet::getIpInfo(Base::getIp()), 'ip-gcj02' => Extranet::getIpGcj02(Base::getIp()), 'ip-iscn' => Base::isCnIp(Base::getIp()), 'header' => Request::header(), 'token' => Doo::userToken(), 'url' => url('') . Base::getUrl(), ]); } /** * @api {get} api/system/get/ip 16. 获取IP地址 * * @apiVersion 1.0.0 * @apiGroup system * @apiName get__ip * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__ip() { return Base::getIp(); } /** * @api {get} api/system/get/cnip 17. 是否中国IP地址 * * @apiVersion 1.0.0 * @apiGroup system * @apiName get__cnip * * @apiParam {String} ip IP值 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__cnip() { return Base::isCnIp(Request::input('ip')); } /** * @api {get} api/system/get/ipgcj02 18. 获取IP地址经纬度 * * @apiVersion 1.0.0 * @apiGroup system * @apiName get__ipgcj02 * * @apiParam {String} ip IP值 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__ipgcj02() { return Extranet::getIpGcj02(Request::input("ip")); } /** * @api {get} api/system/get/ipinfo 19. 获取IP地址详细信息 * * @apiVersion 1.0.0 * @apiGroup system * @apiName get__ipinfo * * @apiParam {String} ip IP值 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__ipinfo() { return Extranet::getIpInfo(Request::input("ip")); } /** * @api {post} api/system/imgupload 20. 上传图片 * * @apiDescription 需要token身份 * @apiVersion 1.0.0 * @apiGroup system * @apiName imgupload * * @apiParam {File} image post-图片对象 * @apiParam {String} [image64] post-图片base64(与'image'二选一) * @apiParam {String} filename post-文件名 * @apiParam {Number} [width] 压缩图片宽(默认0) * @apiParam {Number} [height] 压缩图片高(默认0) * @apiParam {String} [whcut] 压缩方式(等比缩放) * - cover:完全覆盖容器,可能图片部分不可见(width、height必须大于0) * - contain:完全装入容器,可能容器部分显示空白(width、height必须大于0) * - percentage:完全装入容器,可能容器有一边尺寸不足(默认,假如:width=200、height=0,则宽度最大不超过200、高度自动) * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function imgupload() { if (User::userid() === 0) { return Base::retError('身份失效,等重新登录'); } $width = intval(Request::input('width')); $height = intval(Request::input('height')); $whcut = Request::input('whcut'); $whcut = match (strval($whcut)) { '1' => 'cover', '0' => 'contain', 'cover', 'contain' => $whcut, default => 'percentage', }; $scale = [$width ?: 2160, $height ?: 4160, $whcut]; $path = "uploads/user/picture/" . User::userid() . "/" . date("Ym") . "/"; $image64 = trim(Request::input('image64')); $fileName = trim(Request::input('filename')); if ($image64) { $data = Base::image64save([ "image64" => $image64, "path" => $path, "fileName" => $fileName, "scale" => $scale, "quality" => true ]); } else { $data = Base::upload([ "file" => Request::file('image'), "type" => 'image', "path" => $path, "fileName" => $fileName, "scale" => $scale, "quality" => true ]); } if (Base::isError($data)) { return Base::retError($data['msg']); } else { return Base::retSuccess('success', $data['data']); } } /** * @api {get} api/system/get/imgview 21. 浏览图片空间 * * @apiDescription 需要token身份 * @apiVersion 1.0.0 * @apiGroup system * @apiName imgview * * @apiParam {String} path 路径 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function imgview() { if (User::userid() === 0) { return Base::retError('身份失效,等重新登录'); } $publicPath = "uploads/user/picture/" . User::userid() . "/"; $dirPath = public_path($publicPath); $dirs = $files = []; // $path = Request::input('path'); if ($path && is_string($path)) { $path = str_replace(array('||', '|'), '/', $path); $path = trim($path, '/'); $path = str_replace('..', '', $path); $path = Base::leftDelete($path, $publicPath); if ($path) { $path = $path . '/'; $dirPath .= $path; // $dirs[] = [ 'type' => 'dir', 'title' => '...', 'path' => substr(substr($path, 0, -1), 0, strripos(substr($path, 0, -1), '/')), 'url' => '', 'thumb' => Base::fillUrl('images/other/dir.png'), 'inode' => 0, ]; } } else { $path = ''; } $list = glob($dirPath . '*', GLOB_BRACE); foreach ($list as $v) { $filename = basename($v); $pathTemp = $publicPath . $path . $filename; if (is_dir($v)) { $dirs[] = [ 'type' => 'dir', 'title' => $filename, 'path' => $pathTemp, 'url' => Base::fillUrl($pathTemp), 'thumb' => Base::fillUrl('images/other/dir.png'), 'inode' => filemtime($v), ]; } elseif (!Base::isThumb($filename)) { $array = [ 'type' => 'file', 'title' => $filename, 'path' => $pathTemp, 'url' => Base::fillUrl($pathTemp), 'thumb' => $pathTemp, 'inode' => filemtime($v), ]; // $extension = pathinfo($dirPath . $filename, PATHINFO_EXTENSION); if (in_array($extension, ['png', 'jpg', 'jpeg', 'gif', 'webp', 'bmp'])) { if ($extension = Base::getThumbExt($dirPath . $filename)) { $array['thumb'] .= "_thumb.{$extension}"; } else { $array['thumb'] = Base::fillUrl($array['thumb']); } $files[] = $array; } } } if ($dirs) { $inOrder = []; foreach ($dirs as $key => $item) { $inOrder[$key] = $item['title']; } array_multisort($inOrder, SORT_DESC, $dirs); } if ($files) { $inOrder = []; foreach ($files as $key => $item) { $inOrder[$key] = $item['inode']; } array_multisort($inOrder, SORT_DESC, $files); } // return Base::retSuccess('success', ['dirs' => $dirs, 'files' => $files]); } /** * @api {post} api/system/fileupload 22. 上传文件 * * @apiDescription 需要token身份 * @apiVersion 1.0.0 * @apiGroup system * @apiName fileupload * * @apiParam {String} [image64] 图片base64 * @apiParam {String} filename 文件名 * @apiParam {String} [files] 文件名 * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function fileupload() { if (User::userid() === 0) { return Base::retError('身份失效,等重新登录'); } $path = "uploads/user/file/" . User::userid() . "/" . date("Ym") . "/"; $image64 = trim(Request::input('image64')); $fileName = trim(Request::input('filename')); if ($image64) { $data = Base::image64save([ "image64" => $image64, "path" => $path, "fileName" => $fileName, "quality" => true ]); } else { $data = Base::upload([ "file" => Request::file('files'), "type" => 'file', "path" => $path, "fileName" => $fileName, "quality" => true ]); } // return $data; } /** * @api {get} api/system/get/updatelog 23. 获取更新日志 * * @apiDescription 获取更新日志 * @apiVersion 1.0.0 * @apiGroup system * @apiName get__updatelog * * @apiParam {Number} [take] 获取数量:10-100(留空默认:50) * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function get__updatelog() { $take = min(100, max(10, intval(Request::input('take', 50)))); $logPath = base_path('CHANGELOG.md'); $logVersion = ""; $logContent = ""; $logResults = []; if (file_exists($logPath)) { $content = file_get_contents($logPath); $sections = preg_split("/## \[(.*?)\]/", $content, -1, PREG_SPLIT_DELIM_CAPTURE); for ($i = 1; $i < count($sections) && count($logResults) < $take; $i += 2) { $logResults[] = [ 'title' => $sections[$i], 'content' => $sections[$i + 1] ]; } } if ($logResults) { $logVersion = $logResults[0]['title']; $logContent = implode("\n", array_map(function($item) { return "## {$item['title']}" . $item['content']; }, $logResults)); } return Base::retSuccess('success', [ 'logVersion' => $logVersion, 'updateLog' => $logContent, ]); } /** * @api {get} api/system/email/check 24. 邮件发送测试(限管理员) * * @apiDescription 测试配置邮箱是否能发送邮件 * @apiVersion 1.0.0 * @apiGroup system * @apiName email__check * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function email__check() { User::auth('admin'); // $all = Request::input(); if (!Base::isEmail($all['to'])) { return Base::retError('请输入正确的收件人地址'); } try { Setting::validateAddr($all['to'], function($to) use ($all) { Factory::mailer() ->setDsn("smtp://{$all['account']}:{$all['password']}@{$all['smtp_server']}:{$all['port']}?verify_peer=0") ->setMessage(EmailMessage::create() ->from(Base::settingFind('system', 'system_alias', 'Task') . " <{$all['account']}>") ->to($to) ->subject('Mail sending test') ->html('
' . Doo::translate('收到此电子邮件意味着您的邮箱配置正确。') . '
')) ->send(); }, function () { throw new \Exception("收件人地址错误或已被忽略"); }); return Base::retSuccess('成功发送'); } catch (\Throwable $e) { // 一般是请求超时 if (str_contains($e->getMessage(), "Timed Out")) { return Base::retError("邮件发送超时,请检查邮箱配置是否正确"); } elseif ($e->getCode() === 550) { return Base::retError('邮件内容被拒绝,请检查邮箱是否开启接收功能'); } else { return Base::retError($e->getMessage()); } } } /** * @api {get} api/system/checkin/export 25. 导出签到数据(限管理员) * * @apiVersion 1.0.0 * @apiGroup system * @apiName checkin__export * * @apiParam {Array} [userid] 指定会员,如:[1, 2] * @apiParam {Array} [date] 指定日期范围,如:['2020-12-12', '2020-12-30'] * @apiParam {Array} [time] 指定时间范围,如:['09:00', '18:00'] * * @apiSuccess {Number} ret 返回状态码(1正确、0错误) * @apiSuccess {String} msg 返回信息(错误描述) * @apiSuccess {Object} data 返回数据 */ public function checkin__export() { User::auth('admin'); // $setting = Base::setting('checkinSetting'); if ($setting['open'] !== 'open') { return Base::retError('此功能未开启,请前往系统设置开启'); } // $userid = Base::arrayRetainInt(Request::input('userid'), true); $date = Request::input('date'); $time = Request::input('time'); // if (empty($userid) || empty($date) || empty($time)) { return Base::retError('参数错误'); } if (count($userid) > 100) { return Base::retError('导出成员限制最多100个'); } if (!(is_array($date) && Timer::isDate($date[0]) && Timer::isDate($date[1]))) { return Base::retError('日期选择错误'); } if (Carbon::parse($date[1])->timestamp - Carbon::parse($date[0])->timestamp > 35 * 86400) { return Base::retError('日期范围限制最大35天'); } if (!(is_array($time) && Timer::isTime($time[0]) && Timer::isTime($time[1]))) { return Base::retError('时间选择错误'); } // $secondStart = strtotime("2000-01-01 {$time[0]}") - strtotime("2000-01-01 00:00:00"); $secondEnd = strtotime("2000-01-01 {$time[1]}") - strtotime("2000-01-01 00:00:00"); // $headings = []; $headings[] = Doo::translate('签到人'); $headings[] = Doo::translate('签到日期'); $headings[] = Doo::translate('班次时间'); $headings[] = Doo::translate('首次签到时间'); $headings[] = Doo::translate('首次签到结果'); $headings[] = Doo::translate('最后签到时间'); $headings[] = Doo::translate('最后签到结果'); $headings[] = Doo::translate('参数数据'); // $sheets = []; $startD = Carbon::parse($date[0])->startOfDay(); $endD = Carbon::parse($date[1])->endOfDay(); $users = User::whereIn('userid', $userid)->take(100)->get(); /** @var User $user */ foreach ($users as $user) { $recordTimes = UserCheckinRecord::getTimes($user->userid, [$startD, $endD]); // $nickname = Base::filterEmoji($user->nickname); $styles = ["A1:H1" => ["font" => ["bold" => true]]]; $datas = []; $startT = $startD->timestamp; $endT = $endD->timestamp; $index = 1; while ($startT < $endT) { $index++; $sameDate = date("Y-m-d", $startT); $sameTimes = $recordTimes[$sameDate] ?? []; $sameCollect = UserCheckinRecord::atCollect($sameDate, $sameTimes); $firstBetween = [Carbon::createFromTimestamp($startT), Carbon::createFromTimestamp($startT + $secondEnd - 1)]; $lastBetween = [Carbon::createFromTimestamp($startT + $secondStart + 1), Carbon::createFromTimestamp($startT + 86400)]; $firstRecord = $sameCollect?->whereBetween("datetime", $firstBetween)->first(); $lastRecord = $sameCollect?->whereBetween("datetime", $lastBetween)->last(); $firstTimestamp = $firstRecord['timestamp'] ?: 0; $lastTimestamp = $lastRecord['timestamp'] ?: 0; if (Timer::time() < $startT + $secondStart) { $firstResult = "-"; } else { $firstResult = Doo::translate("正常"); if (empty($firstTimestamp)) { $firstResult = Doo::translate("缺卡"); $styles["E{$index}"] = ["font" => ["color" => ["rgb" => "ff0000"]]]; } elseif ($firstTimestamp > $startT + $secondStart) { $firstResult = Doo::translate("迟到"); $styles["E{$index}"] = ["font" => ["color" => ["rgb" => "436FF6"]]]; } } if (Timer::time() < $startT + $secondEnd) { $lastResult = "-"; $lastTimestamp = 0; } else { $lastResult = Doo::translate("正常"); if (empty($lastTimestamp) || $lastTimestamp === $firstTimestamp) { $lastResult = Doo::translate("缺卡"); $styles["G{$index}"] = ["font" => ["color" => ["rgb" => "ff0000"]]]; } elseif ($lastTimestamp < $startT + $secondEnd) { $lastResult = Doo::translate("早退"); $styles["G{$index}"] = ["font" => ["color" => ["rgb" => "436FF6"]]]; } } $firstTimestamp = $firstTimestamp ? date("H:i", $firstTimestamp) : "-"; $lastTimestamp = $lastTimestamp ? date("H:i", $lastTimestamp) : "-"; $section = array_map(function($item) { return $item[0] . "-" . ($item[1] ?: "None"); }, UserCheckinRecord::atSection($sameTimes)); $datas[] = [ "{$nickname} (ID: {$user->userid})", $sameDate, implode("-", $time), $firstTimestamp, $firstResult, $lastTimestamp, $lastResult, implode(", ", $section), ]; $startT += 86400; } $title = (count($sheets) + 1) . "." . ($nickname ?: $user->userid); $sheets[] = BillExport::create()->setTitle($title)->setHeadings($headings)->setData($datas)->setStyles($styles); } if (empty($sheets)) { return Base::retError('没有任何数据'); } // $fileName = $users[0]->nickname; if (count($users) > 1) { $fileName .= "等" . count($userid) . "位成员的签到记录"; } else { $fileName .= '的签到记录'; } $fileName = Doo::translate($fileName) . '_' . Timer::time() . '.xlsx'; $filePath = "temp/checkin/export/" . date("Ym", Timer::time()); $export = new BillMultipleExport($sheets); $res = $export->store($filePath . "/" . $fileName); if ($res != 1) { return Base::retError('导出失败,' . $fileName . '!'); } $xlsPath = storage_path("app/" . $filePath . "/" . $fileName); $zipFile = "app/" . $filePath . "/" . Base::rightDelete($fileName, '.xlsx') . ".zip"; $zipPath = storage_path($zipFile); if (file_exists($zipPath)) { Base::deleteDirAndFile($zipPath, true); } try { Madzipper::make($zipPath)->add($xlsPath)->close(); } catch (\Throwable) { } // if (file_exists($zipPath)) { $base64 = base64_encode(Base::array2string([ 'file' => $zipFile, ])); Session::put('checkin::export:userid', $user->userid); return Base::retSuccess('success', [ 'size' => Base::twoFloat(filesize($zipPath) / 1024, true), 'url' => Base::fillUrl('api/system/checkin/down?key=' . urlencode($base64)), ]); } else { return Base::retError('打包失败,请稍后再试...'); } } /** * @api {get} api/system/checkin/down 26. 下载导出的签到数据 * * @apiVersion 1.0.0 * @apiGroup system * @apiName checkin__down * * @apiParam {String} key 通过export接口得到的下载钥匙 * * @apiSuccess {File} data 返回数据(直接下载文件) */ public function checkin__down() { $userid = Session::get('checkin::export:userid'); if (empty($userid)) { return Base::ajaxError("请求已过期,请重新导出!", [], 0, 502); } // $array = Base::string2array(base64_decode(urldecode(Request::input('key')))); $file = $array['file']; if (empty($file) || !file_exists(storage_path($file))) { return Base::ajaxError("文件不存在!", [], 0, 502); } return Response::download(storage_path($file)); } /** * @api {get} api/system/version 27. 获取版本号 * * @apiVersion 1.0.0 * @apiGroup system * @apiName version * * @apiSuccessExample {json} Success-Response: { "version": "0.0.1", "publish": { "provider": "generic", "url": "" } } */ public function version() { $url = url(''); $package = Base::getPackage(); $array = [ 'version' => Base::getVersion(), 'publish' => [], ]; if (is_array($package['app'])) { $i = 0; foreach ($package['app'] as $item) { $urls = $item['urls'] && is_array($item['urls']) ? $item['urls'] : $item['url']; if (is_array($item['publish']) && ($i === 0 || Base::hostContrast($url, $urls))) { $array['publish'] = $item['publish']; } $i++; } } return $array; } /** * @api {get} api/system/prefetch 28. 预加载的资源 * * @apiVersion 1.0.0 * @apiGroup system * @apiName prefetch * * @apiSuccessExample {array} Success-Response: [ "https://......", "https://......", "......", ] */ public function prefetch() { $userAgent = strtolower(Request::server('HTTP_USER_AGENT')); $isMain = str_contains($userAgent, 'maintaskwindow'); $isApp = str_contains($userAgent, 'kuaifan_eeui'); $version = Base::getVersion(); $array = []; if ($isMain || $isApp) { $path = 'js/build/'; $list = Base::recursiveFiles(public_path($path), false); foreach ($list as $item) { if (is_file($item) && filesize($item) > 50 * 1024) { // 50KB $array[] = $path . basename($item); } } } if ($isMain) { $file = base_path('.prefetch'); if (file_exists($file)) { $content = file_get_contents($file); $items = explode("\n", $content); $array = array_merge($array, $items); } // 添加office资源 $officePath = ''; $officeApi = 'http://office/web-apps/apps/api/documents/api.js'; $content = @file_get_contents($officeApi); if ($content) { if (preg_match("/const\s+ver\s*=\s*'\/*([^']+)'/", $content, $matches)) { $officePath = $matches[1]; } } if ($officePath) { $array = array_map(function($item) use ($officePath) { if (str_starts_with($item, 'office/{path}/')) { return preg_replace("/office\/{path}\//", '/office/' . $officePath . '/', $item); } return $item; }, $array); } else { $array = array_filter($array, function($item) { return !str_starts_with($item, 'office/{path}/'); }); } } return array_map(function($item) use ($version) { $url = trim($item); $url = str_replace('{version}', $version, $url); return url($url); }, array_values(array_filter($array))); } }