-
Notifications
You must be signed in to change notification settings - Fork 73
Add Microsoft/FileContent resource #1676
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Steve Lee (SteveL-MSFT)
wants to merge
4
commits into
main
Choose a base branch
from
stevel-msft-create-filecontent-resource
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+745
−2
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "Name": "filecontent", | ||
| "Kind": "Resource", | ||
| "IsRust": true, | ||
| "Binaries": [ | ||
| "filecontent" | ||
| ], | ||
| "CopyFiles": { | ||
| "All": [ | ||
| "filecontent.dsc.resource.json" | ||
| ] | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| [package] | ||
| name = "filecontent" | ||
| version = "0.1.0" | ||
| edition = "2024" | ||
|
|
||
| [[bin]] | ||
| name = "filecontent" | ||
| path = "src/main.rs" | ||
|
|
||
| [package.metadata.i18n] | ||
| available-locales = ["en-us"] | ||
| default-locale = "en-us" | ||
| load-path = "locales" | ||
|
|
||
| [dependencies] | ||
| rust-i18n = { workspace = true } | ||
| serde = { workspace = true } | ||
| serde_json = { workspace = true } | ||
| sha2 = { workspace = true } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| { | ||
| "$schema": "https://aka.ms/dsc/schemas/v3/bundled/resource/manifest.json", | ||
| "type": "Microsoft/FileContent", | ||
| "description": "Manage the UTF-8 content of a local file.", | ||
| "tags": [ | ||
| "file", | ||
| "linux", | ||
| "macos", | ||
| "windows" | ||
| ], | ||
| "version": "0.1.0", | ||
| "get": { | ||
| "executable": "filecontent", | ||
| "args": [ | ||
| "get", | ||
| { | ||
| "jsonInputArg": "--input", | ||
| "mandatory": true | ||
| } | ||
| ] | ||
| }, | ||
| "set": { | ||
| "executable": "filecontent", | ||
| "args": [ | ||
| "set", | ||
| { | ||
| "jsonInputArg": "--input", | ||
| "mandatory": true | ||
| } | ||
| ], | ||
| "implementsPretest": false, | ||
| "return": "state" | ||
| }, | ||
| "test": { | ||
| "executable": "filecontent", | ||
| "args": [ | ||
| "test", | ||
| { | ||
| "jsonInputArg": "--input", | ||
| "mandatory": true | ||
| } | ||
| ], | ||
| "return": "state" | ||
| }, | ||
| "export": { | ||
| "executable": "filecontent", | ||
| "args": [ | ||
| "export", | ||
| { | ||
| "jsonInputArg": "--input", | ||
| "mandatory": true | ||
| } | ||
| ], | ||
| "supportsFiltering": true | ||
| }, | ||
| "exitCodes": { | ||
| "0": "Success", | ||
| "1": "Invalid arguments", | ||
| "2": "Invalid input", | ||
| "3": "File operation error" | ||
| }, | ||
| "schema": { | ||
| "embedded": { | ||
| "$schema": "http://json-schema.org/draft-07/schema#", | ||
| "title": "File Content", | ||
| "description": "Manage the UTF-8 content of a local file.", | ||
| "type": "object", | ||
| "required": [ | ||
| "path" | ||
| ], | ||
| "properties": { | ||
| "content": { | ||
| "type": "string", | ||
| "title": "Content", | ||
| "description": "The UTF-8 content of the file.", | ||
| "writeOnly": true | ||
| }, | ||
| "sha256": { | ||
| "type": "string", | ||
| "title": "SHA-256", | ||
| "description": "The SHA-256 hash of the file content.", | ||
| "pattern": "^[A-Fa-f0-9]{64}$" | ||
| }, | ||
| "sha512": { | ||
| "type": "string", | ||
| "title": "SHA-512", | ||
| "description": "The SHA-512 hash of the file content.", | ||
| "pattern": "^[A-Fa-f0-9]{128}$" | ||
| }, | ||
| "path": { | ||
| "type": "string", | ||
| "title": "Path", | ||
| "description": "The path to the local file.", | ||
| "minLength": 1 | ||
| }, | ||
| "_exist": { | ||
| "type": "boolean", | ||
| "title": "Exists", | ||
| "description": "Indicates whether the file should exist. Set to false to remove the file." | ||
| }, | ||
| "_inDesiredState": { | ||
| "type": "boolean", | ||
| "title": "In desired state", | ||
| "description": "Indicates whether the file is in the desired state. Only returned by test.", | ||
| "readOnly": true | ||
| } | ||
| }, | ||
| "additionalProperties": false | ||
| } | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| _version = 1 | ||
|
|
||
| [main] | ||
| missingOperation = "Missing operation. Usage: filecontent <get|set|test|export> --input <json>" | ||
| unknownOperation = "Unknown operation: '%{operation}'. Expected: get, set, test, or export" | ||
| missingInput = "Missing --input argument" | ||
| missingInputValue = "Missing value for --input argument" | ||
| invalidJson = "Invalid JSON input: %{error}" | ||
| serializeError = "Failed to serialize output: %{error}" | ||
|
|
||
| [input] | ||
| emptyPath = "The path must not be empty" | ||
| invalidHash = "%{name} must contain exactly %{length} hexadecimal characters" | ||
|
|
||
| [get] | ||
| readError = "Failed to read file '%{path}': %{error}" | ||
|
|
||
| [set] | ||
| contentRequired = "The content property is required when setting a file" | ||
| writeError = "Failed to write file '%{path}': %{error}" | ||
| removeError = "Failed to remove file '%{path}': %{error}" | ||
| sha256Mismatch = "The sha256 value does not match the content property" | ||
| sha512Mismatch = "The sha512 value does not match the content property" | ||
|
|
||
| [export] | ||
| readError = "Failed to export file '%{path}' as UTF-8 content: %{error}" | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.