FEAT: Automatic Signature Updates:#208
Merged
carlwilson merged 16 commits intorc/1.6from Mar 29, 2022
Merged
Conversation
Signatures now compiled and hosted on a web based update site: - Site URL set in config. - Docker based update web app to host and serve signature information. - FIDO CLI arguments `-sigs check` and `-sigs update` control automatic signature updates. This was implemented by: - implementing a REST service for FIDO signatures in `fido.signatures`; + simple flask REST app that parses a static dir/file structure; + endpoint to list versions; + endpoint that identifies latest version; + endpoints to download sig file collateral by version and `latest` for signature updates; + added resources for legacy format and container signatures; - adding simple REST client functionality to FIDO CLI: + `-sigs check` compares configured PRONOM sig version with REST latest and indicates if an update is required; + `-sigs update` pulls the latest version if the installed version is stale and updates the conf file as required;
- extra options for sig file management: - list available sig files; - check if new files exist; - update automatically; and - download specific version; - 'versions.xml' now has update site field; - updated `README.md` with new signature update instructions; and - fixed minor markdown style issues.
…o refact/remove-sigs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
README.mdwith new signature update instructions; and