-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from sigmacomputing/api-recipe-workbook-change…
…-owner Add update workbook owner recipe
- Loading branch information
Showing
3 changed files
with
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/sigma-api-recipes/workbooks/update-owner.js" | ||
} | ||
] | ||
} |
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,43 @@ | ||
// This script updates the ownership of a specified inode in Sigma using the "Update an inode" endpoint. | ||
|
||
// Load environment variables from a specific .env file for configuration | ||
require('dotenv').config({ path: 'sigma-api-recipes/.env' }); | ||
|
||
// Import the function to obtain a bearer token from the authenticate-bearer module | ||
const getBearerToken = require('../get-access-token'); | ||
|
||
// Import Axios for making HTTP requests | ||
const axios = require('axios'); | ||
|
||
// Load use-case specific variables from environment variables | ||
const baseURL = process.env.baseURL; // Base URL for the Sigma API | ||
const memberid = process.env.MEMBERID; // New member ID to assign to the inode as owner | ||
const workbookId = process.env.WORKBOOK_ID; // Workbook ID to be used as the urlId for the inode | ||
|
||
// Function to update the ownerId of a specified inode using the workbookId | ||
async function updateInodeOwner(workbookId) { | ||
const token = await getBearerToken(); | ||
if (!token) { | ||
console.error('Failed to obtain Bearer token.'); | ||
return; | ||
} | ||
|
||
try { | ||
const response = await axios.patch( | ||
`${baseURL}/files/${workbookId}`, | ||
{ ownerId: memberid }, // Use `ownerId` with `memberid` value from .env | ||
{ | ||
headers: { | ||
'Authorization': `Bearer ${token}`, | ||
'Content-Type': 'application/json' | ||
} | ||
} | ||
); | ||
console.log('Inode updated successfully:', response.data); | ||
} catch (error) { | ||
console.error('Error updating inode:', error.response ? error.response.data : error); | ||
} | ||
} | ||
|
||
// Execute the update function | ||
updateInodeOwner(workbookId); |