-
Notifications
You must be signed in to change notification settings - Fork 2k
feat: add fetch acl sample code for content warehouse #3287
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
Show all changes
13 commits
Select commit
Hold shift + click to select a range
59449c7
add fetch acl sample code for content warehouse
eca619f
remove google related values from test
6858d56
add document-warehouse directory codeowner
6164bfa
add document-warehouse blunderbuss issue and pr auto-assigner
3ab8a56
Merge branch 'main' into fetch-acl
kweinmeister 94a61ec
fix some requested changes and lint issues
623d596
Merge branch 'fetch-acl' of https://github.com/paulinawins/nodejs-doc…
4d3c449
add document-ai-samples-contributors to directory
79299ce
Merge branch 'main' into fetch-acl
paulinawins 9600a9d
Merge branch 'main' into fetch-acl
paulinawins c899bcb
add license to header
3d377ad
Merge branch 'fetch-acl' of https://github.com/paulinawins/nodejs-doc…
ddb63b1
Merge branch 'main' into fetch-acl
kweinmeister 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright 2023 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 | ||
# | ||
# http://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. | ||
|
||
name: document-warehouse | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'document-warehouse/**' | ||
- '.github/workflows/document-warehouse.yaml' | ||
pull_request: | ||
paths: | ||
- 'document-warehouse/**' | ||
- '.github/workflows/document-warehouse.yaml' | ||
pull_request_target: | ||
types: [labeled] | ||
paths: | ||
- 'document-warehouse/**' | ||
- '.github/workflows/document-warehouse.yaml' | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
jobs: | ||
test: | ||
# Ref: https://github.com/google-github-actions/auth#usage | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
if: github.event.action != 'labeled' || github.event.label.name == 'actions:force-run' | ||
uses: ./.github/workflows/test.yaml | ||
with: | ||
name: 'document-warehouse' | ||
path: 'document-warehouse' | ||
remove_label: | ||
# Ref: https://github.com/google-github-actions/auth#usage | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
if: | | ||
github.event.action == 'labeled' && | ||
github.event.label.name == 'actions:force-run' && | ||
always() | ||
uses: ./.github/workflows/remove-label.yaml | ||
flakybot: | ||
# Ref: https://github.com/google-github-actions/auth#usage | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
if: github.event_name == 'schedule' && always() # always() submits logs even if tests fail | ||
uses: ./.github/workflows/flakybot.yaml | ||
needs: [test] |
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,17 @@ | ||
# Copyright 2023 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 | ||
# | ||
# http://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. | ||
--- | ||
rules: | ||
no-console: off | ||
node/no-unsupported-features/node-builtins: off |
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,72 @@ | ||
/** Copyright 2023 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 | ||
* | ||
* http://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. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
async function main( | ||
projectId = 'YOUR_PROJECT_ID', | ||
location = 'YOUR_PROJECT_LOCATION', | ||
userId = 'user:[email protected]', | ||
documentId = 'YOUR_DOCUMENT_ID' | ||
) { | ||
// [START contentwarehouse_fetch_acl] | ||
|
||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
* const projectId = 'YOUR_PROJECT_ID'; | ||
* const location = 'YOUR_PROJECT_LOCATION'; // Format is 'us' or 'eu' | ||
* const documentId = 'YOUR_DOCUMENT_ID', | ||
* const userId = "user:[email protected]" // Format is "user:[email protected]" | ||
*/ | ||
|
||
// Import from google cloud | ||
const {DocumentServiceClient} = require('@google-cloud/contentwarehouse').v1; | ||
|
||
// Create service client | ||
const serviceClient = new DocumentServiceClient(); | ||
|
||
// Fetches access control policies on project or document level. | ||
async function fetchACL() { | ||
// Initialize request argument(s) | ||
const request = {}; | ||
if (documentId !== 'YOUR_DOCUMENT_ID') { | ||
// Full document resource name, e.g.: | ||
// projects/{project_id}/locations/{location}/documents/{document_id} | ||
request.resource = `projects/${projectId}/locations/${location}/documents/${documentId}`; | ||
request.requestMetadata = {userInfo: {id: userId}}; | ||
} else { | ||
// Full document resource name, e.g.: projects/{project_id} | ||
request.resource = `projects/${projectId}`; | ||
request.projectOwner = true; | ||
} | ||
|
||
// Make Request | ||
const response = serviceClient.fetchAcl(request); | ||
|
||
// Print out response | ||
response.then( | ||
result => console.log(`Success! Response: \n${JSON.stringify(result)}`), | ||
error => console.log(`Failed! Response: \n${error}`) | ||
); | ||
} | ||
|
||
// [END contentwarehouse_fetch_acl] | ||
await fetchACL(); | ||
} | ||
|
||
main(...process.argv.slice(2)).catch(err => { | ||
console.error(err); | ||
process.exitCode = 1; | ||
}); |
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": "nodejs-document-warehouse-samples", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"author": "Google LLC", | ||
"scripts": { | ||
"test": "c8 mocha test/*.js --timeout 600000" | ||
}, | ||
"dependencies": { | ||
"@google-cloud/contentwarehouse": "^0.5.1", | ||
"assert": "^2.0.0" | ||
} | ||
} |
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,18 @@ | ||
# Copyright 2023 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 | ||
# | ||
# http://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. | ||
--- | ||
env: | ||
mocha: true | ||
rules: | ||
node/no-extraneous-require: off |
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,48 @@ | ||
/** Copyright 2023 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 | ||
* | ||
* http://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. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const cp = require('child_process'); | ||
const path = require('path'); | ||
const assert = require('assert'); | ||
|
||
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'}); | ||
const cwd = path.join(__dirname, '..'); | ||
const PROJECT_ID_PASS = 'YOUR_PROJECT_ID'; | ||
const PROJECT_ID_FAILED = 'PROJECT_ID_WITHOUT_ACL'; | ||
const LOCATION = 'us'; | ||
const USER_ID = 'user:[email protected]'; | ||
const DOCUMENT_ID = 'YOUR_DOCUMENT_ID'; | ||
|
||
describe('Fetch document acl', () => { | ||
it('should get acl given only a projectId', async () => { | ||
const stdout = execSync(`node ./fetch-acl.js ${PROJECT_ID_PASS} `, {cwd}); | ||
assert(stdout.startsWith('Success!')); | ||
}); | ||
|
||
it('should get acl given a documentId', async () => { | ||
const stdout = execSync( | ||
`node ./fetch-acl.js ${PROJECT_ID_PASS} ${LOCATION} ${USER_ID} ${DOCUMENT_ID}`, | ||
{cwd} | ||
); | ||
assert(stdout.startsWith('Success!')); | ||
}); | ||
|
||
it('should fail given an incorrect projectId', async () => { | ||
const stdout = execSync(`node ./fetch-acl.js ${PROJECT_ID_FAILED}`, {cwd}); | ||
assert(stdout.startsWith('Failed!')); | ||
}); | ||
}); |
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
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.