|
@@ -8,6 +8,7 @@ use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use App\Models\Admin\AdminLoginLog;
|
|
use App\Models\Admin\AdminLoginLog;
|
|
use App\Models\Admin\Admin;
|
|
use App\Models\Admin\Admin;
|
|
|
|
+use App\Models\Telegram\TelegramBot;
|
|
|
|
|
|
class LoginController extends Controller
|
|
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.
|
|
* Log the user out of the application.
|
|
*
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Illuminate\Http\Request $request
|
|
@@ -86,6 +97,56 @@ class LoginController extends Controller
|
|
return 'name';
|
|
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)
|
|
public function login(Request $request)
|
|
{
|
|
{
|
|
// 验证IP
|
|
// 验证IP
|