Dağıtım için bir uzantı yazma
Bu sayfa, bir uzantı muhtemelen Wikimedia vikiler için konuşlandırılmadan önce inceleme süreci boyunca bu uzantıyı almak üzere bir MediaWiki uzantı sağlayıcısı veya kod görevlisi için gereken adımlarını belgeliyor. Güvenlik ve ölçeklenebilirlik sorunları için Wikimedia sunucuları üzerinde konuşlandırılan her şey gözden geçirilmelidir. "Uzantı" kelimesinin aşağıda göründüğü yerlerde, "görünüm" veya "kod" eşanlamlıdır.
Dağıtım için bir uzantı yazmak, zaman alan bir proje olabilir; İlgilenen herhangi bir tarafın, sürenin dolmasından çok önce süreci başlatması teşvik edilir.
İncelenmeyi bekleyen tüm uzantıların listesini görebilirsiniz.
Bir uzantı incelemelerden geçtikten sonra, uzantının Wikimedia Vakfı Yayın Yöneticisi tarafından konuşlandırılması planlanabilir.
Kontrol Listesi/Süreç
Genel ön koşullar ve beklentiler
Follow the general guidelines and recommendations on writing extensions. Read Coding conventions, Pre-commit checklist, Performance guidelines, and Security for developers and make sure that your code follows these guidelines.
- Documentation:
- Create an
Extension:My Extension
page in the Extension : namespace on mediawiki.org to document for developers and people who will install or configure the extension. Use Template:Extension for this. You may use the field below to assist you with it. - Create a
Help:Extension:My Extension
page in theHelp:Extension:
namespace on mediawiki.org for your extension's end-user documentation . Cross-link it with theExtension:My Extension
page above. Also see Manual:Developing extensions#Help documentation . Example: Help:VisualEditor/User guide . Screencasts can be useful in explaining how things work. You may use the field below to assist you with it.
- Create an
- Code hosting - Request a new Git/Gerrit repository to store the source code for your extension. Gerrit is where all code review will happen.
- Issue tracking - Request a project in Phabricator to track bugs and feature requests for your extension. Get notified of new tasks reported in your project.
- Stewardship - Add the project to the Developers/Maintainers page indicating who will be responsible for it's long term stewardship and maintenance.
- Localization - Your extension will need to become translatable on Translatewiki.net before it can be deployed anywhere. This requires your code to have proper i18n files, etc.
- Once the extension is deployed on a Wikimedia testing wiki, it should be added to the "Extensions used by Wikimedia - Upcoming" group.
- Once the extension is deployed on any Wikimedia production wiki, it should be added to one of the other "Extensions used by Wikimedia - *" groups: "Main" for extensions that are used on all wikis, or are otherwise very prominent; "Advanced" for extensions for power users or extensions that work only on some wikis; and so on. API message files and extensions that are only for highly technical people must be in the "Technical" group.
- Gating deployment and feature flags - The Wikimedia Foundation runs nearly a thousand wikis in hundreds of languages. When we deploy code on our cluster, we enable extensions on a wiki-by-wiki basis and often configure them differently for each one. Extensions should have feature flags (e.g.,
wgMaxGeoSearchRadius
) for turning particular behavior on and off or configuring some part of the extension, where that makes sense. When extensions are deployed, they will be gated behind a Wikimedia-specific global configuration variable such aswmgUseEventLogging
. This allows the extension to be deployed on a subset of wikis (for example, test and test2) without affecting all wikis. You can search through the existing very large CommonSettings.php and InitialiseSettings.php for reference. - Unit testing - Be nice, prepare for sufficient automated testing. Various parts of the code needs different types of testing. In particular check out Manual:PHP unit testing and Manual:JavaScript unit testing .
- Database schema - See MediaWiki database policy . If your code requires a schema change (e.g. a new column on an existing table) either for core or an extension, keep in mind the schema change may happen only years later on the Wikimedia cluster. If at all possible, avoid schema changes.
- Compatibility - Your extension must be compatible with all extensions deployed on the Wikimedia cluster.
- Hosting a test version - Cloud VPS projects can be used to host test wikis with your extension installed for testing and demonstrations. See the Cloud Services Getting Started guide for more information.
- Code reviews - You should be closely working with trusted and established MediaWiki developers (ideally, maintainers of core or extensions that have already been deployed to Wikimedia sites) during the entire development and deployment process, in order to ensure that you are familiar with the specific requirements and quirks for writing Wikimedia-deployed code. If you do not have any particular developers in mind, ask in IRC or on the developers' mailing lists . All Wikimedia-deployed extensions and those in the process of becoming deployed must follow the Gerrit/Ayrıcalık politikası .
Once above steps are done, consider getting community support for your idea:
- Community support can be shown by having an active discussion on the need of the extension on a wiki and documenting the responses. If there is no active community support, support can be built through discussions and proposals.
- Post your idea to the wikitech-l mailing list to get feedback from experienced developers and Wikimedians. People may point you to another extension that is already in use whose functionality duplicates what you want, or could be easily extended to do what you want. In that case, you should use Git to work on the extension that is already in use.
- Communicate your ideas and plans to affected wikis to garner both support, suggestions, and other feedback.
- To make the below steps easier and faster for the reviewers, you are also encouraged to create a MW-Vagrant role for the extension.
If you have followed the advice above and the feedback given by early reviewers closely, you should have less problems with the next steps.
Preparing for deployment
- Create a production deployment tracking task within Phabricator (in the #Wikimedia-Extension-setup and #Wikimedia-Extension-Review-Queue projects) to get an extension into the review queue. This task should only concern deployment itself. Any issues which block deployment should be separate subtasks (listed under "Task Graph") that block this parent task.
- Your deployment tracking bug should point to on-wiki community consensus (and/or community support/desire) for having the extension installed on a particular wiki, if applicable.
- Request and incorporate feedback from the following reviews. These can be included as a "checklist" within the production deployment tracking task's description, (e.g. phab:T190716) or as substasks of the production deployment tracking task. Also note that not every review listed below is a hard requirement for production deployment and that there is no specific order of reviews which need be followed.
- A review from the product owner for the affected area, if applicable. If you are unsure who that might be, it is likely a good idea to reach out to various engineering teams within the Product or Technology verticals for more information and guidance.
- A design review, if applicable.
- A beta feature review , if your extension adds a beta feature.
- A application security review : to open a request create a application security review task and mark it as a subtask of the production deployment tracking task (via "Edit Task" in the upper right corner). A security readiness review can be a blocker for production deployment depending upon the details of the request and its results.
- A security review for any new external dependencies which should then be added to mediawiki/vendor. Here is a basic list the Security Team typically checks when reviewing third party/vendor code.
- A performance review . This review is typically not a blocker for production deployment.
- If you have reasons to think that a database review is needed, create a request in Phabricator.
- IMPORTANT: Any serious (i.e. blocking) issues identified within the aforementioned reviews must be addressed before any attempt to deploy the code to production is made.
- Request deployment to the Beta Kümesi . See #Deploy to Beta Cluster below for more information. While it is strongly recommended to have a security readiness review performed prior to beta cluster deployment, the timing of various project milestones and the nature of the project itself may not accommodate this. In this case, it is best to discuss any proposed beta cluster deployments with the Security Team outside of any requested reviews. Having a proper, long-term maintenance plan for the code base that does not rely on individual volunteers has often been a blocker for passing the application security review.[1]
- Make sure the extension is automatically branched by make-wmf-branch.
- IMPORTANT: Not receiving a satisfactory security readiness review is a blocker for this step.
- IMPORTANT: Do this early! Ideally, at least three weeks prior to your target deployment date, to ensure that your extension is present as a submodule in the required branches. (The extension submodule must be present in all branches currently running on the cluster, or the localization cache builder will fail.)
- Request a date/time for deployment in the deployment tracking task to get it added to the deployment calendar.
- "You" (the person or persons driving/requesting this) will need to be online (on IRC in #wikimedia-operations bağlan) and available during the deployment to respond to any issues that might arise.
This list outlines a broad procedure to follow, including requirements that should be met, but it does not amount to a "process". In particular, the activity of shipping a new extension into production does not have a WMF owner, which can make it tricky to find reviews for related patches. In case of issues, it is recommended to find people (see Gerrit/Code review/Getting reviews#Add reviewers ). Developers are advised that simply opening Phabricator tasks and waiting for someone to pay attention to them is unlikely to be sufficient. See Martin Urbanec's explanation at phab:T61245#9152895.
Beta Kümesine Dağıtın
Before enabling a new extension in production, it must be tested on the Beta Cluster. Here are the steps required to deploy and enable a new extension on Beta. (If your extension has more steps/dependencies, say Wikibase, make sure to check with someone before you deploy.)
Süreç
- Add the new extension submodule to the git mediawiki/extensions repo if it's not already in it. See example. This will result in the code being deployed (unused) to the Beta Cluster.
- Move your extension's CI config to the "Wikimedia production" section, add the "
in-wikimedia-production
" job template, and make sure it has and passes all the expected jobs for production code. See example. - Add your extension to the json make-wmf-branch release tool at least two weeks prior to your target date for enabling on the Beta Cluster. It will add the extension as a submodule of mediawiki/core when the weekly deploy branch is cut, and the code will be deployed (unused) to production (see explanation in the next step). See example.
- Add your extension to
extension-list
. See example. This requires that the code be present on every branch running in production, sinceextension-list
is used to build the CDB database for i18n files in both Beta and production.[2] - Add your extension config variable to
InitialiseSettings.php
and set it to be defaultfalse
. See example. - Add your extension config variable (same as in previous step) to
InitialiseSettings-labs.php
and set it to betrue
on Beta Cluster wikis you want it to be on. You may want to turn it off for loginwiki (which doesn't have most extensions). See example. - Load your extension in
CommonSettings-labs.php
. See example.
Notlar
The Beta Cluster uses the same wmf-config directory in the operations/mediawiki-config repository as production, but in addition Beta Cluster servers load InitialiseSettings-labs.php
and CommonSettings-labs.php
files so you can have settings that only apply to Beta Cluster.
Read more about these config files).
When testing on Beta Cluster before production, these can override wmgUseMyExtension
, setting it to true on one or more Beta Cluster wikis.
(Once your extension is in use in the production wiki(s) corresponding to Beta Cluster, you can probably remove the -labs.php
overrides.)
The Beta Cluster runs code from the master branch in Git. You should merge code into the master branch early and often in order to exercise that code as fully as possible on the Beta Cluster before it goes out to the general public. If you have specific questions about using the Beta Cluster, you can e-mail the Quality Assurance mailing list or ask in #wikimedia-releng bağlan on IRC .
Skins follow the same process (but in mediawiki/skins) repository.
After deploying to production
- Update your
Extension:My Extension
page on mediawiki.org by adding the{{OnWikimedia}}
template.
Ayrıca bakınız
- Review queue project
- Requests for comment – a place for discussion of large project ideas for MediaWiki
- How to deploy code#Case 1d: new extension – details of deploying a new extension on the Wikimedia cluster
- Requesting wiki configuration changes and Limits to configuration changes
Kaynakça
- ↑ See, for example, T260466#6530378.
- ↑ mailarchive:engineering/2018-March/000520.html