vr-shopxo-source/app/index/controller/Safety.php

270 lines
6.8 KiB
PHP
Raw Normal View History

2018-12-28 10:58:37 +00:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2021-03-16 02:34:52 +00:00
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
2018-12-28 10:58:37 +00:00
// +----------------------------------------------------------------------
2021-03-16 02:34:52 +00:00
// | Licensed ( https://opensource.org/licenses/mit-license.php )
2018-12-28 10:58:37 +00:00
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\index\controller;
2023-08-27 08:59:15 +00:00
use app\index\controller\Center;
use app\service\ApiService;
2019-12-24 07:18:56 +00:00
use app\service\SeoService;
use app\service\SafetyService;
2019-03-15 09:46:35 +00:00
use app\service\NavigationService;
2022-11-20 13:29:44 +00:00
use app\service\AgreementService;
2018-12-28 10:58:37 +00:00
/**
* 安全
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-02T22:48:35+0800
*/
2023-08-27 08:59:15 +00:00
class Safety extends Center
2018-12-28 10:58:37 +00:00
{
/**
* 构造方法
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-11-30
* @desc description
*/
public function __construct()
{
parent::__construct();
}
/**
* 首页
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-02-22T16:50:32+0800
*/
public function Index()
{
// 模板数据
$assign = [
// 基础数据
'data' => [
2018-12-28 10:58:37 +00:00
'mobile' => $this->user['mobile_security'],
'email' => $this->user['email_security'],
],
// 安全信息列表
2023-01-26 09:06:20 +00:00
'safety_panel_list' => NavigationService::UserSafetyPanelList(),
// 浏览器名称
2024-01-19 06:49:32 +00:00
'home_seo_site_title' => SeoService::BrowserSeoTitle(MyLang('safety.base_nav_title'), 1),
];
MyViewAssign($assign);
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
/**
* 登录密码修改页面
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function LoginPwdInfo()
{
2019-12-24 07:18:56 +00:00
// 浏览器名称
2024-01-19 06:49:32 +00:00
MyViewAssign('home_seo_site_title', SeoService::BrowserSeoTitle(MyLang('safety.password_update_base_nav_title'), 1));
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
/**
* 原手机号码修改页面
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function MobileInfo()
{
if(empty($this->user['mobile']))
{
2021-07-18 15:42:10 +00:00
return MyRedirect(MyUrl('index/safety/newmobileinfo'));
2018-12-28 10:58:37 +00:00
}
2019-12-24 07:18:56 +00:00
// 浏览器名称
2024-01-19 06:49:32 +00:00
MyViewAssign('home_seo_site_title', SeoService::BrowserSeoTitle(MyLang('safety.mobile_update_base_nav_title'), 1));
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
/**
* 新手机号码修改页面
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function NewMobileInfo()
{
2021-07-18 15:42:10 +00:00
if(MySession('safety_sms') == null && !empty($this->user['mobile']))
2018-12-28 10:58:37 +00:00
{
2024-04-15 02:25:01 +00:00
return ViewError(MyLang('safety.original_account_check_error_tips'), MyUrl('index/safety/mobileinfo'));
2018-12-28 10:58:37 +00:00
}
2019-12-24 07:18:56 +00:00
// 浏览器名称
2024-01-19 06:49:32 +00:00
MyViewAssign('home_seo_site_title', SeoService::BrowserSeoTitle(MyLang('safety.mobile_update_base_nav_title'), 1));
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
/**
* 电子邮箱修改页面
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function EmailInfo()
{
if(empty($this->user['email']))
{
2021-07-18 15:42:10 +00:00
return MyRedirect(MyUrl('index/safety/newemailinfo'));
2018-12-28 10:58:37 +00:00
}
2019-12-24 07:18:56 +00:00
// 浏览器名称
2024-01-19 06:49:32 +00:00
MyViewAssign('home_seo_site_title', SeoService::BrowserSeoTitle(MyLang('safety.email_update_base_nav_title'), 1));
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
/**
* 新电子邮箱修改页面
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function NewEmailInfo()
{
2021-07-18 15:42:10 +00:00
if(MySession('safety_email') == null && !empty($this->user['email']))
2018-12-28 10:58:37 +00:00
{
2024-04-15 02:25:01 +00:00
return ViewError(MyLang('safety.original_account_check_error_tips'), MyUrl('index/safety/emailinfo'));
2018-12-28 10:58:37 +00:00
}
2019-12-24 07:18:56 +00:00
// 浏览器名称
2024-01-19 06:49:32 +00:00
MyViewAssign('home_seo_site_title', SeoService::BrowserSeoTitle(MyLang('safety.email_update_base_nav_title'), 1));
2021-07-18 15:42:10 +00:00
return MyView();
2018-12-28 10:58:37 +00:00
}
2022-11-20 13:29:44 +00:00
/**
* 账号注销页面
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:12:20+0800
*/
public function LogoutInfo()
{
// 协议
$document = AgreementService::AgreementData(['document'=>'userlogout']);
// 模板数据
$assign = [
// 协议内容
'document_data' => $document['data'],
// 浏览器名称
2024-01-19 06:49:32 +00:00
'home_seo_site_title' => SeoService::BrowserSeoTitle(MyLang('safety.logout_base_nav_title'), 1),
2022-11-20 13:29:44 +00:00
];
MyViewAssign($assign);
return MyView();
}
2018-12-28 10:58:37 +00:00
/**
* 验证码显示
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-05T15:10:21+0800
*/
public function VerifyEntry()
{
$params = [
'width' => 100,
'height' => 28,
'use_point_back' => false,
'key_prefix' => 'safety',
2023-08-27 08:59:15 +00:00
'expire_time' => MyC('common_verify_expire_time'),
];
2018-12-28 10:58:37 +00:00
$verify = new \base\Verify($params);
$verify->Entry();
}
/**
* 登录密码修改
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T10:38:23+0800
*/
public function LoginPwdUpdate()
{
2023-08-27 08:59:15 +00:00
$params = $this->data_request;
2018-12-28 10:58:37 +00:00
$params['user'] = $this->user;
return ApiService::ApiDataReturn(SafetyService::LoginPwdUpdate($params));
2018-12-28 10:58:37 +00:00
}
/**
* 验证码发送
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-05T19:17:10+0800
*/
public function VerifySend()
{
2023-08-27 08:59:15 +00:00
$params = $this->data_request;
2018-12-28 10:58:37 +00:00
$params['user'] = $this->user;
return ApiService::ApiDataReturn(SafetyService::VerifySend($params));
2018-12-28 10:58:37 +00:00
}
/**
* 原账户验证码校验
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T15:57:19+0800
*/
public function VerifyCheck()
{
2023-08-27 08:59:15 +00:00
$params = $this->data_request;
2018-12-28 10:58:37 +00:00
$params['user'] = $this->user;
return ApiService::ApiDataReturn(SafetyService::VerifyCheck($params));
2018-12-28 10:58:37 +00:00
}
/**
2022-11-20 13:29:44 +00:00
* 账号更新
2018-12-28 10:58:37 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T17:04:36+0800
*/
public function AccountsUpdate()
{
2023-08-27 08:59:15 +00:00
$params = $this->data_request;
2018-12-28 10:58:37 +00:00
$params['user'] = $this->user;
return ApiService::ApiDataReturn(SafetyService::AccountsUpdate($params));
2018-12-28 10:58:37 +00:00
}
2022-11-20 13:29:44 +00:00
/**
* 账号注销
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-03-28T17:04:36+0800
*/
public function Logout()
{
2023-08-27 08:59:15 +00:00
$params = $this->data_request;
2022-11-20 13:29:44 +00:00
$params['user'] = $this->user;
return ApiService::ApiDataReturn(SafetyService::AccountsLogout($params));
}
2018-12-28 10:58:37 +00:00
}
?>