Browse Source

telegram验证码登录

urban 2 months ago
parent
commit
27b083aaa4

+ 61 - 0
trx机器人源代码/admin/admin/app/Http/Controllers/Admin/Auth/LoginController.php

@@ -8,6 +8,7 @@ use Illuminate\Http\Request;
 use Illuminate\Support\Facades\Auth;
 use App\Models\Admin\AdminLoginLog;
 use App\Models\Admin\Admin;
+use App\Models\Telegram\TelegramBot;
 
 class LoginController extends Controller
 {
@@ -62,6 +63,16 @@ class LoginController extends Controller
     }
 
     /**
+     * Show the application's telegram login form.
+     *
+     * @return \Illuminate\Http\Response
+     */
+    public function showTgLoginForm()
+    {
+        return view('admin.auth.tglogin');
+    }
+
+    /**
      * Log the user out of the application.
      *
      * @param  \Illuminate\Http\Request  $request
@@ -86,6 +97,56 @@ class LoginController extends Controller
         return 'name';
     }
 
+    public function sendCode(Request $request)
+    {
+        // 验证IP
+        $data = Admin::where('name',$request->name)->first();
+        if(empty($data)){
+            return $this->sendFailedLoginResponse($request);
+        }else{
+
+            $telegram_api_url = "https://api.telegram.org/bot$bot_token/sendMessage";
+            if(!empty($data->white_ip)){
+                $ip = getClientIP();
+                $canLogin = Admin::where('name',$request->name)->where('status',1)->whereRaw("FIND_IN_SET('$ip',white_ip)")->first();
+                if(empty($canLogin)){
+                    return $this->sendFailedLoginResponse($request);
+                }
+            }
+
+            // 生成随机验证码
+            $code = rand(100000, 999999);
+
+            // 将验证码存储到 Redis,设置过期时间为 5 分钟
+            $redis_key = "telegram_code:$data->telegram_user_id";
+            setexRedis($redis_key, 300, $code); // 300 秒 = 5 分钟
+
+
+            // 通过 Telegram Bot 发送验证码
+            $message = "您的验证码是:$code";
+            $data = [
+                'chat_id' => $data->telegram_user_id,
+                'text' => $message
+            ];
+
+            $options = [
+                'http' => [
+                    'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
+                    'method'  => 'POST',
+                    'content' => http_build_query($data),
+                ],
+            ];
+            $context  = stream_context_create($options);
+            $result = file_get_contents($telegram_api_url, false, $context);
+
+            if ($result) {
+                echo "验证码已发送,请检查您的 Telegram 消息。";
+            } else {
+                echo "发送失败,请检查 Telegram 用户 ID。";
+            }
+        }
+    }
+
     public function login(Request $request)
     {
         // 验证IP

+ 154 - 0
trx机器人源代码/admin/admin/resources/views/admin/auth/tglogin.blade.php

@@ -0,0 +1,154 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>登录界面</title>
+    <style>
+        body {
+            font-family: Arial, sans-serif;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            min-height: 100vh;
+            margin: 0;
+            background-color: #f7f7f7;
+        }
+        .login-container {
+            background: #ffffff;
+            width: 100%;
+            max-width: 400px;
+            border-radius: 10px;
+            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+            padding: 20px;
+            box-sizing: border-box;
+        }
+        .tabs {
+            display: flex;
+            border-bottom: 1px solid #ddd;
+            margin-bottom: 20px;
+        }
+        .tab {
+            flex: 1;
+            text-align: center;
+            padding: 10px 0;
+            cursor: pointer;
+            font-weight: bold;
+        }
+        .tab.active {
+            color: #007bff;
+            border-bottom: 2px solid #007bff;
+        }
+        .form-group {
+            margin-bottom: 20px;
+            position: relative;
+        }
+        .form-group input {
+            width: 100%;
+            padding: 10px;
+            font-size: 14px;
+            border: 1px solid #ddd;
+            border-radius: 5px;
+            box-sizing: border-box;
+        }
+        .form-group input:focus {
+            border-color: #007bff;
+            outline: none;
+        }
+        .form-group.error input {
+            border-color: #dc3545;
+        }
+        .form-group .error-message {
+            color: #dc3545;
+            font-size: 12px;
+            margin-top: 5px;
+            display: none;
+            position: absolute;
+            top: 100%;
+            left: 0;
+        }
+        .form-group.error .error-message {
+            display: block;
+        }
+        .btn {
+            width: 100%;
+            padding: 12px;
+            font-size: 16px;
+            color: white;
+            background-color: #007bff;
+            border: none;
+            border-radius: 5px;
+            cursor: pointer;
+            margin-top: 10px;
+        }
+        .btn:active {
+            background-color: #0056b3;
+        }
+        .telegram-btn {
+            background-color: #36a8e6;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+        }
+        .telegram-btn i {
+            margin-right: 8px;
+            font-size: 16px;
+        }
+    </style>
+</head>
+<body>
+<div class="login-container">
+    <div class="tabs">
+        <div class="tab active" id="code-login-tab">验证码登录</div>
+        <div class="tab" id="account-login-tab">账号密码登录</div>
+    </div>
+    <form id="code-login-form" action="{{ route('admin.tglogin') }}" method="POST">
+        <div class="form-group" id="telegram-id-group">
+            <input type="text" placeholder="📨 电报用户ID" id="telegram-id" name="telegram_id" required>
+            <div class="error-message">请输入机器人个人中心用户ID!</div>
+        </div>
+        <div class="form-group" id="verification-code-group">
+            <input type="text" placeholder="🔒 请输入验证码" id="verification-code" name="verification_code" required>
+            <div class="error-message">请输入验证码!</div>
+        </div>
+        <div class="form-group">
+            <button type="button" class="btn" id="get-code-btn">获取验证码</button>
+        </div>
+        <button type="submit" class="btn" id="code-login-btn">账号登录</button>
+        <button type="button" class="btn telegram-btn" id="telegram-login-btn">
+            <i>📨</i> Telegram 一键快捷登录
+        </button>
+    </form>
+</div>
+
+<script>
+    document.getElementById("get-code-btn").addEventListener("click", function () {
+        const telegramId = document.getElementById("telegram-id").value.trim();
+        const verificationCode = document.getElementById("verification-code").value.trim();
+        const telegramIdGroup = document.getElementById("telegram-id-group");
+        const verificationCodeGroup = document.getElementById("verification-code-group");
+
+        // 清除之前的错误状态
+        telegramIdGroup.classList.remove("error");
+        verificationCodeGroup.classList.remove("error");
+
+        let hasError = false;
+
+        if (!telegramId) {
+            telegramIdGroup.classList.add("error");
+            hasError = true;
+        }
+
+        if (!verificationCode) {
+            verificationCodeGroup.classList.add("error");
+            hasError = true;
+        }
+
+        if (!hasError) {
+            // 如果没有错误,执行获取验证码逻辑
+            alert("验证码已发送到您的 Telegram 账号!");
+        }
+    });
+</script>
+</body>
+</html>

+ 7 - 0
trx机器人源代码/admin/admin/routes/admin.php

@@ -6,6 +6,10 @@
 Route::get('/', function () {
     return redirect('/admin/login');
 });
+// 纸飞机登录
+Route::get('/tglogin', function () {
+    return redirect('/admin/tglogin');
+});
 
 Route::group(['prefix' => 'admin', 'namespace' => 'Admin'], function () {
     // Route::group(['namespace' => 'v1.0.1'], function(){
@@ -16,6 +20,9 @@ Route::group(['prefix' => 'admin', 'namespace' => 'Admin'], function () {
         Route::post('login', 'LoginController@login')->name('admin.login');
         //登出
         Route::post('logout', 'LoginController@logout')->name('admin.logout');
+        // 纸飞机登录
+        Route::get('tglogin', 'LoginController@showTgLoginForm')->name('admin.tglogin');
+        Route::post('send_code', 'LoginController@sendCode')->name('admin.tglogin');
     });
 
     Route::group(['middleware' => ['admin.auth', 'permission']], function () {