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的反 ...
随机推荐
- java操作json
import net.sf.json.JSONArray; import net.sf.json.JSONObject; public class ReadJson { public static v ...
- YTU 2811: 打鱼还是晒网
2811: 打鱼还是晒网 时间限制: 1 Sec 内存限制: 128 MB 提交: 192 解决: 150 题目描述 中国有句俗话"三天打鱼,两天晒网".小王从2000年的1月 ...
- idea新建springmvc+spring+mybaties项目1
1,点击file,选择module,新建项目 2,选择maven -- >maven-archetype-webapp 3,输入GroupId,ArtifactId,点击next 4,选择本地m ...
- [TJOI2016&HEOI2016] 排序
[题目链接] https://www.lydsy.com/JudgeOnline/problem.php?id=4552 [算法] 首先 , 二分答案x , 将比x小的数看作1,比x大的数看作0 然后 ...
- 【POJ 3107】 Godfather
[题目链接] 点击打开链接 [算法] 这题描述有些繁琐,先简化一下题意 : 对于一棵无根树,删除一个节点,使得其余的联通块中,最大的联通块最小 那么,这题就很好做了 对这棵树进行一遍DFS,求出每个节 ...
- yum: Cannot find a valid baseurl for repo: migsrv解决方法
yum安装程序报错: Loaded plugins: fastestmirror Setting up Update Process Determining fastest mirrors Could ...
- c# 读取内存
C# 用内存映射文件读取大文件(.txt) 网上有好多这类的文章,大部分都是用C/C++写的,也有部分C#写的,都思想都是一样的,调用win32 API. 至于什么是内存映射文件,相信还是有好多人 ...
- 常见电商项目的数据库表设计(MySQL版)
转自:https://cloud.tencent.com/developer/article/1164332 简介: 目的: 电商常用功能模块的数据库设计 常见问题的数据库解决方案 环境: MySQL ...
- window切换Java版本原因
查找Path环境变量的变量指向的目录,有一个Oracle目录存放着几个 java,javac等可执行文件,删除这个路径或文件就可以执行你指定的JavaHome目录拉 详情参考: https://blo ...
- BIOS 和UEFI的区别
BIOS先要对CPU初始化,然后跳转到BIOS启动处进行POST自检,此过程如有严重错误,则电脑会用不同的报警声音提醒,接下来采用读中断的方式加载各种硬件,完成硬件初始化后进入操作系统启动过程:而UE ...