117 lines
2.8 KiB
PHP
117 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
// +----------------------------------------------------------------------
|
|
// | swiftAdmin 极速开发框架 [基于WebMan开发]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2020-2030 http://www.swiftadmin.net
|
|
// +----------------------------------------------------------------------
|
|
// | swiftAdmin.NET High Speed Development Framework
|
|
// +----------------------------------------------------------------------
|
|
// | Author: meystack <coolsec@foxmail.com> Apache 2.0 License
|
|
// +----------------------------------------------------------------------
|
|
namespace app;
|
|
|
|
use app\common\service\user\UserService;
|
|
use Psr\SimpleCache\InvalidArgumentException;
|
|
use support\Response;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
|
|
/**
|
|
* 前台全局控制器基类
|
|
* Class HomeController
|
|
* @package app
|
|
* @author meystack <
|
|
*/
|
|
class HomeController extends BaseController
|
|
{
|
|
/**
|
|
* 数据库实例
|
|
* @var object
|
|
*/
|
|
public object $model;
|
|
|
|
/**
|
|
* 操作状态
|
|
* @var mixed
|
|
*/
|
|
public mixed $status;
|
|
|
|
/**
|
|
* 错误消息
|
|
* @var string
|
|
*/
|
|
public string $errorText = '';
|
|
|
|
/**
|
|
* 控制器登录鉴权
|
|
* @var bool
|
|
*/
|
|
public bool $needLogin = false;
|
|
|
|
/**
|
|
* 禁止登录重复
|
|
* @var array
|
|
*/
|
|
public array $repeatLogin = ['login', 'register'];
|
|
|
|
/**
|
|
* 非鉴权方法
|
|
* @var array
|
|
*/
|
|
public array $noNeedLogin = [];
|
|
|
|
/**
|
|
* 跳转URL地址
|
|
* @var string
|
|
*/
|
|
public string $JumpUrl = '/';
|
|
|
|
/**
|
|
* 初始化函数
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// 获取权限实例
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* 视图过滤
|
|
* @param string $template
|
|
* @param array $argc
|
|
* @param string $app
|
|
* @return Response
|
|
* @throws InvalidArgumentException
|
|
*/
|
|
protected function view(string $template = '', array $argc = [], string $app = 'index'): \support\Response
|
|
{
|
|
if (saenv('site_state')) {
|
|
$site_mobile = saenv('site_mobile');
|
|
if (!empty($site_mobile) && !saenv('site_type')) {
|
|
$domain = parse_url($site_mobile, PHP_URL_HOST);
|
|
if ($domain === request()->header('host')) {
|
|
return view($template, $argc, 'mobile');
|
|
}
|
|
}
|
|
else if (request()->isMobile() && saenv('site_type')) {
|
|
return view($template, $argc, 'mobile');
|
|
}
|
|
}
|
|
|
|
return view($template, $argc, $app);
|
|
}
|
|
|
|
/**
|
|
* 退出登录
|
|
* @access public
|
|
*/
|
|
public function logOut(): Response
|
|
{
|
|
UserService::logout();
|
|
return $this->success('退出成功', '/');
|
|
}
|
|
}
|