laravel学习:模块化caffeinated
# Modules
Extract and modularize your code for maintainability. Essentially creates "mini-laravel" structures to organize your application.
# Installation
Simply install the package through Composer. From here the package will automatically register its service provider and Module facade.
composer require caffeinated/modules
# Config
To publish the config file, run the following:
php artisan vendor:publish --provider="Caffeinated\Modules\ModulesServiceProvider" --tag="config"
Below you will find the contents of the provided config file for reference.
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Location
|--------------------------------------------------------------------------
|
| This option controls the default module location that gets used while
| using this package. This location is used when another is not explicitly
| specified when exucuting a given module function or command.
|
*/
'default_location' => 'app',
/*
|--------------------------------------------------------------------------
| Locations
|--------------------------------------------------------------------------
|
| Here you may define all of the module locations for your application as
| well as their drivers and other configuration options. This gives you
| the flexibility to structure modules as you see fit in each location.
|
*/
'locations' => [
'app' => [
'driver' => 'local',
'path' => app_path('Modules'),
'namespace' => 'App\\Modules\\',
'enabled' => true,
'provider' => 'ModuleServiceProvider',
'manifest' => 'module.json',
'mapping' => [
// Here you may configure the class mapping, effectivly
// customizing your generated default module structure.
'Config' => 'Config',
'Database/Factories' => 'Database/Factories',
'Database/Migrations' => 'Database/Migrations',
'Database/Seeds' => 'Database/Seeds',
'Http/Controllers' => 'Http/Controllers',
'Http/Middleware' => 'Http/Middleware',
'Providers' => 'Providers',
'Resources/Lang' => 'Resources/Lang',
'Resources/Views' => 'Resources/Views',
'Routes' => 'Routes'
],
],
],
/*
|--------------------------------------------------------------------------
| Default Driver
|--------------------------------------------------------------------------
|
| Here you may specify the default module storage driver that should be
| used by the package. A "local" driver is available out of the box that
| uses the local filesystem to store and maintain module manifests.
|
*/
'default_driver' => 'local',
/*
|--------------------------------------------------------------------------
| Drivers
|--------------------------------------------------------------------------
|
| Here you may configure as many module drivers as you wish. Use the
| local driver class as a basis for creating your own. The possibilities
| are endless!
|
*/
'drivers' => [
'local' => 'Caffeinated\Modules\Repositories\LocalRepository',
],
];
# Basic Usage
When it comes to larger applications, instead of mixing and matching your controllers, models, etc. across the various domains of your project, modules can group related logic together into a tidy "package". Out of the box, modules are stored in the app/Modules directory. Later on we'll go over how you can change this location or even add additional locations to store your modules.
# Creating Modules
Modules can be created by the use of the make:module Artisan command:
php artisan make:module Blog
This command will generate all the necessary files and folders to get you up and running quickly at app/Modules/Blog.
You'll notice that the structure of modules closely resemble the default Laravel folder structure. This is intentional and should feel immediately familiar to you. Nothing too scary here!
# Manifest
One of the important files that must be present at the root of every module, is the module's manifest file: module.json. This file contains the info and identification of your module. You may also use this to store module-specific settings if you wish. Let's look at the contents provided out of the box and go over each in detail:
{
"name": "Blog",
"slug": "blog",
"version": "1.0",
"description": "Only the best blog module in the world!",
}
| Property | Description |
|---|---|
| name * | The human-readable name of your module. |
| slug * | The slug of your module used to reference in commands and code. |
| version * | The version of your module. |
| description * | A simple description of your module. |
| order | You may also optionally pass in the order in which your module is loaded. Defaults to 9001. |
* These properties are required in every manifest.
Once you've made a change to a manifest file, you will need to re-optimize your module manifest cache. You can do this by running the following Artisan command:
php artisan module:optimize
# Service Providers
Just as the case with Laravel packages, service providers are the connection points between your module and Laravel. A service provider is responsible for binding things into Laravel's service container and information Laravel where to load module resources such as views, configuration, and localization files.
A ModuleServiceProvider and RouteServiceProvider is provided out of the box with some defaults configured for your module's localization, view, migration, configuration, factory, and route files. Feel free to modify these files or create your own service providers as needed.
You may generate a new provider via the make:module:provider command:
php artisan make:module:provider blog PublisherServiceProvider
NOTE
Be sure to register your custom service providers within your ModuleServiceProvider. Refer to Laravel's service provider documentation as needed.
# Migrations
We've extended Laravel's migrations system to make it easier to work with migrations for your modules. Particularly, you're able to run, rollback, reset, and refresh migrations for individual modules separate from your application (or other modules). This makes it super easy to work with modules during development.
# Generating Migrations
To create a module migration, use the make:module:migration Artisan command:
php artisan make:module:migration blog create_posts_table
The new migration will be placed in your defined migrations directory (by default this is Database/Migrations). Migrations follow the same workflow and structure as any other Laravel migration, so be sure to check out the documention on them here for reference.
# Running Migrations
To run all of your outstanding module migrations, execute the module:migrate Artisan command:
php artisan module:migrate
You may optionally specificy the exact module you'd like to run migrations against by passing through the slug:
php artisan module:migrate blog
Lastly, every module migrate command accepts the use of the --location flag to specify which module location to target.
# Rolling Back Migrations
To rollback the latest migration operation, you use the module:migrate:rollback command.
php artisan module:migrate:rollback
The rollback command also supports the step option to rollback a certain number of migrations:
php artisan module:migrate:rollback --step=5
You may also specify the module you wish to rollback, specifically:
php artisan module:migrate:rollback blog
The module:migrate:reset command will roll back all of your module migrations or the migrations of the module you pass through:
php artisan module:migrate:reset
php artisan module:migrate:reset blog
# Enabling Modules
Modules may be enabled either through the module:enable artisan command or through the facade with enable():
php artisan module:enable blog
Module::enable('blog');
# Disabling Modules
Modules may be disabled either through the module:disable artisan command or through the facade with disable():
php artisan module:disable blog
Module::disable('blog');
# Digging Deeper
# Locations
You may configure as many locations for your modules as necessary. For example, you may to split up your "core" modules from optional "add-on" modules.
The location configuration is found in the config/modules.php file under "locations". Here you may customize locations as needed. By default, the package is configured to store and reference modules from the app/Modules directory.
Each location may have its own configuration options on how you'd like to structure your modules:
| Property | Description |
|---|---|
| driver | The module driver to use for this location. |
| path | The root path where you wish to store modules for this location. |
| namespace | The root namespace used when generating modules for this location. |
| enabled | Whether or not modules are enabled by default or not in this location. |
| provider | The master provider class name for modules in this location. |
| manifest | The manifest filename for modules in this location. Must be a JSON file. |
| mapping | The custom mapping of directories for modules in this location. |
# Publishing Resources
Typically, you will need to publish your module's resources to the application's own directories. This will allow users of your module to easily override your default resources.
To publish your module's resources to the application, you may call the service provider's publishes method within the boot method of your service provider. The publishes method accepts an array of module paths and their desired publish locations. For example, to publish a config file for your blog module, you may do the following:
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
$this->publishes([
module_path('blog', 'config/blog.php') => config_path('blog.php'),
]);
}
# Provided Middleware
The bundled Identify Module middleware provides the means to pull and store module manifest information within the session on each page load. This provides the means to identify routes from specific modules.
# Register
Simply register as a route middleware with a short-hand key in your app/Http/Kernel.php file.
protected $routeMiddleware = [
...
'module' => \Caffeinated\Modules\Middleware\IdentifyModule::class,
];
# Usage
Now, you may simply use the middleware key in the route options array. The IdentifyModule middleware expects the slug of the module to be passed along in order to locate and load the relevant manifest information.
Route::group(['prefix' => 'blog', 'middleware' => ['module:blog']], function() {
Route::get('/', function() {
dd(
'This is the Blog module index page.',
session()->all()
);
});
});
# Results
If you dd() your session, you'll see that you have a new module array key with your module's manifest information available.
"This is the Blog module index page."
array:2 [▼
"_token" => "..."
"module" => array:6 [▼
"name" => "Blog"
"slug" => "blog"
"version" => "1.0"
"description" => "This is the description for the Blog module."
"enabled" => true
"order" => 9001
]
]
# Helpers
Caffeinated Modules includes a handful of global "helper" PHP functions. These are used by the package itself; however, you are free to use them in your own code if you find them convenient.
# modules
The modules function returns a collection of all modules and their accompanying manifest information.
$modules = modules();
# module_path
The module_path function returns the fully qualified path to the specified module's directory. You may also use the module_path function to generate a fully qualified path to a file relative to the module:
$path = module_path('blog');
$path = module_path('blog', 'Http/Controllers/BlogController.php');
If your module is not found within your configured default location, you may pass a third option to specify the location:
$path = module_path('blog', 'Http/Controllers/BlogController.php', 'add-on');
# module_class
The module_class function returns the full namespace path of the specified module and class.
$namespace = module_class('blog', 'Http\Controllers\BlogController');
If your module is not found within your configured default location, you may pass a third option to specify the location:
$namespace = module_class('blog', 'Http\Controllers\BlogController', 'add-on');
# API Reference
all slugs where sortBy sortByDesc exists count getManifest get set enabled disabled isEnabled isDisabled enable disable
# all
Get all modules, returned as a Collection.
$modules = Module::all();
# slugs
Get all modules, returned as a Collection.
$modules = Module::slugs();
# where
Find a module based on a where clause, returns a Collection.
$blogModule = Module::where('slug', 'blog');
# sortBy
Get all modules sorted by key in ascending order, returned as a Collection.
$modules = Module::sortBy('name');
# sortByDesc
Get all modules sorted by key in descending order, returned as a Collection.
$modules = Module::sortByDesc('name');
# exists
Check if given module exists, returns a Boolean.
if (Module::exists('blog')) {
// Do something with it
}
# count
Returns a count of all modules.
$count = Module::count();
# getManifest
Get a module's manifest contents, returned as a Collection.
$manifest = Module::getManifest('blog');
# get
Returns the given module manifest property value. If a value is not found, you may define a default value as the second parameter.
$name = Module::get('blog::post_limit', 15);
# set
Set the given module manifest property value.
Module::get('blod::description', 'This is a fresh new description of the blog module.');
# enabled
Gets all enabled modules, returned as a Collection.
$enabled = Module::enabled();
# disabled
Gets all disabled modules, returned as a Collection.
$disabled = Module::disabled();
# isEnabled
Checks if the given module is enabled, returns a Boolean.
if (Module::isEnabled('blog')) {
// Do something
}
# isDisabled
Checks if the given module is disabled, returns a Boolean.
if (Module::isDisabled('blog')) {
// Do something
}
# enable
Enable the given module.
Module::enable('blog');
# disable
Disable the given module.
Module::disable('blog);
laravel学习:模块化caffeinated的更多相关文章
- laravel的模块化是如何实现的
laravel的模块化是如何实现的 在laravel提供的官方文档上,有一个这样的名词 服务提供者,文档中介绍了它在laravel框架中的角色,以及如何使用它,但却没有讲明服务提供者的本质--它是为了 ...
- 【 js 模块加载 】深入学习模块化加载(node.js 模块源码)
一.模块规范 说到模块化加载,就不得先说一说模块规范.模块规范是用来约束每个模块,让其必须按照一定的格式编写.AMD,CMD,CommonJS 是目前最常用的三种模块化书写规范. 1.AMD(Asy ...
- Laravel学习笔记(三)--在CentOS上配置Laravel
在Laravel框架上开发了几天,不得不说,确实比较优雅,处理问题逻辑比较清楚. 今天打算在CentOS 7上配置一个Laravel,之前都是在本机上开发,打算实际配置一下. 1)系统 ...
- Laravel学习笔记之Session源码解析(上)
说明:本文主要通过学习Laravel的session源码学习Laravel是如何设计session的,将自己的学习心得分享出来,希望对别人有所帮助.Laravel在web middleware中定义了 ...
- 【 js 模块加载 】【源码学习】深入学习模块化加载(node.js 模块源码)
文章提纲: 第一部分:介绍模块规范及之间区别 第二部分:以 node.js 实现模块化规范 源码,深入学习. 一.模块规范 说到模块化加载,就不得先说一说模块规范.模块规范是用来约束每个模块,让其必须 ...
- 《PHP框架Laravel学习》系列分享专栏
<PHP框架Laravel学习>已整理成PDF文档,点击可直接下载至本地查阅https://www.webfalse.com/read/201735.html 文章 Laravel教程:l ...
- Laravel 学习 .env文件 getenv 获得环境变量的值
Laravel 学习 .env文件 getenv 获得环境变量的值 我们还需要对应用的 .env 文件进行设置,为应用指定数据库名称 sample. .env . . . DB_DATABASE=s ...
- laravel学习之旅
前言:之前写了二篇YII2.0的基本mvc操作,所以,打算laravel也来这一下 *安装现在一般都用composer安装,这里就不讲述了* 一.熟悉laravel (1)如果看到下面这个页面,就说明 ...
- laravel学习:主从读写分离配置的实现
本篇文章给大家带来的内容是关于laravel学习:主从读写分离配置的实现,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助. 在DB的连接工厂中找到以下代码.../vendor/larav ...
- Laravel学习笔记之PHP反射(Reflection) (上)
Laravel学习笔记之PHP反射(Reflection) (上) laravel php reflect 2.1k 次阅读 · 读完需要 80 分钟 3 说明:Laravel中经常使用PHP的反 ...
随机推荐
- HDU4009 Transfer water —— 最小树形图 + 不定根 + 超级点
题目链接:https://vjudge.net/problem/HDU-4009 Transfer water Time Limit: 5000/3000 MS (Java/Others) Me ...
- YTU 2437: C++ 习题 比较大小-类模板
2437: C++ 习题 比较大小-类模板 时间限制: 1 Sec 内存限制: 128 MB 提交: 1144 解决: 805 题目描述 声明一个类模板,利用它分别实现两个整数.浮点数和字符的比较 ...
- Python: PS 图像调整--亮度调整
本文用 Python 实现 PS 图像调整中的亮度调整,具体的算法原理和效果可以参考之前的博客: http://blog.csdn.net/matrix_space/article/details/2 ...
- 珠宝 jewelry 省选模拟
n种珠宝.每种各1个.有价格ci元,美度vi. 要求分别输出1元到m元 可买的最大优美度. 整数 :0<n<=10000000, 0<ci<=300,0<=vi< ...
- bzoj4631
4631: 踩气球 Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 260 Solved: 133[Submit][Status][Discuss] ...
- 访问linux的mysql-没有iptables文件的情况,防火墙开启3306端口
转自:https://blog.csdn.net/wangt_1224/article/details/45824095
- 关于Lucene全文检索相关技术
Lucene技术专门解决海量数据下的模糊搜索问题. Lucene主要完成的是数据预处理.建立倒排索引,及搜索.排名.高亮显示等功能 全文检索相关词语概要: 单词和文档矩阵: 文档(Document): ...
- (转)IE内存泄露,iframe内存泄露造成的原因和解决方案
http://my.oschina.net/jsan/blog/11169 http://blog.csdn.net/tianma630/article/details/8502395 jQuery ...
- bzoj 3784: 树上的路径【点分治+st表+堆】
参考:https://www.cnblogs.com/CQzhangyu/p/7071477.html 神奇的点分治序(或者叫点剖?).就是把点分治扫过的点依次放进队列里,然后发现,对于每一棵树摊到序 ...
- 5 分钟掌握 JS 实用窍门技巧,帮你快速撸码--- 删除数组尾部元素、E6对象解构、async/await、 操作平铺嵌套多维数组等
1. 删除数组尾部元素 一个简单方法就是改变数组的length值: const arr = [11, 22, 33, 44, 55, 66]; arr.length = 3; console.log( ...