您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“l(fā)umen的自定義依賴注入是什么意思”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
比如我現(xiàn)在有個(gè)token認(rèn)證系統(tǒng),目前我用mysql的token表實(shí)現(xiàn),將來有可能會(huì)改成redis,怎么實(shí)現(xiàn)未來的無縫連接呢。
先定義一個(gè)合約文件app/Contracts/TokenHandler.php
<?php namespace App\Contracts; /** * 處理Token的Contracts * @package App\Contracts */ interface TokenHandler { /** * 創(chuàng)建一個(gè)token * @param $userId integer 用戶Id * @return string */ public function createToken($userId); /** * 得到該token的用戶 * @param $token string token值 * @return \App\User 擁有該token的用戶 */ public function getTokenUser($token); /** * 刪除一個(gè)token * @param $token string token值 * @return bool 是否成功 */ public function removeToken($token); }
這里定義了3個(gè)方法:創(chuàng)建token,得到token對(duì)應(yīng)用戶,刪除token。
然后我們寫一個(gè)Mysql下的實(shí)現(xiàn)app/Services/MysqlTokenHandler.php
<?php namespace App\Services; use App\Contracts\TokenHandler; use App\Orm\Token; /** * 處理Token的Contracts對(duì)應(yīng)的Mysql Service * @package App\Services */ class MysqlTokenHandler implements TokenHandler { /** * @var int 一個(gè)用戶能夠擁有的token最大值 */ protected $userTokensMax = 10; /** * @inheritdoc */ public function createToken($userId) { while (Token::where('user_id', $userId)->count() >= $this->userTokensMax) { Token::where('user_id', $userId)->orderBy('updated_at', 'asc')->first()->delete(); } $token = \Illuminate\Support\Str::random(32); if (!Token::create(['token' => $token, 'user_id' => $userId])) { return false; } return $token; } /** * @inheritdoc */ public function getTokenUser($token) { $tokenObject = Token::where('token', $token)->first(); return $tokenObject && $tokenObject->user ? $tokenObject->user : false; } /** * @inheritdoc */ public function removeToken($token) { return Token::find($token)->delete(); } }
然后在bootstrap/app.php里綁定兩者的映射關(guān)系:
$app->singleton( App\Contracts\TokenHandler::class, App\Services\MysqlTokenHandler::class );
如果將來換成了redis,只要重新寫一個(gè)RedisTokenHandler的實(shí)現(xiàn)并重新綁定即可,具體的業(yè)務(wù)邏輯代碼不需要任何改變。
于是在controller里就可以直接注入該對(duì)象實(shí)例,只要在參數(shù)前聲明合約類型:
public function logout(Request $request, TokenHandler $tokenHandler) { if ($tokenHandler->removeToken($request->input('api_token'))) { return $this->success([]); } else { return $this->error(Lang::get('messages.logout_fail')); } }
也可以在代碼里手動(dòng)得到注入對(duì)象的實(shí)例,比如:
$currentUser = app(\App\Contracts\TokenHandler::class)->getTokenUser($request->input('api_token'));
“l(fā)umen的自定義依賴注入是什么意思”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。