mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d0128afa29
Summary: Applied some more linter fixes that I previously missed because my global `arc` install was out-of-date. Test Plan: Will run `arc unit` on another host. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9443
26 lines
821 B
PHP
Executable file
26 lines
821 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
if ($argc !== 2 || $argv[1] === '--help') {
|
|
echo "Usage: aphrontpath.php <url>\n";
|
|
echo "Purpose: Print controller which will process passed <url>.\n";
|
|
exit(1);
|
|
}
|
|
|
|
$url = parse_url($argv[1]);
|
|
$path = '/'.(isset($url['path']) ? ltrim($url['path'], '/') : '');
|
|
|
|
$config_key = 'aphront.default-application-configuration-class';
|
|
$application = PhabricatorEnv::newObjectFromConfig($config_key);
|
|
$application->setRequest(new AphrontRequest('', $path));
|
|
|
|
list($controller) = $application->buildControllerForPath($path);
|
|
if (!$controller && substr($path, -1) !== '/') {
|
|
list($controller) = $application->buildControllerForPath($path.'/');
|
|
}
|
|
if ($controller) {
|
|
echo get_class($controller)."\n";
|
|
}
|