forked from fa/breadcrumb-the-shire
Rename the top-level lib/ directory to core/ so the project root immediately communicates which code is core platform and which lives in modules/. PHP namespaces (MintyPHP\*) are unchanged — only the Composer PSR-4 path mapping moves from lib/ to core/. Module-internal lib/ directories (modules/*/lib/) are untouched. Updated across the full stack: - composer.json PSR-4 mapping - bootstrap entry points (web/index.php, bin/*, tests/bootstrap.php) - tooling configs (phpstan.neon, phpunit.xml, php-cs-fixer) - 26 architecture contract tests - enforcement-policy, guard-catalog, quality-gates - all documentation (CLAUDE.md, README, 25 docs/, .agents/skills/) - bin/qa-extended.sh search paths - .claude/settings.local.json permission paths Workflow: .agents/runs/CORE-LIB-RENAME-001/ (Analyst → Planner → Executor → Code Review (4 findings fixed) → Security Review → Acceptance Test → Finalizer) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* Quick CLI diagnostic for helpdesk BC OData connectivity.
|
|
*
|
|
* Usage: php bin/helpdesk-diagnose.php <customer_no>
|
|
* Example: php bin/helpdesk-diagnose.php 10254
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
chdir(__DIR__ . '/..');
|
|
require 'vendor/autoload.php';
|
|
require 'config/config.php';
|
|
require 'core/Support/helpers.php';
|
|
|
|
$container = require 'core/App/registerContainer.php';
|
|
setAppContainer($container);
|
|
|
|
use MintyPHP\Module\Helpdesk\Service\BcODataGateway;
|
|
use MintyPHP\Module\Helpdesk\Service\HelpdeskSettingsGateway;
|
|
|
|
$customerNo = trim($argv[1] ?? '');
|
|
if ($customerNo === '') {
|
|
echo "Usage: php bin/helpdesk-diagnose.php <customer_no>\n";
|
|
exit(1);
|
|
}
|
|
|
|
$settings = app(HelpdeskSettingsGateway::class);
|
|
|
|
echo "=== Helpdesk OData Diagnosis ===\n\n";
|
|
echo "Base URL: " . $settings->getODataBaseUrl() . "\n";
|
|
echo "Company: " . $settings->getCompanyName() . "\n";
|
|
echo "Auth mode: " . $settings->getAuthMode() . "\n";
|
|
echo "Configured: " . ($settings->isConfigured() ? 'YES' : 'NO') . "\n";
|
|
echo "\n";
|
|
echo "Entity URLs:\n";
|
|
echo " Customer: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_CUSTOMER) . "\n";
|
|
echo " Contact: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_CONTACT) . "\n";
|
|
echo " Tickets: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_TICKETS) . "\n";
|
|
echo "\n";
|
|
|
|
if (!$settings->isConfigured()) {
|
|
echo "ERROR: Configuration incomplete. Cannot run diagnosis.\n";
|
|
exit(1);
|
|
}
|
|
|
|
$gateway = app(BcODataGateway::class);
|
|
|
|
echo "Running diagnosis for customer: {$customerNo}\n";
|
|
echo str_repeat('─', 60) . "\n\n";
|
|
|
|
$diagnosis = $gateway->diagnoseCustomer($customerNo);
|
|
|
|
foreach ($diagnosis as $key => $result) {
|
|
echo "── {$key} ──\n";
|
|
if (is_string($result)) {
|
|
echo " Error: {$result}\n\n";
|
|
continue;
|
|
}
|
|
echo " URL: " . ($result['url'] ?? '?') . "\n";
|
|
echo " HTTP: " . ($result['http_code'] ?? '?') . "\n";
|
|
echo " Count: " . ($result['count'] ?? 0) . "\n";
|
|
|
|
if (!empty($result['error'])) {
|
|
echo " Error: " . $result['error'] . "\n";
|
|
}
|
|
|
|
if (!empty($result['fields'])) {
|
|
echo " Fields: " . implode(', ', $result['fields']) . "\n";
|
|
}
|
|
|
|
if (!empty($result['first_record'])) {
|
|
echo " 1st record:\n";
|
|
foreach ($result['first_record'] as $field => $value) {
|
|
$display = is_string($value) ? $value : json_encode($value, JSON_UNESCAPED_UNICODE);
|
|
echo " {$field}: {$display}\n";
|
|
}
|
|
}
|
|
echo "\n";
|
|
}
|