mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Summary: This shows the commits list only (Actual `git diff` will show up at a later date). The inputs are left as text-fields, to allow the form to accept anything that can be resolved. The form is GET, to allow sharing URIs. The conduit method response array is compatible with that of `diffusion.historyquery`, to make it easy to build the "history" table. The hardest part here was, of course, Naming. I think "from" and "onto" are unconfusing, and I'm fairly confident that the "to merge" instructions are in sync with the actual content of the page. Test Plan: Look at several "compare" views, with various values of "from" and "onto". Reviewers: #blessed_reviewers!, epriestley Subscribers: caov297, 20after4, Sam2304, reardencode, baileyb, chad, Korvin Maniphest Tasks: T929 Differential Revision: https://secure.phabricator.com/D15330
181 lines
6.1 KiB
PHP
181 lines
6.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorDiffusionApplication extends PhabricatorApplication {
|
|
|
|
public function getName() {
|
|
return pht('Diffusion');
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Host and Browse Repositories');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/diffusion/';
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-code';
|
|
}
|
|
|
|
public function isPinnedByDefault(PhabricatorUser $viewer) {
|
|
return true;
|
|
}
|
|
|
|
public function getHelpDocumentationArticles(PhabricatorUser $viewer) {
|
|
return array(
|
|
array(
|
|
'name' => pht('Diffusion User Guide'),
|
|
'href' => PhabricatorEnv::getDoclink('Diffusion User Guide'),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getFactObjectsForAnalysis() {
|
|
return array(
|
|
new PhabricatorRepositoryCommit(),
|
|
);
|
|
}
|
|
|
|
public function getRemarkupRules() {
|
|
return array(
|
|
new DiffusionCommitRemarkupRule(),
|
|
new DiffusionRepositoryRemarkupRule(),
|
|
new DiffusionRepositoryByIDRemarkupRule(),
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
$repository_routes = array(
|
|
'/' => array(
|
|
'' => 'DiffusionRepositoryController',
|
|
'repository/(?P<dblob>.*)' => 'DiffusionRepositoryController',
|
|
'change/(?P<dblob>.*)' => 'DiffusionChangeController',
|
|
'history/(?P<dblob>.*)' => 'DiffusionHistoryController',
|
|
'browse/(?P<dblob>.*)' => 'DiffusionBrowseController',
|
|
'lastmodified/(?P<dblob>.*)' => 'DiffusionLastModifiedController',
|
|
'diff/' => 'DiffusionDiffController',
|
|
'tags/(?P<dblob>.*)' => 'DiffusionTagListController',
|
|
'branches/(?P<dblob>.*)' => 'DiffusionBranchTableController',
|
|
'refs/(?P<dblob>.*)' => 'DiffusionRefTableController',
|
|
'lint/(?P<dblob>.*)' => 'DiffusionLintController',
|
|
'commit/(?P<commit>[a-z0-9]+)/branches/'
|
|
=> 'DiffusionCommitBranchesController',
|
|
'commit/(?P<commit>[a-z0-9]+)/tags/'
|
|
=> 'DiffusionCommitTagsController',
|
|
'commit/(?P<commit>[a-z0-9]+)/edit/'
|
|
=> 'DiffusionCommitEditController',
|
|
'compare/' => 'DiffusionCompareController',
|
|
'manage/(?:(?P<panel>[^/]+)/)?'
|
|
=> 'DiffusionRepositoryManagePanelsController',
|
|
'uri/' => array(
|
|
'view/(?P<id>[0-9]\d*)/' => 'DiffusionRepositoryURIViewController',
|
|
'disable/(?P<id>[0-9]\d*)/'
|
|
=> 'DiffusionRepositoryURIDisableController',
|
|
$this->getEditRoutePattern('edit/')
|
|
=> 'DiffusionRepositoryURIEditController',
|
|
'credential/(?P<id>[0-9]\d*)/(?P<action>edit|remove)/'
|
|
=> 'DiffusionRepositoryURICredentialController',
|
|
),
|
|
'edit/' => array(
|
|
'activate/' => 'DiffusionRepositoryEditActivateController',
|
|
'dangerous/' => 'DiffusionRepositoryEditDangerousController',
|
|
'delete/' => 'DiffusionRepositoryEditDeleteController',
|
|
'update/' => 'DiffusionRepositoryEditUpdateController',
|
|
'testautomation/' => 'DiffusionRepositoryTestAutomationController',
|
|
),
|
|
'pathtree/(?P<dblob>.*)' => 'DiffusionPathTreeController',
|
|
),
|
|
|
|
// NOTE: This must come after the rules above; it just gives us a
|
|
// catch-all for serving repositories over HTTP. We must accept requests
|
|
// without the trailing "/" because SVN commands don't necessarily
|
|
// include it.
|
|
'(?:/.*)?' => 'DiffusionRepositoryDefaultController',
|
|
);
|
|
|
|
return array(
|
|
'/(?:'.
|
|
'r(?P<repositoryCallsign>[A-Z]+)'.
|
|
'|'.
|
|
'R(?P<repositoryID>[1-9]\d*):'.
|
|
')(?P<commit>[a-f0-9]+)'
|
|
=> 'DiffusionCommitController',
|
|
|
|
'/source/(?P<repositoryShortName>[^/]+)'
|
|
=> $repository_routes,
|
|
|
|
'/diffusion/' => array(
|
|
$this->getQueryRoutePattern()
|
|
=> 'DiffusionRepositoryListController',
|
|
$this->getEditRoutePattern('edit/') =>
|
|
'DiffusionRepositoryEditController',
|
|
'pushlog/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?' => 'DiffusionPushLogListController',
|
|
'view/(?P<id>\d+)/' => 'DiffusionPushEventViewController',
|
|
),
|
|
'(?P<repositoryCallsign>[A-Z]+)' => $repository_routes,
|
|
'(?P<repositoryID>[1-9]\d*)' => $repository_routes,
|
|
|
|
'inline/' => array(
|
|
'edit/(?P<phid>[^/]+)/' => 'DiffusionInlineCommentController',
|
|
'preview/(?P<phid>[^/]+)/'
|
|
=> 'DiffusionInlineCommentPreviewController',
|
|
),
|
|
'services/' => array(
|
|
'path/' => array(
|
|
'complete/' => 'DiffusionPathCompleteController',
|
|
'validate/' => 'DiffusionPathValidateController',
|
|
),
|
|
),
|
|
'symbol/(?P<name>[^/]+)/' => 'DiffusionSymbolController',
|
|
'external/' => 'DiffusionExternalController',
|
|
'lint/' => 'DiffusionLintController',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getApplicationOrder() {
|
|
return 0.120;
|
|
}
|
|
|
|
protected function getCustomCapabilities() {
|
|
return array(
|
|
DiffusionDefaultViewCapability::CAPABILITY => array(
|
|
'template' => PhabricatorRepositoryRepositoryPHIDType::TYPECONST,
|
|
'capability' => PhabricatorPolicyCapability::CAN_VIEW,
|
|
),
|
|
DiffusionDefaultEditCapability::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
'template' => PhabricatorRepositoryRepositoryPHIDType::TYPECONST,
|
|
'capability' => PhabricatorPolicyCapability::CAN_EDIT,
|
|
),
|
|
DiffusionDefaultPushCapability::CAPABILITY => array(
|
|
'template' => PhabricatorRepositoryRepositoryPHIDType::TYPECONST,
|
|
),
|
|
DiffusionCreateRepositoriesCapability::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getMailCommandObjects() {
|
|
return array(
|
|
'commit' => array(
|
|
'name' => pht('Email Commands: Commits'),
|
|
'header' => pht('Interacting with Commits'),
|
|
'object' => new PhabricatorRepositoryCommit(),
|
|
'summary' => pht(
|
|
'This page documents the commands you can use to interact with '.
|
|
'commits and audits in Diffusion.'),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getApplicationSearchDocumentTypes() {
|
|
return array(
|
|
PhabricatorRepositoryCommitPHIDType::TYPECONST,
|
|
);
|
|
}
|
|
|
|
}
|