Laravel之Contracts和Facades详解

Contracts

Contracts其实就是倡导面向接口编程,来达到解耦的目的。而这些通用的接口已经由Laravel为你设计好了。就是这些Contracts.

那么Laravel如何知道我们需要使用哪个实现呢?

在Laravel默认的Contracts绑定中,在'Illuminate/Foundation/Application.php'有这样的定义:这就是绑定了默认的接口实现.

/**

* Register the core class aliases in the container.

*

* @return void

*/

public function registerCoreContainerAliases()

{

$aliases = [

'app'                  => ['Illuminate\Foundation\Application', 'Illuminate\Contracts\Container\Container', 'Illuminate\Contracts\Foundation\Application'],

'auth'                 => 'Illuminate\Auth\AuthManager',

'auth.driver'          => ['Illuminate\Auth\Guard', 'Illuminate\Contracts\Auth\Guard'],

'auth.password.tokens' => 'Illuminate\Auth\Passwords\TokenRepositoryInterface',

'blade.compiler'       => 'Illuminate\View\Compilers\BladeCompiler',

'cache'                => ['Illuminate\Cache\CacheManager', 'Illuminate\Contracts\Cache\Factory'],

'cache.store'          => ['Illuminate\Cache\Repository', 'Illuminate\Contracts\Cache\Repository'],

'config'               => ['Illuminate\Config\Repository', 'Illuminate\Contracts\Config\Repository'],

'cookie'               => ['Illuminate\Cookie\CookieJar', 'Illuminate\Contracts\Cookie\Factory', 'Illuminate\Contracts\Cookie\QueueingFactory'],

'encrypter'            => ['Illuminate\Encryption\Encrypter', 'Illuminate\Contracts\Encryption\Encrypter'],

'db'                   => 'Illuminate\Database\DatabaseManager',

'db.connection'        => ['Illuminate\Database\Connection', 'Illuminate\Database\ConnectionInterface'],

'events'               => ['Illuminate\Events\Dispatcher', 'Illuminate\Contracts\Events\Dispatcher'],

'files'                => 'Illuminate\Filesystem\Filesystem',

'filesystem'           => ['Illuminate\Filesystem\FilesystemManager', 'Illuminate\Contracts\Filesystem\Factory'],

'filesystem.disk'      => 'Illuminate\Contracts\Filesystem\Filesystem',

'filesystem.cloud'     => 'Illuminate\Contracts\Filesystem\Cloud',

'hash'                 => 'Illuminate\Contracts\Hashing\Hasher',

'translator'           => ['Illuminate\Translation\Translator', 'Symfony\Component\Translation\TranslatorInterface'],

'log'                  => ['Illuminate\Log\Writer', 'Illuminate\Contracts\Logging\Log', 'Psr\Log\LoggerInterface'],

'mailer'               => ['Illuminate\Mail\Mailer', 'Illuminate\Contracts\Mail\Mailer', 'Illuminate\Contracts\Mail\MailQueue'],

'auth.password'        => ['Illuminate\Auth\Passwords\PasswordBroker', 'Illuminate\Contracts\Auth\PasswordBroker'],

'queue'                => ['Illuminate\Queue\QueueManager', 'Illuminate\Contracts\Queue\Factory', 'Illuminate\Contracts\Queue\Monitor'],

'queue.connection'     => 'Illuminate\Contracts\Queue\Queue',

'redirect'             => 'Illuminate\Routing\Redirector',

'redis'                => ['Illuminate\Redis\Database', 'Illuminate\Contracts\Redis\Database'],

'request'              => 'Illuminate\Http\Request',

'router'               => ['Illuminate\Routing\Router', 'Illuminate\Contracts\Routing\Registrar'],

'session'              => 'Illuminate\Session\SessionManager',

'session.store'        => ['Illuminate\Session\Store', 'Symfony\Component\HttpFoundation\Session\SessionInterface'],

'url'                  => ['Illuminate\Routing\UrlGenerator', 'Illuminate\Contracts\Routing\UrlGenerator'],

'validator'            => ['Illuminate\Validation\Factory', 'Illuminate\Contracts\Validation\Factory'],

'view'                 => ['Illuminate\View\Factory', 'Illuminate\Contracts\View\Factory'],

];

在我们自定义的接口实现时,我们可以在ServiceProvider中使用进行绑定:

$this->app->bind('App\Contracts\EventPusher', 'App\Services\PusherEventPusher');

Facades

Facades 为应用程序的服务容器中可用的类提供了一个「静态」接口。Laravel 「facades」作为在服务容器内基类的「静态代理」。很难懂?

我们打开项目目录下的config/app.php,然后找到

/*

|--------------------------------------------------------------------------

| Class Aliases

|--------------------------------------------------------------------------

|

| This array of class aliases will be registered when this application

| is started. However, feel free to register as many as you wish as

| the aliases are "lazy" loaded so they don't hinder performance.

|

*/

'aliases' => [

'App'       => Illuminate\Support\Facades\App::class,

'Artisan'   => Illuminate\Support\Facades\Artisan::class,

'Auth'      => Illuminate\Support\Facades\Auth::class,

'Blade'     => Illuminate\Support\Facades\Blade::class,

'Bus'       => Illuminate\Support\Facades\Bus::class,

'Cache'     => Illuminate\Support\Facades\Cache::class,

'Config'    => Illuminate\Support\Facades\Config::class,

'Cookie'    => Illuminate\Support\Facades\Cookie::class,

'Crypt'     => Illuminate\Support\Facades\Crypt::class,

'DB'        => Illuminate\Support\Facades\DB::class,

'Eloquent'  => Illuminate\Database\Eloquent\Model::class,

'Event'     => Illuminate\Support\Facades\Event::class,

'File'      => Illuminate\Support\Facades\File::class,

'Gate'      => Illuminate\Support\Facades\Gate::class,

'Hash'      => Illuminate\Support\Facades\Hash::class,

'Input'     => Illuminate\Support\Facades\Input::class,

'Lang'      => Illuminate\Support\Facades\Lang::class,

'Log'       => Illuminate\Support\Facades\Log::class,

'Mail'      => Illuminate\Support\Facades\Mail::class,

'Password'  => Illuminate\Support\Facades\Password::class,

'Queue'     => Illuminate\Support\Facades\Queue::class,

'Redirect'  => Illuminate\Support\Facades\Redirect::class,

'Redis'     => Illuminate\Support\Facades\Redis::class,

'Request'   => Illuminate\Support\Facades\Request::class,

'Response'  => Illuminate\Support\Facades\Response::class,

'Route'     => Illuminate\Support\Facades\Route::class,

'Schema'    => Illuminate\Support\Facades\Schema::class,

'Session'   => Illuminate\Support\Facades\Session::class,

'Storage'   => Illuminate\Support\Facades\Storage::class,

'URL'       => Illuminate\Support\Facades\URL::class,

'Validator' => Illuminate\Support\Facades\Validator::class,

'View'      => Illuminate\Support\Facades\View::class,

],

你是不是发现了什么?对,Facades其实就是在config/app.php中定义的一系列类的别名。只不过这些类都具有一个共同的特点,那就是继承基底 Illuminate\Support\Facades\Facade 类并实现一个方法:getFacadeAccessor返回名称。

自定义Facade

参考http://www.tutorialspoint.com/laravel/laravel_facades.htm

Step 1 −创建一个名为 TestFacadesServiceProvider的ServiceProvider ,使用如下命令即可:

php artisan make:provider TestFacadesServiceProvider

Step 2 − 创建一个底层代理类,命名为“TestFacades.php” at “App/Test”.

App/Test/TestFacades.php

namespace App\Test;

class TestFacades{

public function testingFacades(){

echo "Testing the Facades in Laravel.";

}

}

?>

Step 3 − 创建一个 Facade 类 called “TestFacades.php” at “App/Test/Facades”.

App/Test/Facades/TestFacades.php

namespace app\Test\Facades;

use Illuminate\Support\Facades\Facade;

class TestFacades extends Facade{

protected static function getFacadeAccessor() { return 'test'; }

}

Step 4 −创建一个ServiceProviders类,名为“TestFacadesServiceProviders.php” at “App/Test/Facades”.

App/Providers/TestFacadesServiceProviders.php


namespace App\Providers;

use App;

use Illuminate\Support\ServiceProvider;

class TestFacadesServiceProvider extends ServiceProvider {

public function boot() {

//

}

public function register() {

//可以这么绑定,这需要use App;

//  App::bind('test',function() {

//     return new \App\Test\TestFacades;

//  });

//也可以这么绑定,推荐。这个test对应于Facade的getFacadeAccessor返回值

$this->app->bind("test", function(){

return new MyFoo(); //给这个Facade返回一个代理实例。所有对Facade的调用都会被转发到该类对象下。

});

}

}

Step 5 − 在config/app.php注册ServiceProvider类

Step 6 − 在config/app.php注册自定义Facade的别名

使用测试:

Add the following lines in app/Http/routes.php.

Route::get('/facadeex', function(){

return TestFacades::testingFacades();

});

Step 9 − Visit the following URL to test the Facade.

http://localhost:8000/facadeex去查看输出

本文来自PHP中文网的laravel教程栏目:https://www.php.cn/phpkj/laravel/

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352