-
Notifications
You must be signed in to change notification settings - Fork 8
feat: add svm tools and consumed in iscsi tests #104
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
Merged
Merged
Changes from all commits
Commits
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
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,67 @@ | ||
| package rest | ||
|
|
||
| import ( | ||
| "bytes" | ||
| "context" | ||
| "fmt" | ||
| "github.com/netapp/ontap-mcp/ontap" | ||
| "net/http" | ||
| "net/url" | ||
| ) | ||
|
|
||
| func (c *Client) CreateSVM(ctx context.Context, svm ontap.SVM) error { | ||
| var ( | ||
| buf bytes.Buffer | ||
| statusCode int | ||
| ) | ||
| responseHeaders := http.Header{} | ||
|
|
||
| builder := c.baseRequestBuilder(`/api/svm/svms`, &statusCode, responseHeaders). | ||
| BodyJSON(svm). | ||
| ToBytesBuffer(&buf) | ||
|
|
||
| if err := c.buildAndExecuteRequest(ctx, builder); err != nil { | ||
| return err | ||
| } | ||
|
|
||
| return c.handleJob(ctx, statusCode, buf) | ||
| } | ||
|
|
||
| func (c *Client) DeleteSVM(ctx context.Context, svmName string) error { | ||
| var ( | ||
| buf bytes.Buffer | ||
| statusCode int | ||
| svmData ontap.GetData | ||
| ) | ||
| responseHeaders := http.Header{} | ||
|
|
||
| params := url.Values{} | ||
| params.Set("name", svmName) | ||
| params.Set("fields", "uuid") | ||
|
|
||
| builder := c.baseRequestBuilder(`/api/svm/svms`, &statusCode, responseHeaders). | ||
| Params(params). | ||
| ToJSON(&svmData) | ||
|
|
||
| if err := c.buildAndExecuteRequest(ctx, builder); err != nil { | ||
| return err | ||
| } | ||
|
|
||
| if svmData.NumRecords == 0 { | ||
| return fmt.Errorf("failed to get details of SVM %s because it does not exist", svmName) | ||
| } | ||
| if svmData.NumRecords != 1 { | ||
| return fmt.Errorf("failed to get detail of SVM %s because there are %d matching records", | ||
| svmName, svmData.NumRecords) | ||
| } | ||
|
|
||
| builder2 := c.baseRequestBuilder(`/api/svm/svms/`+svmData.Records[0].UUID, &statusCode, responseHeaders). | ||
| Delete(). | ||
| ToBytesBuffer(&buf) | ||
|
|
||
| if err := c.buildAndExecuteRequest(ctx, builder2); err != nil { | ||
| return err | ||
| } | ||
|
|
||
| return c.handleJob(ctx, statusCode, buf) | ||
| } | ||
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,74 @@ | ||
| package server | ||
|
|
||
| import ( | ||
| "context" | ||
| "errors" | ||
| "fmt" | ||
| "github.com/modelcontextprotocol/go-sdk/mcp" | ||
| "github.com/netapp/ontap-mcp/ontap" | ||
| "github.com/netapp/ontap-mcp/tool" | ||
| ) | ||
|
|
||
| func (a *App) CreateSVM(ctx context.Context, _ *mcp.CallToolRequest, parameters tool.SVM) (*mcp.CallToolResult, any, error) { | ||
| if !a.locks.TryLock(parameters.Cluster) { | ||
| return errorResult(fmt.Errorf("another write operation is in progress on cluster %s, please try again", parameters.Cluster)), nil, nil | ||
| } | ||
| defer a.locks.Unlock(parameters.Cluster) | ||
|
|
||
| svmCreate, err := newCreateSVM(parameters) | ||
| if err != nil { | ||
| return nil, nil, err | ||
| } | ||
|
|
||
| client, err := a.getClient(parameters.Cluster) | ||
| if err != nil { | ||
| return errorResult(err), nil, err | ||
| } | ||
|
|
||
| err = client.CreateSVM(ctx, svmCreate) | ||
| if err != nil { | ||
| return errorResult(err), nil, err | ||
| } | ||
|
|
||
| return &mcp.CallToolResult{ | ||
| Content: []mcp.Content{ | ||
| &mcp.TextContent{Text: "SVM created successfully"}, | ||
| }, | ||
| }, nil, nil | ||
| } | ||
|
|
||
| func (a *App) DeleteSVM(ctx context.Context, _ *mcp.CallToolRequest, parameters tool.SVM) (*mcp.CallToolResult, any, error) { | ||
| if !a.locks.TryLock(parameters.Cluster) { | ||
| return errorResult(fmt.Errorf("another write operation is in progress on cluster %s, please try again", parameters.Cluster)), nil, nil | ||
| } | ||
| defer a.locks.Unlock(parameters.Cluster) | ||
|
|
||
| if parameters.Name == "" { | ||
| return nil, nil, errors.New("SVM name is required") | ||
| } | ||
|
|
||
| client, err := a.getClient(parameters.Cluster) | ||
| if err != nil { | ||
| return errorResult(err), nil, err | ||
| } | ||
|
|
||
| err = client.DeleteSVM(ctx, parameters.Name) | ||
| if err != nil { | ||
| return errorResult(err), nil, err | ||
| } | ||
|
|
||
| return &mcp.CallToolResult{ | ||
| Content: []mcp.Content{ | ||
| &mcp.TextContent{Text: "SVM deleted successfully"}, | ||
| }, | ||
| }, nil, nil | ||
| } | ||
|
|
||
| func newCreateSVM(in tool.SVM) (ontap.SVM, error) { | ||
| out := ontap.SVM{} | ||
| if in.Name == "" { | ||
| return out, errors.New("SVM name is required") | ||
| } | ||
| out.Name = in.Name | ||
| return out, nil | ||
| } |
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
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.