截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

LoginLogic.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2025-03-13 18:17:49
  5. * @LastEditors: xiaohai zmhwork@qq.com
  6. * @LastEditTime: 2025-03-24 21:19:27
  7. * @FilePath: \opkpm\app\shop\logic\LoginLogic.php
  8. * @Description:
  9. */
  10. // +----------------------------------------------------------------------
  11. // | likeshop开源商城系统
  12. // +----------------------------------------------------------------------
  13. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  14. // | gitee下载:https://gitee.com/likeshop_gitee
  15. // | github下载:https://github.com/likeshop-github
  16. // | 访问官网:https://www.likeshop.cn
  17. // | 访问社区:https://home.likeshop.cn
  18. // | 访问手册:http://doc.likeshop.cn
  19. // | 微信公众号:likeshop技术社区
  20. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  21. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  22. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  23. // | likeshop团队版权所有并拥有最终解释权
  24. // +----------------------------------------------------------------------
  25. // | author: likeshop.cn.team
  26. // +----------------------------------------------------------------------
  27. namespace app\shop\logic;
  28. use app\common\basics\Logic;
  29. use app\common\model\shop\ShopAdmin;
  30. use app\common\server\ConfigServer;
  31. use think\facade\Cookie;
  32. /**
  33. * 商家登录逻辑
  34. * Class LoginLogic
  35. * @package app\shop\logic
  36. */
  37. class LoginLogic extends Logic
  38. {
  39. /**
  40. * Notes: 登录
  41. * @param $post
  42. * @author 段誉(2021/4/10 10:40)
  43. * @return bool
  44. */
  45. public static function login($post)
  46. {
  47. $adminModel = new ShopAdmin();
  48. $admin_info = $adminModel->alias('a')
  49. ->join('shop s', 's.id = a.shop_id')
  50. ->field(['a.id', 'a.account', 'a.name', 'role_id', 'shop_id', 's.name' => 'shop_name', 's.hksy_type'])
  51. ->where(['a.account' => $post['account'], 'a.del' => 0])
  52. ->findOrEmpty()->toArray();
  53. //session
  54. session('shop_info', $admin_info);
  55. //登录信息更新
  56. $adminModel->where(['account' => $post['account']])
  57. ->update([
  58. 'login_ip' => request()->ip(),
  59. 'login_time' => time()
  60. ]);
  61. //记住账号
  62. if (isset($post['remember_account']) && $post['remember_account'] == 'on') {
  63. Cookie::set('account', $post['account']);
  64. } else {
  65. Cookie::delete('account');
  66. }
  67. return true;
  68. }
  69. /**
  70. * Notes: 退出
  71. * @author 段誉(2021/4/10 10:40)
  72. */
  73. public static function logout()
  74. {
  75. session('shop_info', null);
  76. }
  77. public static function config()
  78. {
  79. $config = [
  80. 'company_name' => ConfigServer::get('copyright', 'company_name'),
  81. 'number' => ConfigServer::get('copyright', 'number'),
  82. 'link' => ConfigServer::get('copyright', 'link'),
  83. 'login_logo' => ConfigServer::get('website_shop', 'shop_login_logo'),
  84. 'login_image' => ConfigServer::get('website_shop', 'shop_login_image'),
  85. 'login_title' => ConfigServer::get('website_shop', 'shop_login_title'),
  86. 'name' => ConfigServer::get('website', 'name'),
  87. 'web_favicon' => ConfigServer::get('website', 'web_favicon'),
  88. ];
  89. return $config;
  90. }
  91. }