定制 tapp/filament-library 二次开发

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

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

tapp/filament-library

Composer 安装命令:

composer require tapp/filament-library

包简介

A Google Drive-like file management system for Filament

README 文档

README

A comprehensive file and document management system for Filament applications, featuring Google Drive-style permissions, automatic inheritance, and flexible access controls.

Features

  • 📁 File & Folder Management - Upload files, create folders, and organize content
  • 🔗 External Links - Add and manage external links with descriptions (including video embeds)
  • 👥 Advanced Permissions - Google Drive-style ownership with Creator, Owner, Editor, and Viewer roles
  • 🔄 Automatic Inheritance - Permissions automatically inherit from parent folders
  • 🔍 Multiple Views - Public Library, My Documents, Shared with Me, Created by Me, Favorites, and Search All
  • 🏷️ Tags & Favorites - Organize items with tags and mark favorites for quick access
  • ⚙️ Configurable Admin Access - Flexible admin role configuration
  • 🎨 Filament Integration - Native Filament UI components and navigation
  • 🏢 Multi-Tenancy Support - Optional team/organization scoping for all library content

Installation

You can install the package via composer:

composer require tapp/filament-library

Database Setup

The package will automatically publish and run migrations. You'll need to add the LibraryUser trait to your User model:

// app/Models/User.php
use Tapp\FilamentLibrary\Traits\LibraryUser;

class User extends Authenticatable
{
    use LibraryUser;
    // ... other traits and methods
}

Warning

If you are using multi-tenancy please see the "Multi-Tenancy Support" instructions below before publishing and running migrations.

You can publish and run the migrations with:

php artisan vendor:publish --tag="filament-library-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="filament-library-config"

Basic Usage

1. Add to Filament Panel

use Tapp\FilamentLibrary\FilamentLibraryPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentLibraryPlugin::make(),
        ]);
}

2. Configure Admin Access

// In your AppServiceProvider
use Tapp\FilamentLibrary\FilamentLibraryPlugin;

public function boot()
{
    // Option 1: Use different role name
    FilamentLibraryPlugin::setLibraryAdminCallback(function ($user) {
        return $user->hasRole('super-admin');
    });
    
    // Option 2: Custom logic
    FilamentLibraryPlugin::setLibraryAdminCallback(function ($user) {
        return $user->is_superuser || $user->hasRole('library-manager');
    });
}

3. Navigation

The plugin automatically adds navigation items under "Resource Library":

  • Library - Main library view
  • Search All - Search across all accessible content
  • My Documents - Personal documents and folders
  • Shared with Me - Items shared by other users
  • Created by Me - Items you created
  • Favorites - Items you've marked as favorites

Permissions System

The plugin features a sophisticated permissions system inspired by Google Drive.

Quick Overview

  • Creator - Permanent, always has access, cannot be changed
  • Owner - Manages sharing, can be transferred, has full permissions
  • Editor - Can view and edit content, cannot manage sharing
  • Viewer - Can only view content

Automatic Permissions

  • Personal Folders - Automatically created for new users
  • Permission Inheritance - Child items inherit parent folder permissions
  • Admin Override - Library admins can access all content

Multi-Tenancy Support

Filament Library includes built-in support for multi-tenancy, allowing you to scope library items, permissions, and tags to specific tenants (e.g., teams, organizations, workspaces).

⚠️ Important: Enable Tenancy Before Migrations

You MUST configure and enable tenancy in the config file BEFORE running the migrations. The migrations check the tenancy configuration to determine whether to add tenant columns to the database tables. If you enable tenancy after running migrations, you'll need to manually add the tenant columns to your database.

Quick Setup

  1. Configure your Filament panel with tenancy (see Filament Tenancy docs)
  2. Publish the config file:
    php artisan vendor:publish --tag="filament-library-config"
  3. Enable tenancy in config/filament-library.php:
    'tenancy' => [
        'enabled' => true, // ⚠️ Set this BEFORE running migrations!
        'model' => \App\Models\Team::class,
    ],
  4. Run migrations:
    php artisan migrate

For complete setup instructions, troubleshooting, and advanced configuration, see TENANCY.md.

Configuration

The config file (config/filament-library.php) includes the following options:

User Model

'user_model' => env('FILAMENT_LIBRARY_USER_MODEL', 'App\\Models\\User'),

Specify the user model for the application.

Video Link Support (Optional)

The library supports video links from various platforms. To customize supported domains, add this to your config:

'video' => [
    'supported_domains' => [
        'youtube.com',
        'youtu.be',
        'vimeo.com',
        'wistia.com',
    ],
],

Secure File URLs (Optional)

Configure how long temporary download URLs remain valid:

'url' => [
    'temporary_expiration_minutes' => 60, // Default: 60 minutes
],

Admin Access Configuration (Optional)

To configure which users can access admin features, add this to your config:

'admin_role' => 'Admin', // Role name to check
'admin_callback' => null, // Custom callback function

Or set it programmatically in your AppServiceProvider:

use Tapp\FilamentLibrary\FilamentLibraryPlugin;

public function boot()
{
    FilamentLibraryPlugin::setLibraryAdminCallback(function ($user) {
        return $user->hasRole('super-admin');
    });
}

Note: By default, users have an isLibraryAdmin() method that returns false. You can override this in your User model for custom logic.

Events

The package dispatches events your application can listen for to extend behavior (for example, search indexing, webhooks after uploads, ...).

LibraryFileStored

Tapp\FilamentLibrary\Events\LibraryFileStored is fired after a new file is stored on a library item: when Spatie Media Library creates a Media record for a LibraryItem whose type is file.

The event exposes:

  • $libraryItem — the LibraryItem the file was attached to
  • $media — the new Media model instance, or null if not available in edge cases

Example listener registration in AppServiceProvider:

use Illuminate\Support\Facades\Event;
use Tapp\FilamentLibrary\Events\LibraryFileStored;

public function boot(): void
{
    Event::listen(LibraryFileStored::class, function (LibraryFileStored $event): void {
        // e.g. dispatch a job here
    });
}

LibraryFileRestored

Tapp\FilamentLibrary\Events\LibraryFileRestored is fired after a soft-deleted LibraryItem of type file is restored (for example via Filament's Restore action).

The event exposes:

  • $libraryItem — the restored LibraryItem
  • $media — the item's first Media record, or null if none is attached

Example listener registration in AppServiceProvider:

use Illuminate\Support\Facades\Event;
use Tapp\FilamentLibrary\Events\LibraryFileRestored;

public function boot(): void
{
    Event::listen(LibraryFileRestored::class, function (LibraryFileRestored $event): void {
        // e.g. re-index or re-ingest RAG chunks here
    });
}

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.

tapp/filament-library 适用场景与选型建议

tapp/filament-library 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 221 次下载、GitHub Stars 达 4, 最近一次更新时间为 2025 年 11 月 13 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「library」 「laravel」 「file-management」 「tapp」 「filament」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 tapp/filament-library 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 tapp/filament-library 我们能提供哪些服务?
定制开发 / 二次开发

基于 tapp/filament-library 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 4
  • Watchers: 0
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-11-13