Force updates on resources from manifest #3179
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The module dkan_periodic_updates provides functionality so that data publishers can upload a manifest file which is used for executing periodic imports of the specified resources. That manifest file is a csv file with format resource_id,frequency,file_url,import_to_datastore.
Currently the manifest supports specifying a frequency that can be daily, weekly or monthly, but sometimes there are urgent changes that need to be pulled into the site so the publishers need to execute the update earlier than specified in the manifest. This PR adds a new drush command to the module dkan_periodic_updates so we can force the update on all of the resources from the manifest (ignoring the frequency).
Steps to test
drush dkan-force-resources-update
(you can run it with -v for verbose mode).