转到文件
2024-05-28 14:14:09 +00:00
bin Add a cli tool to roll back transactions 2019-04-02 00:48:35 -05:00
scripts Fix init script so that rollback cli works 2020-09-28 19:21:24 -05:00
src Make OAuth session persistent in Phabricator 2024-05-28 14:14:09 +00:00
__phutil_library_init__.php don't put phutil module in src/ subdirectory. 2016-03-03 23:56:44 -06:00
__phutil_library_map__.php Remove the Gerrit application 2024-05-28 12:31:57 +00:00
.arcconfig Remove 'load' library from .arcconfig 2016-06-07 16:27:41 -05:00
.arclint Add a basic arclint config 2016-05-30 13:19:49 -06:00
.gitignore gitignore the phutil_module_cache 2016-11-29 00:14:33 -06:00
LICENSE Improved README and added LICENSE (apache license 2.0) 2016-05-23 19:53:31 -05:00
README.md Remove the Gerrit application 2024-05-28 12:31:57 +00:00

About this repository

This repository contains miscellaneous extensions to Phabricator which are specialized for the needs of the Wikimedia Foundation's Phabricator instance at https://phabricator.wikimedia.org

These extensions provide some basic custom functionality and integration with Wikimedia's systems.

Installation

This Repository consists of a single libphutil module which can be used in phabricator by simply adding the repository root to the list of library paths specified by the key load-libraries within phabricator's config.

For example:

"load-libraries": [
  "/path/to/this/repository/",
  "/path/to/another/extension/"
]

For more details, see this article in the Phorge documentation.

Overview of extensions

The extensions are under the src/ directory, organized into sub-directories by extension type.

src/oauth

PhabricatorMediaWikiAuthProvider and PhutilMediaWikiAuthAdapter constitute an authentication provider adapter that enables Phabricator to use OAuth federation to offload phabricator logins to Mediawiki's OAuth1 endpoint.

src/customfields

Custom fields are extensions which add a field to various objects in Phabricator. Wikimedia makes use of a few custom fields to extend user profile pages and Differential code review pages.

MediaWikiUserpageCustomField

This custom field is used on phabricator user profile pages, displays a link to a user's wiki userpage. The wiki userpage url is discovered by looking up the link which is created by PhabricatorMediaWikiAuthProvider when a user links their mediawiki login to their phabricator account.

LDAPUserpageCustomField

Another custom field used on phabricator user profile pages which simply displays the ldap username that is associated with the user's phabricator account.

src/gerrit

Implements a custom commit field for Change-Id's.

Security Policy Extensions

See src/policy/README

Transaction Rollback

There is a command line tool in bin/rollback which can be used to roll back transactional edits on Maniphest tasks. Other phabricator applications could be supported with a little effort, however, none are supported currently. See src/workflow/RollbackTransactionsWorkflow.php