定制 zpm-packages/server-access-filament 二次开发

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

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

zpm-packages/server-access-filament

最新稳定版本:v1.0.0

Composer 安装命令:

composer require zpm-packages/server-access-filament

包简介

Filament plugin that exposes server access management resources, pages, and actions for zpm-packages/server-access-laravel.

README 文档

README

server access

ZPMPackages Server Access Filament

Filament admin resources and page actions for the Laravel server-access stack. This package plugs into a Filament panel and exposes server, user, and SSH key management on top of zpm-packages/server-access-laravel.

What This Package Adds

  • SshServerResource for server records and current-system manager verification.
  • Nested SshUserResource for server-scoped SSH users.
  • SshEntryResource and user-level key relation management.
  • Header actions for acting as a user, updating OS passwords, editing authorized_keys, editing ~/.ssh/config, and confirming root-user deletion.
  • Current-system scan actions for pulling OS users into the panel workflow.

Installation

composer require zpm-packages/server-access-filament

This package expects zpm-packages/server-access-laravel to be installed and configured first.

Register The Plugin

use Filament\Panel;
use ZPMPackages\FilamentSshManagement\FilamentSshManagementPlugin;

public function panel(Panel $panel): Panel
{
	return $panel
		->plugin(FilamentSshManagementPlugin::make());
}

Host App Requirements

The current resources are intentionally thin and reuse the host application's SSH wrappers. Your app must provide these classes:

  • App\Models\SshServer
  • App\Models\SshUser
  • App\Models\SshEntry
  • App\Support\Ssh\SshManagerResolver
  • App\Support\Ssh\SshDirectDataService
  • App\Support\Ssh\SshSystemUserService
  • App\Support\Ssh\SshUserManagerService
  • App\Support\Ssh\SshActorAuthorizer
  • App\Support\Ssh\DatabaseSshRepository

If your app uses different namespaces or model names, adapt the package resources or provide compatible wrappers before enabling the plugin.

Registered Resources

The plugin registers three resources on the active panel:

SshServerResource::class,
SshUserResource::class,
SshEntryResource::class,

Server Resource Usage

SshServerResource is the entrypoint for server records.

What You Can Do

  • List configured server records.
  • Create and edit servers when database sync is enabled.
  • Open nested user management from the server table.
  • Change the verified manager user for the current system.
  • Delete server records.

Current-System Manager Verification

The edit page exposes a Change Manager User action for current-system servers. It verifies the selected OS user password before switching the configured manager.

User Resource Usage

SshUserResource is nested under a server.

Users List Page

The list page supports:

  • Scanning system users.
  • Creating a new user.
  • Auto-importing current-system users into the database-backed repository on mount.
  • Direct-mode record actions when database sync is disabled.

Create User Flow

The create page supports:

  • username, name, home directory, groups, comment, and root flag
  • can_read_entries, can_write_entries, and can_manage_entries
  • managed directories
  • optional create-time password
  • create-time SSH key passphrase forwarding when a managed key is generated

Edit User Header Actions

The edit page currently provides:

  • Act As
  • Authorized Keys
  • SSH Config
  • Update Password
  • Delete

The delete action requires password confirmation when the target user is root-equivalent.

Key Management Usage

Keys are managed from the user relation manager and the standalone key resource.

Supported Flows

  • Create a manual key row.
  • Generate a managed key pair.
  • Set custom private and public key paths under the target .ssh directory.
  • Edit an existing key.
  • Delete a key.

Related UI Behaviors

  • Private/public path inputs stay constrained to the user .ssh directory.
  • Public path can auto-fill from the chosen private path.
  • Managed key generation failures show notifications instead of raw exceptions.

Example Panel Registration

use App\Providers\Filament\AdminPanelProvider;
use Filament\Panel;
use ZPMPackages\FilamentSshManagement\FilamentSshManagementPlugin;

class AdminPanelProvider extends PanelProvider
{
	public function panel(Panel $panel): Panel
	{
		return $panel
			->default()
			->id('admin')
			->path('admin')
			->plugin(FilamentSshManagementPlugin::make());
	}
}

Example App Service Wrappers

The plugin expects the host app wrappers to adapt package services to app models. A typical wrapper extends the Laravel package service:

namespace App\Support\Ssh;

class SshManagerResolver extends \ZPMPackages\LaravelSshManagement\Services\SshManagerResolver
{
}

Testing

The package includes a lightweight standalone plugin test that verifies:

  • the plugin id
  • resource registration on a panel
  • plugin resolution through the container

Run it from the package directory:

vendor/bin/phpunit tests/FilamentSshManagementPluginTest.php

Notes

  • This package is currently app-coupled by design; it is a reusable plugin package, but not a zero-configuration drop-in for arbitrary Laravel apps.
  • The panel resources rely on the host app for authorization messaging and OS/file management wrappers.
  • If you want a fully standalone Filament package, the next step is extracting the remaining App\... dependencies behind interfaces or plugin configuration.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-05-06

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固