Problem/Motivation
As a new system for contribution records is being built (see
https://www.drupal.org/project/infrastructure/issues/3322116 ā
), we will need changes on D7 www.drupal.org to adapt and communicate with it.
The following tasks are part of the bigger plan detailed here: https://docs.google.com/spreadsheets/d/1UVM8Bs6VdoJFo2-DQGjTRo5yeecMWMvp...
ā
Migrate existing credits to the new system
ā
Provide links on issues to the new system related record
ā
Trigger webhook for comments to update contributors on new system
ā
Trigger webhook for issue status change to update the contribution record status on the new system
ā
Hide any form or reference to the old attribution system (comment form on issues)
ā
Change to user profiles to read from the new system
ā
Changes to organizations to read from the new system
š§ Changes to marketplace to read from the new system
š§ Improve UX to add individual contribution records and bulk credits
I will use this issue/branch to put all the D7 changes that are required.
Deployment
* Make sure that the IP of the system that will trigger the requests is added to the list of allowed sources in the new system (D10).
* Set variable "contribution_records_base_url" to the URL of the D10 system.
* Drush commands:
** "drush drupalorg-contribution-records-sync [--raw-import=(1|2)] [--days-ago=30] [--nids=1,2,3]" this will queue a request to sync the contribution record matching the options given. We can give the nids directly, say issues updated in the last XX days, or no options to send a sync request for ALL issues. The raw-import option will send data to the new system and this will not be queried back. If raw-import is not present, the new system will trigger a query to the old system (D7), so do it carefully.
** FULL DIRECT RAW IMPORT: drush drupalorg-contribution-records-sync --raw-import=1 (when the queue runs, the record will be created instantly in the receiving system. it takes a few queries and inserts on the receiving end and could potentially timeout on big requests)
** FULL QUEUED RAW IMPORT: drush drupalorg-contribution-records-sync --raw-import=2 (when the queue runs, the record will be queued to be created in the new system, so the D7 push operation will be quick and should not timeout)
** "drush queue-run drupalorg_issue_events" this will process the issue events queue, which include the above items, as well as new items added when issues are updated or comments are made. It will trigger posts requests to the D10 system.