#tradewind:add wechat auth

master
tradewind 4 years ago
parent 5f850e288d
commit 4366c4a2ef
  1. 26
      app/Http/Controllers/Api/WechatAuthController.php
  2. 7
      app/Providers/RouteServiceProvider.php
  3. 7
      config/token.php
  4. 5
      routes/api.php

@ -0,0 +1,26 @@
<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class WechatAuthController extends Controller
{
//
public function checkSign(Request $request)
{
$signature = $request->signature;
$timestamp = $request->timestamp;
$nonce = $request->nonce;
$token = config('token.wechat_token');
$tmpArr = [$token, $timestamp, $nonce];
sort($tmpArr, SORT_STRING);
$tmpStr = implode($tmpArr);
$tmpStr = sha1($tmpStr);
return $tmpStr === $signature;
}
}

@ -38,14 +38,9 @@ class RouteServiceProvider extends ServiceProvider
$this->configureRateLimiting();
$this->routes(function () {
Route::prefix('api')
->middleware('api')
Route::middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}

@ -0,0 +1,7 @@
<?php
return [
'wechat_token' => env('WECHAT_TOKEN'),
];

@ -1,6 +1,7 @@
<?php
use App\Http\Controllers\Api\TestController;
use App\Http\Controllers\Api\WechatAuthController;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
@ -21,5 +22,9 @@ Route::middleware('auth:api')->get('/user', function (Request $request) {
Route::namespace('Api')->prefix('v1')->group(function () {
Route::any('/test', [TestController::class, 'index'])->name('test.index');
Route::prefix('wechat')->group(function () {
Route::get('/auth', [WechatAuthController::class, 'checkSign'])->name('wechat.auth.checkSign');
});
});

Loading…
Cancel
Save