定制 totem-it/sam-skeleton 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

totem-it/sam-skeleton

最新稳定版本:1.0.0

Composer 安装命令:

composer require totem-it/sam-skeleton

包简介

Basic elements for sam application.

README 文档

README

SAM-skeleton

Basic elements for sam application.

General System Requirements

Installation

If necessary, use the composer to download the library

$ composer require totem-it/sam-skeleton

Remember to put repository in a composer.json

"repositories": [
    {
        "type": "vcs",
        "url":  "https://github.com/totem-it/sam-skeleton.git"
    }
],

Usage

Functionalities are organized into packages within the src/Bundles folder:

Auth

AuthorizedRequest

The trait is used in FormRequest classes to automatically check if a user is authorized to perform a given action. It ensures that only authenticated users can proceed with the request.

TrustOnlyAuthenticated

The middleware checks if the authenticated user’s UUID matches the UUID in the route

example:

Route::middleware(TrustOnlyAuthenticated::class)->group(function () {
    Route::post('/user/{uuid}/update', [UserController::class, 'update']);

Middleware

LocalizationMiddleware

By Default SAM-skeleton uses localization from .env APP_LOCALE key. To change response of API, add header Accept-Language

example:

Route::middleware(LocalizationMiddleware::class)->get('/', [MyController::class, 'index']);

ForceJsonMiddleware

This middleware changes the accept: * header to accept: application/json.

example:

$this->app['router']->prependMiddlewareToGroup('api', ForceJsonMiddleware::class);
// inside service provider

Route::middleware(ForceJsonMiddleware::class)->get('/', [MyController::class, 'index']);
// inside routes

Resource

ApiCollection

Used to return a collection of models in an API response. Extends the ResourceCollection by providing additional information to the API response

ApiResource

extends JsonResource

  • whenHasAttribute() Checks if the resource has the specified attribute.
  • noContent() - Allows the response to be returned with an HTTP 204 (No Content) status code.

ValueObject

Useful in value objects (VO) or data transfer objects (DTOs) where you often need to validate and parse input data before using it. It provides a simple and reusable way to handle common parsing scenarios.

Parse the property to a trimmed string or returns null.

ParseValueObject::trimOrNull(' some text ');
// `some text`

ParseValueObject::trimOrNull(null); 
// null

Parse the property to an int or returns null.

ParseValueObject::intOrNull('123'); 
// 123

ParseValueObject::intOrNull(null); 
// null

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2024-10-24