소스 검색

feat:登录多语言

igb 4 달 전
부모
커밋
36c0e9d4a6

+ 22 - 0
app/Distributor/Controllers/AuthController.php

@@ -16,6 +16,28 @@ class AuthController extends BaseAuthController
 {
     protected $view = 'distributor.pages.login';
 
+    /**
+     * 重写登录控制器
+     * @param Content $content
+     * @return Content
+     */
+    function getLogin(Content $content)
+    {
+        $lang = request()->query('lang');
+
+        if(!empty($lang))
+        {
+            switchLanguage($lang);
+            return redirect()->to(request()->url()); // 刷新页面,去掉查询参数
+        }
+
+        if ($this->guard()->check()) {
+            return redirect($this->getRedirectPath());
+        }
+
+        return $content->full()->body(view($this->view));
+    }
+
     /**
      * Login interface.重写登录接口
      * @param Request $request

+ 3 - 3
app/Distributor/bootstrap.php

@@ -38,7 +38,7 @@ app()->singleton(Content::class, function () use ($newContent) {
 $user = Admin::guard()->check() ? Admin::user() : null;
 
 // 设置应用程序的本地化
-config(['app.locale' => $user && $user->language ? $user->language : config('app.locale')]);
+//config(['app.locale' => $user && $user->language ? $user->language : config('app.locale')]);
 
 //覆盖默认配置
 config(['distributor.layout.home_url'=>getDistributorDomain()]);
@@ -46,5 +46,5 @@ config(['distributor.layout.home_url'=>getDistributorDomain()]);
 
 
 //// 覆盖默认配置
-//config(['admin' => user_admin_config()]);
-//config(['app.locale' => config('admin.lang') ?: config('app.locale')]);
+config(['admin' => user_admin_config()]);
+config(['app.locale' => config('admin.lang') ?: config('app.locale')]);

+ 24 - 0
app/helpers.php

@@ -1,5 +1,6 @@
 <?php
 
+use Illuminate\Http\Request;
 use Illuminate\Support\Arr;
 use Illuminate\Support\Facades\Session;
 use Illuminate\Support\Str;
@@ -36,6 +37,29 @@ if (! function_exists('user_admin_config')) {
     }
 }
 
+if (! function_exists('switchLanguage')) {
+    function switchLanguage($lang)
+    {
+
+        // 验证是否是支持的语言
+        if (!in_array($lang, ['en', 'zh_CN', 'zh_TW'])) {
+            return false;
+        }
+
+        $configArray = ['lang' => $lang,];
+
+        user_admin_config($configArray);
+
+        // 动态修改 app.locale 配置
+        config(['app.locale' => $lang]);
+
+        return true;
+    }
+}
+
+
+
+
 if (!function_exists('getDistributor')) {
     /**
      * 获取会话中的 distributor 值

+ 1 - 0
lang/en/admin.php

@@ -43,6 +43,7 @@ return [
         '401' => 'Unauthorized !',
         '419' => 'Page expired !',
     ],
+    'site_name'             => 'Mietubl Online Marketing System',
     'online'                => 'Online',
     'login'                 => 'Login',
     'logout'                => 'Logout',

+ 1 - 0
lang/zh_CN/admin.php

@@ -44,6 +44,7 @@ return [
         '401' => '请登录!',
         '419' => '对不起,当前页面已失效,请刷新浏览器。',
     ],
+    'site_name'             => '美特柏建站营销系统',
     'home'                  => '主页',
     'online'                => '在线',
     'login'                 => '登录',

+ 1 - 0
lang/zh_TW/admin.php

@@ -44,6 +44,7 @@ return [
         '401' => '請先登入!',
         '419' => '對不起,當前頁面已失效,請刷新瀏覽器。',
     ],
+    'site_name'             => '美特柏建站營銷系統',
     'home'                  => '首頁',
     'online'                => '在線',
     'login'                 => '登入',

+ 7 - 1
resources/views/distributor/pages/login.blade.php

@@ -24,7 +24,7 @@
 <div class="login-page bg-40">
     <div class="login-box">
         <div class="login-logo mb-2">
-            {{ config('admin.name') }}
+            {{ trans('admin.site_name') }}
         </div>
         <div class="card">
             <div class="card-body login-card-body shadow-100">
@@ -106,6 +106,12 @@
                             @endif
                         </div>
                     </div>
+                    <div class="form-group d-flex justify-content-between align-items-center">
+                        <div class="text-left">
+                            <a href="?lang=en">English</a>
+                            <a href="?lang=zh_CN">中文</a>
+                        </div>
+                    </div>
                     <button type="submit" class="btn btn-primary float-right login-btn">
 
                         {{ __('admin.login') }}