feat: add workspace_id, owner_name to agent manifest (#10199)

Co-authored-by: Kyle Carberry <kyle@carberry.com>
Co-authored-by: Atif Ali <atif@coder.com>
This commit is contained in:
Szabolcs Fruhwald
2023-12-03 13:41:54 -08:00
committed by GitHub
parent 28eca2e53f
commit baf3bf6b9c
7 changed files with 46 additions and 17 deletions

7
coderd/apidoc/docs.go generated
View File

@ -6917,6 +6917,10 @@ const docTemplate = `{
"motd_file": {
"type": "string"
},
"owner_name": {
"description": "OwnerName and WorkspaceID are used by an open-source user to identify the workspace.\nWe do not provide insurance that this will not be removed in the future,\nbut if it's easy to persist lets keep it around.",
"type": "string"
},
"scripts": {
"type": "array",
"items": {
@ -6925,6 +6929,9 @@ const docTemplate = `{
},
"vscode_port_proxy_uri": {
"type": "string"
},
"workspace_id": {
"type": "string"
}
}
},

View File

@ -6103,6 +6103,10 @@
"motd_file": {
"type": "string"
},
"owner_name": {
"description": "OwnerName and WorkspaceID are used by an open-source user to identify the workspace.\nWe do not provide insurance that this will not be removed in the future,\nbut if it's easy to persist lets keep it around.",
"type": "string"
},
"scripts": {
"type": "array",
"items": {
@ -6111,6 +6115,9 @@
},
"vscode_port_proxy_uri": {
"type": "string"
},
"workspace_id": {
"type": "string"
}
}
},

View File

@ -237,6 +237,8 @@ func (api *API) workspaceAgentManifest(rw http.ResponseWriter, r *http.Request)
httpapi.Write(ctx, rw, http.StatusOK, agentsdk.Manifest{
AgentID: apiAgent.ID,
OwnerName: owner.Username,
WorkspaceID: workspace.ID,
Apps: convertApps(dbApps, workspaceAgent, owner.Username, workspace),
Scripts: convertScripts(scripts),
DERPMap: api.DERPMap(),

View File

@ -998,6 +998,8 @@ func TestWorkspaceAgent_Metadata(t *testing.T) {
require.NoError(t, err)
// Verify manifest API response.
require.Equal(t, workspace.ID, manifest.WorkspaceID)
require.Equal(t, workspace.OwnerName, manifest.OwnerName)
require.Equal(t, "First Meta", manifest.Metadata[0].DisplayName)
require.Equal(t, "foo1", manifest.Metadata[0].Key)
require.Equal(t, "echo hi", manifest.Metadata[0].Script)