orbeji/unused-routes
Composer 安装命令:
composer require orbeji/unused-routes
包简介
README 文档
README
Unused Routes
About The Project
This project is a Symfony bundle that gives you information about the (un)used routes in your application. With this information you can safely delete the unused routes from your code.
Getting Started
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require orbeji/unused-routes
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require orbeji/unused-routes
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php file of your project:
// config/bundles.php return [ // ... Orbeji\UnusedRoutes\UnusedRoutesBundle::class => ['all' => true], ];
Usage
After the installation the bundle will start registering the users activity.
This activity will be stored by default in a file in %kernel.logs_dir%/accessed_routes{Ymd}.log
To know which routes are unused execute the following command:
php bin/console unused-routes:list
This will show a table like this:
---------------------- ------- -------------
Route #Uses Last access
---------------------- ------- -------------
ux_live_component 0 -
admin_index 0 -
admin_post_index 0 -
admin_post_new 0 -
admin_post_show 0 -
admin_post_edit 0 -
admin_post_delete 0 -
blog_rss 0 -
blog_index_paginated 0 -
blog_post 0 -
comment_new 0 -
blog_search 0 -
security_login 0 -
user_edit 0 -
user_change_password 0 -
---------------------- ------- -------------
Also you can pass the option --show-all-routes to add the info of the used routes
php bin/console unused-routes:list --show-all-routes
This will show a table like this:
---------------------- ------- -------------
Route #Uses Last access
---------------------- ------- -------------
ux_live_component 0 -
homepage 4 16/01/2024
admin_index 0 -
admin_post_index 0 -
admin_post_new 0 -
admin_post_show 0 -
admin_post_edit 0 -
admin_post_delete 0 -
blog_index 1 06/01/2024
blog_rss 0 -
blog_index_paginated 0 -
blog_post 0 -
comment_new 0 -
blog_search 0 -
security_login 0 -
user_edit 0 -
user_change_password 0 -
---------------------- ------- -------------
Now the routes that have been accessed also appear here with some info of the number of acceses and the date of the last one.
Configuration
There are only two parameters in this bundle. The path where the file is stores and the filename.
unused_routes: file_path: '%kernel.logs_dir%' file_name: 'accessed_routes.log'
Replacing how logs are stored/read
If you want to replace the way of storing logs like using a database or another storaging strategy you can create your own service implementing the following interface:
<?php declare(strict_types=1); namespace Orbeji\UnusedRoutes\Provider; use Orbeji\UnusedRoutes\Entity\UsedRoute; interface UsageRouteProviderInterface { /** * Everytime a user accesses a route this method is called to store this usage */ public function addRoute(UsedRoute $route): void; /** * This method aggregates all UsedRoutes by the used route and sums all visits, leaving the timestamp of the last * visit * @return UsedRoute[] */ public function getRoutesUsage(): array; }
Then you should add this to your services.yaml
services: Orbeji\UnusedRoutes\Provider\UsageRouteProviderInterface: '@your_own_service'
Roadmap
- Write a log file per day
- Add tests
- Add pipelines
- Check style
- Run Tests
- Coverage check
- Phpstan
- Improve Readme with description and usage
- Multiple routes can be assigned to the same action, take this into account in the result table
- See if it's possible/worth it to autogenerate a bundle config file when installing
- Add more methods to store/read logs
- Add configuration to replace how we store/read logs
See the open issues for a full list of proposed features (and known issues).
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate and that all the Github Actions are passing.
License
Distributed under the MIT License.
Contact
Project Link: https://github.com/orbeji/unused-routes
orbeji/unused-routes 适用场景与选型建议
orbeji/unused-routes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.71k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 01 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 orbeji/unused-routes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 orbeji/unused-routes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.71k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-19
