Standardize settings file naming and relocate documentation files Fix code quality violations from rsx:check Reorganize user_management directory into logical subdirectories Move Quill Bundle to core and align with Tom Select pattern Simplify Site Settings page to focus on core site information Complete Phase 5: Multi-tenant authentication with login flow and site selection Add route query parameter rule and synchronize filename validation logic Fix critical bug in UpdateNpmCommand causing missing JavaScript stubs Implement filename convention rule and resolve VS Code auto-rename conflict Implement js-sanitizer RPC server to eliminate 900+ Node.js process spawns Implement RPC server architecture for JavaScript parsing WIP: Add RPC server infrastructure for JS parsing (partial implementation) Update jqhtml terminology from destroy to stop, fix datagrid DOM preservation Add JQHTML-CLASS-01 rule and fix redundant class names Improve code quality rules and resolve violations Remove legacy fatal error format in favor of unified 'fatal' error type Filter internal keys from window.rsxapp output Update button styling and comprehensive form/modal documentation Add conditional fly-in animation for modals Fix non-deterministic bundle compilation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
123 lines
3.8 KiB
PHP
Executable File
123 lines
3.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* CODING CONVENTION:
|
|
* This file follows the coding convention where variable_names and function_names
|
|
* use snake_case (underscore_wherever_possible).
|
|
*/
|
|
|
|
namespace App\RSpade\Commands\Rsx;
|
|
|
|
use App\Console\Commands\FrameworkDeveloperCommand;
|
|
use App\Models\File_Storage_Model;
|
|
use Rsx\Models\File_Attachment_Model;
|
|
|
|
/**
|
|
* Storage Info Command
|
|
* =====================
|
|
*
|
|
* PURPOSE:
|
|
* Display detailed information about physical file storage by hash.
|
|
*
|
|
* FRAMEWORK DEVELOPER ONLY:
|
|
* This command is hidden unless IS_FRAMEWORK_DEVELOPER=true in .env
|
|
* Provides low-level access to physical storage system for debugging.
|
|
*
|
|
* DISPLAYS:
|
|
* - Storage hash and file size
|
|
* - Storage path on disk
|
|
* - Physical file existence
|
|
* - Reference count (number of attachments)
|
|
* - Audit information (created/updated)
|
|
*/
|
|
class RsxStorageInfoCommand extends FrameworkDeveloperCommand
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'rsx:storage:info {hash : SHA-256 hash or incremented variant}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Display detailed information about physical file storage';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
$hash = $this->argument('hash');
|
|
|
|
// Find storage by hash
|
|
$storage = File_Storage_Model::where('hash', $hash)->first();
|
|
|
|
if (!$storage) {
|
|
$this->error("Error: File storage not found with hash: {$hash}");
|
|
return 1;
|
|
}
|
|
|
|
// Count references
|
|
$attachments = File_Attachment_Model::where('file_storage_id', $storage->id)->get();
|
|
$ref_count = $attachments->count();
|
|
|
|
// Display storage information
|
|
$this->info('');
|
|
$this->info('File Storage Information');
|
|
$this->info('========================');
|
|
$this->info('');
|
|
|
|
$this->info('Storage:');
|
|
$this->info(" ID: {$storage->id}");
|
|
$this->info(" Hash: {$storage->hash}");
|
|
$this->info(" Size: {$storage->size} bytes ({$storage->get_human_size()})");
|
|
$this->info('');
|
|
|
|
$this->info('Physical File:');
|
|
$this->info(" Path: {$storage->get_storage_path()}");
|
|
$this->info(" Full Path: {$storage->get_full_path()}");
|
|
$this->info(" Exists: " . ($storage->file_exists() ? 'Yes' : 'No'));
|
|
|
|
if ($storage->file_exists()) {
|
|
$mime = mime_content_type($storage->get_full_path());
|
|
$this->info(" MIME Type: {$mime}");
|
|
}
|
|
|
|
$this->info('');
|
|
|
|
$this->info('References:');
|
|
$this->info(" Attachments: {$ref_count}");
|
|
|
|
if ($ref_count > 0 && $ref_count <= 10) {
|
|
$this->info('');
|
|
$this->info(' Attachment Keys:');
|
|
foreach ($attachments as $attachment) {
|
|
$attached_to = $attachment->fileable_type
|
|
? " → {$attachment->fileable_type}:{$attachment->fileable_id}"
|
|
: " (orphaned)";
|
|
$this->info(" - " . substr($attachment->key, 0, 24) . "... {$attached_to}");
|
|
}
|
|
} elseif ($ref_count > 10) {
|
|
$this->info(" (Use rsx:file:list to see all attachments)");
|
|
}
|
|
|
|
$this->info('');
|
|
|
|
$this->info('Audit:');
|
|
$this->info(" Created: {$storage->created_at}");
|
|
$this->info(" Updated: {$storage->updated_at}");
|
|
if ($storage->created_by) {
|
|
$this->info(" Created By: User #{$storage->created_by}");
|
|
}
|
|
if ($storage->updated_by) {
|
|
$this->info(" Updated By: User #{$storage->updated_by}");
|
|
}
|
|
$this->info('');
|
|
|
|
return 0;
|
|
}
|
|
}
|