-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds command 'viva engage community get'. Closes #5754
- Loading branch information
1 parent
b7d6047
commit 8bc3ba9
Showing
6 changed files
with
262 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,94 @@ | ||
import Global from '/docs/cmd/_global.mdx'; | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
# viva engage community get | ||
|
||
Gets information of a Viva Engage community | ||
|
||
## Usage | ||
|
||
```sh | ||
m365 viva engage community get [options] | ||
``` | ||
|
||
## Options | ||
|
||
```md definition-list | ||
`-i, --id <id>` | ||
: The unique identifier of the community. | ||
``` | ||
|
||
<Global /> | ||
|
||
## Remarks | ||
|
||
:::warning | ||
|
||
This command is based on an API that is currently in preview and is subject to change once the API reached general availability. | ||
|
||
::: | ||
|
||
## Examples | ||
|
||
Get a specific community by ID. | ||
|
||
```sh | ||
m365 viva engage community get --id eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiI0Mjg1NzkwNjE3NyJ9 | ||
``` | ||
|
||
## Response | ||
|
||
<Tabs> | ||
<TabItem value="JSON"> | ||
|
||
```json | ||
{ | ||
"id": "eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ", | ||
"displayName": "New Employee Onboarding", | ||
"description": "New Employee Onboarding", | ||
"privacy": "public", | ||
"groupId": "54dda9b2-2df1-4ce8-ae1e-b400956b5b34" | ||
} | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="Text"> | ||
|
||
```text | ||
description: New Employee Onboarding | ||
displayName: New Employee Onboarding | ||
groupId : 54dda9b2-2df1-4ce8-ae1e-b400956b5b34 | ||
id : eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ | ||
privacy : public | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="CSV"> | ||
|
||
```csv | ||
id,displayName,description,privacy,groupId | ||
eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ,New Employee Onboarding,New Employee Onboarding,public,54dda9b2-2df1-4ce8-ae1e-b400956b5b34 | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="Markdown"> | ||
|
||
```md | ||
# viva engage community get --id "eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ" | ||
|
||
Date: 14/03/2024 | ||
|
||
## New Employee Onboarding (eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ) | ||
|
||
Property | Value | ||
---------|------- | ||
id | eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ | ||
displayName | New Employee Onboarding | ||
description | New Employee Onboarding | ||
privacy | public | ||
groupId | 54dda9b2-2df1-4ce8-ae1e-b400956b5b34 | ||
``` | ||
|
||
</TabItem> | ||
</Tabs> |
This file contains 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 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
96 changes: 96 additions & 0 deletions
96
src/m365/viva/commands/engage/engage-community-get.spec.ts
This file contains 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,96 @@ | ||
|
||
import assert from 'assert'; | ||
import sinon from 'sinon'; | ||
import auth from '../../../../Auth.js'; | ||
import { Logger } from '../../../../cli/Logger.js'; | ||
import { CommandError } from '../../../../Command.js'; | ||
import request from '../../../../request.js'; | ||
import { telemetry } from '../../../../telemetry.js'; | ||
import { pid } from '../../../../utils/pid.js'; | ||
import { session } from '../../../../utils/session.js'; | ||
import { sinonUtil } from '../../../../utils/sinonUtil.js'; | ||
import commands from '../../commands.js'; | ||
import command from './engage-community-get.js'; | ||
|
||
describe(commands.ENGAGE_COMMUNITY_GET, () => { | ||
let log: string[]; | ||
let logger: Logger; | ||
let loggerLogSpy: sinon.SinonSpy; | ||
|
||
before(() => { | ||
sinon.stub(auth, 'restoreAuth').resolves(); | ||
sinon.stub(telemetry, 'trackEvent').returns(); | ||
sinon.stub(pid, 'getProcessName').returns(''); | ||
sinon.stub(session, 'getId').returns(''); | ||
auth.connection.active = true; | ||
}); | ||
|
||
beforeEach(() => { | ||
log = []; | ||
logger = { | ||
log: async (msg: string) => { | ||
log.push(msg); | ||
}, | ||
logRaw: async (msg: string) => { | ||
log.push(msg); | ||
}, | ||
logToStderr: async (msg: string) => { | ||
log.push(msg); | ||
} | ||
}; | ||
loggerLogSpy = sinon.spy(logger, 'log'); | ||
}); | ||
|
||
afterEach(() => { | ||
sinonUtil.restore([ | ||
request.get | ||
]); | ||
}); | ||
|
||
after(() => { | ||
sinon.restore(); | ||
auth.connection.active = false; | ||
}); | ||
|
||
it('has correct name', () => { | ||
assert.strictEqual(command.name, commands.ENGAGE_COMMUNITY_GET); | ||
}); | ||
|
||
it('has a description', () => { | ||
assert.notStrictEqual(command.description, null); | ||
}); | ||
|
||
it('correctly handles error', async () => { | ||
const errorMessage = 'Bad request.'; | ||
sinon.stub(request, 'get').rejects({ | ||
error: { | ||
message: errorMessage | ||
} | ||
}); | ||
|
||
await assert.rejects(command.action(logger, { options: { id: 'invalid', verbose: true } } as any), | ||
new CommandError(errorMessage)); | ||
}); | ||
|
||
it('gets community by id', async () => { | ||
const communityId = 'eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIxNTU1MjcwOTQyNzIifQ'; | ||
const response = { | ||
id: communityId, | ||
displayName: "New Employee Onboarding", | ||
description: "New Employee Onboarding", | ||
privacy: "public", | ||
groupId: "54dda9b2-2df1-4ce8-ae1e-b400956b5b34" | ||
}; | ||
|
||
sinon.stub(request, 'get').callsFake(async (opts) => { | ||
if (opts.url === `https://graph.microsoft.com/beta/employeeExperience/communities/${communityId}`) { | ||
return response; | ||
} | ||
|
||
throw 'Invalid Request'; | ||
}); | ||
|
||
await command.action(logger, { options: { id: communityId } } as any); | ||
assert.deepStrictEqual(loggerLogSpy.lastCall.args[0], response); | ||
}); | ||
}); |
This file contains 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,65 @@ | ||
import GlobalOptions from '../../../../GlobalOptions.js'; | ||
import { Logger } from '../../../../cli/Logger.js'; | ||
import GraphCommand from '../../../base/GraphCommand.js'; | ||
import commands from '../../commands.js'; | ||
import request, { CliRequestOptions } from '../../../../request.js'; | ||
|
||
interface CommandArgs { | ||
options: Options; | ||
} | ||
|
||
interface Options extends GlobalOptions { | ||
id: string; | ||
} | ||
|
||
class VivaEngageCommunityGetCommand extends GraphCommand { | ||
public get name(): string { | ||
return commands.ENGAGE_COMMUNITY_GET; | ||
} | ||
|
||
public get description(): string { | ||
return 'Gets information of a Viva Engage community'; | ||
} | ||
|
||
constructor() { | ||
super(); | ||
|
||
this.#initOptions(); | ||
this.#initTypes(); | ||
} | ||
|
||
#initOptions(): void { | ||
this.options.unshift( | ||
{ option: '-i, --id <id>' } | ||
); | ||
} | ||
|
||
#initTypes(): void { | ||
this.types.string.push('id'); | ||
} | ||
|
||
public async commandAction(logger: Logger, args: CommandArgs): Promise<void> { | ||
if (this.verbose) { | ||
logger.logToStderr(`Getting the information of Viva Engage community with id '${args.options.id}'...`); | ||
} | ||
|
||
const requestOptions: CliRequestOptions = { | ||
url: `${this.resource}/beta/employeeExperience/communities/${args.options.id}`, | ||
headers: { | ||
accept: 'application/json;odata.metadata=none' | ||
}, | ||
responseType: 'json' | ||
}; | ||
|
||
try { | ||
const res = await request.get<any>(requestOptions); | ||
|
||
await logger.log(res); | ||
} | ||
catch (err: any) { | ||
this.handleRejectedODataJsonPromise(err); | ||
} | ||
} | ||
} | ||
|
||
export default new VivaEngageCommunityGetCommand(); |