-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Andrew Davis <[email protected]>
- Loading branch information
Showing
13 changed files
with
507 additions
and
6 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
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,129 @@ | ||
import type { ClickHouseError } from '@clickhouse/client' | ||
import { createClient } from '@clickhouse/client' // or '@clickhouse/client-web' | ||
|
||
/** | ||
* An example of specifying a role using query parameters | ||
* See https://clickhouse.com/docs/en/interfaces/http#setting-role-with-query-parameters | ||
*/ | ||
void (async () => { | ||
const format = 'JSONEachRow' | ||
const username = 'clickhouse_js_role_user' | ||
const password = 'role_user_password' | ||
const table1 = 'clickhouse_js_role_table_1' | ||
const table2 = 'clickhouse_js_role_table_2' | ||
|
||
// Create 2 tables, a role for each table allowing SELECT, and a user with access to those roles | ||
const defaultClient = createClient() | ||
await createOrReplaceUser(username, password) | ||
const table1Role = await createTableAndGrantAccess(table1, username) | ||
const table2Role = await createTableAndGrantAccess(table2, username) | ||
await defaultClient.close() | ||
|
||
// Create a client using a role that only has permission to query table1 | ||
const client = createClient({ | ||
username, | ||
password, | ||
// This role will be applied to all the queries by default, | ||
// unless it is overridden in a specific method call | ||
role: table1Role, | ||
}) | ||
|
||
// Selecting from table1 is allowed using table1Role | ||
const resultSet1 = await client.query({ | ||
query: `select count(*) from ${table1}`, | ||
format, | ||
}) | ||
console.log( | ||
`Successfully queried from ${table1} using ${table1Role}. Result: `, | ||
await resultSet1.json(), | ||
) | ||
|
||
// Selecting from table2 is not allowed using table1Role, | ||
// which is set by default in the client instance | ||
await client | ||
.query({ query: `select count(*) from ${table2}`, format }) | ||
.catch((e: ClickHouseError) => { | ||
console.error( | ||
`Failed to query from ${table2}, as ${table1Role} does not have sufficient privileges. Expected error:`, | ||
e, | ||
) | ||
}) | ||
|
||
// Override the client's role to table2Role, allowing a query to table2 | ||
const resultSet2 = await client.query({ | ||
query: `select count(*) from ${table2}`, | ||
role: table2Role, | ||
format, | ||
}) | ||
console.log( | ||
`Successfully queried from ${table2} using ${table2Role}. Result:`, | ||
await resultSet2.json(), | ||
) | ||
|
||
// Selecting from table1 is no longer allowed, since table2Role is being used | ||
await client | ||
.query({ | ||
query: `select count(*) from ${table1}`, | ||
role: table2Role, | ||
format, | ||
}) | ||
.catch((e: ClickHouseError) => { | ||
console.error( | ||
`Failed to query from ${table1}, as ${table2Role} does not have sufficient privileges. Expected error:`, | ||
e, | ||
) | ||
}) | ||
|
||
// Multiple roles can be specified to allowed querying from either table | ||
const resultSet3 = await client.query({ | ||
query: `select count(*) from ${table1}`, | ||
role: [table1Role, table2Role], | ||
format, | ||
}) | ||
console.log( | ||
`Successfully queried from ${table1} using roles: [${table1Role}, ${table2Role}]. Result:`, | ||
await resultSet3.json(), | ||
) | ||
|
||
const resultSet4 = await client.query({ | ||
query: `select count(*) from ${table2}`, | ||
role: [table1Role, table2Role], | ||
format, | ||
}) | ||
console.log( | ||
`Successfully queried from ${table2} using roles: [${table1Role}, ${table2Role}]. Result: `, | ||
await resultSet4.json(), | ||
) | ||
|
||
await client.close() | ||
|
||
async function createOrReplaceUser(username: string, password: string) { | ||
await defaultClient.command({ | ||
query: `CREATE USER OR REPLACE ${username} IDENTIFIED WITH plaintext_password BY '${password}'`, | ||
}) | ||
} | ||
|
||
async function createTableAndGrantAccess( | ||
tableName: string, | ||
username: string, | ||
) { | ||
const role = `${tableName}_role` | ||
|
||
await defaultClient.command({ | ||
query: ` | ||
CREATE OR REPLACE TABLE ${tableName} | ||
(id UInt32, name String, sku Array(UInt32)) | ||
ENGINE MergeTree() | ||
ORDER BY (id) | ||
`, | ||
}) | ||
|
||
await defaultClient.command({ query: `CREATE ROLE OR REPLACE ${role}` }) | ||
await defaultClient.command({ | ||
query: `GRANT SELECT ON ${tableName} TO ${role}`, | ||
}) | ||
await defaultClient.command({ query: `GRANT ${role} TO ${username}` }) | ||
|
||
return role | ||
} | ||
})() |
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
Oops, something went wrong.