Skip to content

Commit

Permalink
feat: add create and set up space code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrick committed Oct 2, 2024
1 parent 6f89730 commit 77e7f2c
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 0 deletions.
47 changes: 47 additions & 0 deletions chat/client-libraries/cloud/create-space-user-cred.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// It may require modifications to work in your environment.

// [START chat_create_space_user_cred]

import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.spaces.create'];

// This sample shows how to create a named space with user credential
async function main() {
// Create a client
const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

// Initialize request argument(s)
const request = {
space: {
spaceType: 'SPACE',
// Replace DISPLAY_NAME here.
displayName: 'DISPLAY_NAME'
}
};

// Make the request
const response = await chatClient.createSpace(request);

// Handle the response
console.log(response);
}

main().catch(console.error);

// [END chat_create_space_user_cred]
2 changes: 2 additions & 0 deletions chat/client-libraries/cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"create-message-user-cred-thread-name.js": "node ./create-message-user-cred-thread-name.js",
"create-message-user-cred.js": "node ./create-message-user-cred.js",
"create-reaction-user-cred.js": "node ./create-reaction-user-cred.js",
"create-space-user-cred.js": "node ./create-space-user-cred.js",
"delete-membership-user-cred.js": "node ./delete-membership-user-cred.js",
"delete-message-app-cred.js": "node ./delete-message-app-cred.js",
"delete-message-user-cred.js": "node ./delete-message-user-cred.js",
Expand All @@ -42,6 +43,7 @@
"get-space-user-cred.js": "node ./get-space-user-cred.js",
"get-space-read-state-user-cred.js": "node ./get-space-read-state-user-cred.js",
"get-thread-read-state-user-cred.js": "node ./get-thread-read-state-user-cred.js",
"set-up-space-user-cred.js": "node ./set-up-space-user-cred.js",
"update-membership-user-cred.js": "node ./update-membership-user-cred.js",
"update-message-app-cred.js": "node ./update-message-app-cred.js",
"update-message-user-cred.js": "node ./update-message-user-cred.js",
Expand Down
55 changes: 55 additions & 0 deletions chat/client-libraries/cloud/set-up-space-user-cred.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// It may require modifications to work in your environment.

// [START chat_set_up_space_user_cred]

import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.spaces.create'];

// This sample shows how to set up a named space with one initial member
// with user credential
async function main() {
// Create a client
const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

// Initialize request argument(s)
const request = {
space: {
spaceType: 'SPACE',
// Replace DISPLAY_NAME here.
displayName: 'DISPLAY_NAME'
},
memberships: [{
member: {
// Replace USER_NAME here.
name: 'users/USER_NAME',
type: 'HUMAN'
}
}]
};

// Make the request
const response = await chatClient.setUpSpace(request);

// Handle the response
console.log(response);
}

main().catch(console.error);

// [END chat_set_up_space_user_cred]

0 comments on commit 77e7f2c

Please sign in to comment.