Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
d03f086c92 | |||
83c1e2bb4e | |||
faa5d6d542 | |||
6e06e8108b | |||
45ce23ec11 | |||
93ef6a3d6b | |||
609873b4ad | |||
4a8bbc3d13 | |||
51c2d4f6e0 | |||
45091d6b8c | |||
eae7300439 | |||
7753e58036 | |||
333e9c1316 | |||
479e0725e6 | |||
fbf177b482 | |||
3272b87e10 | |||
87c3548f91 | |||
af3d461593 | |||
bd9b3bb985 | |||
169e49b93d | |||
2db4010648 | |||
b4ae49b604 | |||
9bdd9484f1 | |||
1dcfbe7f5d |
17843
package-lock.json
generated
17843
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
21
package.json
21
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartclickhouse",
|
"name": "@pushrocks/smartclickhouse",
|
||||||
"version": "2.0.1",
|
"version": "2.0.13",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "an odm for talking to clickhouse",
|
"description": "an odm for talking to clickhouse",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -10,22 +10,25 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web)",
|
"build": "(tsbuild --web --allowimplicitany)",
|
||||||
"createGrafana": "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss",
|
"createGrafana": "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss",
|
||||||
"createClickhouse": "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse yandex/clickhouse-server"
|
"createClickhouse": "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse yandex/clickhouse-server"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.48",
|
"@gitzone/tsbuild": "^2.1.65",
|
||||||
"@gitzone/tsbundle": "^1.0.91",
|
"@gitzone/tsbundle": "^2.0.7",
|
||||||
"@gitzone/tstest": "^1.0.67",
|
"@gitzone/tstest": "^1.0.73",
|
||||||
"@pushrocks/tapbundle": "^5.0.2",
|
"@pushrocks/tapbundle": "^5.0.4",
|
||||||
"@types/node": "^17.0.21",
|
"@types/node": "^18.6.4",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.15.0"
|
"tslint-config-prettier": "^1.15.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@depyronick/clickhouse-client": "^1.0.12",
|
"@pushrocks/smartdelay": "^2.0.13",
|
||||||
"@pushrocks/smartobject": "^1.0.10"
|
"@pushrocks/smartobject": "^1.0.10",
|
||||||
|
"@pushrocks/smartpromise": "^3.1.7",
|
||||||
|
"@pushrocks/smarturl": "^3.0.2",
|
||||||
|
"@pushrocks/webrequest": "^3.0.12"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
|
@ -5,8 +5,9 @@ let testClickhouseDb: smartclickhouse.SmartClickHouseDb;
|
|||||||
|
|
||||||
tap.test('first test', async () => {
|
tap.test('first test', async () => {
|
||||||
testClickhouseDb = new smartclickhouse.SmartClickHouseDb({
|
testClickhouseDb = new smartclickhouse.SmartClickHouseDb({
|
||||||
host: 'localhost',
|
url: 'http://localhost:8123',
|
||||||
database: 'test2',
|
database: 'test2',
|
||||||
|
unref: true,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -14,10 +15,10 @@ tap.test('should start the clickhouse db', async () => {
|
|||||||
await testClickhouseDb.start(true);
|
await testClickhouseDb.start(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should create a timedatatable', async () => {
|
tap.test('should create a timedatatable', async (toolsArg) => {
|
||||||
const table = await testClickhouseDb.getTable('analytics');
|
const table = await testClickhouseDb.getTable('analytics');
|
||||||
let i = 0;
|
let i = 0;
|
||||||
while(i < 10) {
|
while(i < 5000) {
|
||||||
await table.addData({
|
await table.addData({
|
||||||
timestamp: Date.now(),
|
timestamp: Date.now(),
|
||||||
message: `hello this is a message ${i}`,
|
message: `hello this is a message ${i}`,
|
||||||
@ -28,6 +29,8 @@ tap.test('should create a timedatatable', async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
i++;
|
i++;
|
||||||
|
console.log(`logged ${i} of 5000 lines.`);
|
||||||
|
await toolsArg.delayFor(1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@pushrocks/smartclickhouse',
|
||||||
|
version: '2.0.13',
|
||||||
|
description: 'an odm for talking to clickhouse'
|
||||||
|
}
|
5
ts/smartclickhouse.classes.clickhousedb.ts
Normal file
5
ts/smartclickhouse.classes.clickhousedb.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import * as plugins from './smartclickhouse.plugins.js';
|
||||||
|
|
||||||
|
export class ClickhouseDb {
|
||||||
|
|
||||||
|
}
|
93
ts/smartclickhouse.classes.httpclient.ts
Normal file
93
ts/smartclickhouse.classes.httpclient.ts
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
import * as plugins from './smartclickhouse.plugins.js';
|
||||||
|
|
||||||
|
export interface IClickhouseHttpClientOptions {
|
||||||
|
username?: string;
|
||||||
|
password?: string;
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class ClickhouseHttpClient {
|
||||||
|
// STATIC
|
||||||
|
public static async createAndStart(optionsArg: IClickhouseHttpClientOptions) {
|
||||||
|
const clickhouseHttpInstance = new ClickhouseHttpClient(optionsArg);
|
||||||
|
await clickhouseHttpInstance.start();
|
||||||
|
return clickhouseHttpInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
public options: IClickhouseHttpClientOptions;
|
||||||
|
public webrequestInstance = new plugins.webrequest.WebRequest({
|
||||||
|
logging: false
|
||||||
|
});
|
||||||
|
public computedProperties: {
|
||||||
|
connectionUrl: string;
|
||||||
|
parsedUrl: plugins.smarturl.Smarturl;
|
||||||
|
} = {
|
||||||
|
connectionUrl: null,
|
||||||
|
parsedUrl: null,
|
||||||
|
};
|
||||||
|
constructor(optionsArg: IClickhouseHttpClientOptions) {
|
||||||
|
this.options = optionsArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async start() {
|
||||||
|
this.computedProperties.parsedUrl = plugins.smarturl.Smarturl.createFromUrl(this.options.url);
|
||||||
|
console.log(this.computedProperties.parsedUrl);
|
||||||
|
this.computedProperties.connectionUrl = this.computedProperties.parsedUrl.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ping() {
|
||||||
|
|
||||||
|
const ping = await this.webrequestInstance.request(this.computedProperties.connectionUrl.toString(), {
|
||||||
|
method: 'GET',
|
||||||
|
timeoutMs: 1000,
|
||||||
|
});
|
||||||
|
return ping.status === 200 ? true : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async queryPromise(queryArg: string) {
|
||||||
|
const returnArray = [];
|
||||||
|
const response = await this.webrequestInstance.request(`${this.computedProperties.connectionUrl}?query=${encodeURIComponent(queryArg)}`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: this.getHeaders(),
|
||||||
|
});
|
||||||
|
// console.log('===================');
|
||||||
|
// console.log(this.computedProperties.connectionUrl);
|
||||||
|
// console.log(queryArg);
|
||||||
|
// console.log((await response.clone().text()).split(/\r?\n/))
|
||||||
|
if (response.headers.get('X-ClickHouse-Format') === 'JSONEachRow') {
|
||||||
|
const jsonList = await response.text();
|
||||||
|
const jsonArray = jsonList.split('\n');
|
||||||
|
for (const jsonArg of jsonArray) {
|
||||||
|
if (!jsonArg) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
returnArray.push(JSON.parse(jsonArg));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
return returnArray
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public async insertPromise(databaseArg: string, tableArg: string, documents: any[]) {
|
||||||
|
const queryArg = `INSERT INTO ${databaseArg}.${tableArg} FORMAT JSONEachRow`;
|
||||||
|
const response = await this.webrequestInstance.request(`${this.computedProperties.connectionUrl}?query=${encodeURIComponent(queryArg)}`, {
|
||||||
|
method: 'POST',
|
||||||
|
body: documents.map(docArg => JSON.stringify(docArg)).join('\n'),
|
||||||
|
headers: this.getHeaders()
|
||||||
|
});
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
private getHeaders() {
|
||||||
|
const headers: {[key: string]: string} = {}
|
||||||
|
if (this.options.username) {
|
||||||
|
headers['X-ClickHouse-User'] = this.options.username;
|
||||||
|
}
|
||||||
|
if (this.options.password) {
|
||||||
|
headers['X-ClickHouse-Key'] = this.options.password;
|
||||||
|
}
|
||||||
|
return headers;
|
||||||
|
}
|
||||||
|
}
|
@ -1,15 +1,23 @@
|
|||||||
import * as plugins from './smartclickhouse.plugins.js';
|
import * as plugins from './smartclickhouse.plugins.js';
|
||||||
import { TimeDataTable } from './smartclickhouse.classes.timedatatable.js';
|
import { TimeDataTable } from './smartclickhouse.classes.timedatatable.js';
|
||||||
|
import { ClickhouseHttpClient } from './smartclickhouse.classes.httpclient.js';
|
||||||
|
|
||||||
export interface IClickhouseConstructorOptions {
|
export interface IClickhouseConstructorOptions {
|
||||||
host: string;
|
url: string;
|
||||||
database: string;
|
database: string;
|
||||||
|
username?: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
|
/**
|
||||||
|
* allow services to exit when waiting for clickhouse startup
|
||||||
|
* this allows to leave the lifecycle flow to other processes
|
||||||
|
* like a listening server.
|
||||||
|
*/
|
||||||
|
unref?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SmartClickHouseDb {
|
export class SmartClickHouseDb {
|
||||||
public options: IClickhouseConstructorOptions;
|
public options: IClickhouseConstructorOptions;
|
||||||
public clickhouseClient: plugins.clickhouse.ClickHouseClient;
|
public clickhouseClient: ClickhouseHttpClient;
|
||||||
|
|
||||||
constructor(optionsArg: IClickhouseConstructorOptions) {
|
constructor(optionsArg: IClickhouseConstructorOptions) {
|
||||||
this.options = optionsArg;
|
this.options = optionsArg;
|
||||||
@ -20,23 +28,31 @@ export class SmartClickHouseDb {
|
|||||||
*/
|
*/
|
||||||
public async start(dropOld = false) {
|
public async start(dropOld = false) {
|
||||||
console.log(`Connecting to default database first.`);
|
console.log(`Connecting to default database first.`);
|
||||||
const defaultClient = new plugins.clickhouse.ClickHouseClient({
|
// lets connect
|
||||||
...this.options,
|
this.clickhouseClient = await ClickhouseHttpClient.createAndStart(this.options);
|
||||||
database: 'default',
|
await this.pingDatabaseUntilAvailable();
|
||||||
});
|
|
||||||
console.log(`Create database ${this.options.database}, if it does not exist...`);
|
console.log(`Create database ${this.options.database}, if it does not exist...`);
|
||||||
if (dropOld) {
|
await this.createDatabase(dropOld);
|
||||||
await defaultClient.queryPromise(`DROP DATABASE IF EXISTS ${this.options.database}`);
|
}
|
||||||
}
|
|
||||||
await defaultClient.queryPromise(`CREATE DATABASE IF NOT EXISTS ${this.options.database}`);
|
|
||||||
|
|
||||||
console.log(`Ensured database. Now connecting to wanted database: ${this.options.database}`);
|
public async createDatabase(dropOld: boolean = false) {
|
||||||
this.clickhouseClient = new plugins.clickhouse.ClickHouseClient({
|
if (dropOld) {
|
||||||
...this.options,
|
await this.clickhouseClient.queryPromise(`DROP DATABASE IF EXISTS ${this.options.database}`);
|
||||||
});
|
}
|
||||||
console.log(`trying to ping database...`);
|
await this.clickhouseClient.queryPromise(`CREATE DATABASE IF NOT EXISTS ${this.options.database}`);
|
||||||
const result = await this.clickhouseClient.ping();
|
}
|
||||||
console.log(`Ping successfull?: ${result}`);
|
|
||||||
|
public async pingDatabaseUntilAvailable() {
|
||||||
|
let available = false;
|
||||||
|
while(!available) {
|
||||||
|
available = await this.clickhouseClient.ping().catch(err => {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
if (!available) {
|
||||||
|
console.log(`NOT OK: tried pinging ${this.options.url}... Trying again in 5 seconds.`);
|
||||||
|
await plugins.smartdelay.delayFor(5000, null, this.options.unref);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -38,34 +38,13 @@ export class TimeDataTable {
|
|||||||
retainDataForDays: 30
|
retainDataForDays: 30
|
||||||
});
|
});
|
||||||
|
|
||||||
// create table in clickhouse
|
await newTable.setup();
|
||||||
await smartClickHouseDbRefArg.clickhouseClient
|
|
||||||
.queryPromise(`
|
|
||||||
CREATE TABLE IF NOT EXISTS ${newTable.options.tableName} (
|
|
||||||
timestamp DateTime64(3, 'Europe/Berlin'),
|
|
||||||
message String
|
|
||||||
) ENGINE=MergeTree() ORDER BY timestamp`);
|
|
||||||
|
|
||||||
// lets adjust the TTL
|
|
||||||
await smartClickHouseDbRefArg.clickhouseClient
|
|
||||||
.queryPromise(`
|
|
||||||
ALTER TABLE ${newTable.options.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL ${newTable.options.retainDataForDays} DAY
|
|
||||||
`);
|
|
||||||
|
|
||||||
await newTable.updateColumns();
|
|
||||||
console.log(`=======================`)
|
|
||||||
console.log(
|
|
||||||
`table with name "${newTable.options.tableName}" in databse ${newTable.smartClickHouseDbRef.options.database} has the following columns:`
|
|
||||||
);
|
|
||||||
for (const column of newTable.columns) {
|
|
||||||
console.log(`>> ${column.name}: ${column.type}`);
|
|
||||||
}
|
|
||||||
console.log('^^^^^^^^^^^^^^\n');
|
|
||||||
|
|
||||||
return newTable;
|
return newTable;
|
||||||
}
|
}
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
|
public healingDeferred: plugins.smartpromise.Deferred<any>;
|
||||||
public smartClickHouseDbRef: SmartClickHouseDb;
|
public smartClickHouseDbRef: SmartClickHouseDb;
|
||||||
public options: ITimeDataTableOptions;
|
public options: ITimeDataTableOptions;
|
||||||
|
|
||||||
@ -74,6 +53,32 @@ export class TimeDataTable {
|
|||||||
this.options = optionsArg;
|
this.options = optionsArg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async setup() {
|
||||||
|
// create table in clickhouse
|
||||||
|
await this.smartClickHouseDbRef.clickhouseClient
|
||||||
|
.queryPromise(`
|
||||||
|
CREATE TABLE IF NOT EXISTS ${this.smartClickHouseDbRef.options.database}.${this.options.tableName} (
|
||||||
|
timestamp DateTime64(3, 'Europe/Berlin'),
|
||||||
|
message String
|
||||||
|
) ENGINE=MergeTree() ORDER BY timestamp`);
|
||||||
|
|
||||||
|
// lets adjust the TTL
|
||||||
|
await this.smartClickHouseDbRef.clickhouseClient
|
||||||
|
.queryPromise(`
|
||||||
|
ALTER TABLE ${this.smartClickHouseDbRef.options.database}.${this.options.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL ${this.options.retainDataForDays} DAY
|
||||||
|
`);
|
||||||
|
|
||||||
|
await this.updateColumns();
|
||||||
|
console.log(`=======================`)
|
||||||
|
console.log(
|
||||||
|
`table with name "${this.options.tableName}" in database ${this.smartClickHouseDbRef.options.database} has the following columns:`
|
||||||
|
);
|
||||||
|
for (const column of this.columns) {
|
||||||
|
console.log(`>> ${column.name}: ${column.type}`);
|
||||||
|
}
|
||||||
|
console.log('^^^^^^^^^^^^^^\n');
|
||||||
|
}
|
||||||
|
|
||||||
public columns: IColumnInfo[] = [];
|
public columns: IColumnInfo[] = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -83,7 +88,7 @@ export class TimeDataTable {
|
|||||||
this.columns = await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
this.columns = await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
||||||
SELECT * FROM system.columns
|
SELECT * FROM system.columns
|
||||||
WHERE database LIKE '${this.smartClickHouseDbRef.options.database}'
|
WHERE database LIKE '${this.smartClickHouseDbRef.options.database}'
|
||||||
AND table LIKE '${this.options.tableName}'
|
AND table LIKE '${this.options.tableName}' FORMAT JSONEachRow
|
||||||
`);
|
`);
|
||||||
return this.columns;
|
return this.columns;
|
||||||
}
|
}
|
||||||
@ -92,6 +97,10 @@ export class TimeDataTable {
|
|||||||
* stores a json and tries to map it to the nested syntax
|
* stores a json and tries to map it to the nested syntax
|
||||||
*/
|
*/
|
||||||
public async addData(dataArg: any) {
|
public async addData(dataArg: any) {
|
||||||
|
if (this.healingDeferred) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// the storageJson
|
// the storageJson
|
||||||
let storageJson: { [key: string]: any } = {};
|
let storageJson: { [key: string]: any } = {};
|
||||||
|
|
||||||
@ -128,7 +137,7 @@ export class TimeDataTable {
|
|||||||
await checkPath(pathArg, typeArg, true);
|
await checkPath(pathArg, typeArg, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const alterString = `ALTER TABLE ${this.options.tableName} ADD COLUMN ${pathArg} ${typeArg} FIRST`
|
const alterString = `ALTER TABLE ${this.smartClickHouseDbRef.options.database}.${this.options.tableName} ADD COLUMN ${pathArg} ${typeArg} FIRST`
|
||||||
try {
|
try {
|
||||||
await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
||||||
${alterString}
|
${alterString}
|
||||||
@ -162,9 +171,21 @@ export class TimeDataTable {
|
|||||||
storageJson[key] = value;
|
storageJson[key] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = await this.smartClickHouseDbRef.clickhouseClient.insertPromise(this.options.tableName, [
|
const result = await this.smartClickHouseDbRef.clickhouseClient.insertPromise(this.smartClickHouseDbRef.options.database, this.options.tableName, [
|
||||||
storageJson,
|
storageJson,
|
||||||
]);
|
]).catch(async () => {
|
||||||
|
if (this.healingDeferred) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.healingDeferred = plugins.smartpromise.defer();
|
||||||
|
console.log(`Ran into an error. Trying to set up things properly again.`);
|
||||||
|
await this.smartClickHouseDbRef.pingDatabaseUntilAvailable();
|
||||||
|
await this.smartClickHouseDbRef.createDatabase();
|
||||||
|
await this.setup();
|
||||||
|
this.columns = [];
|
||||||
|
this.healingDeferred.resolve();
|
||||||
|
this.healingDeferred = null;
|
||||||
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
// @pushrocks scope
|
// @pushrocks scope
|
||||||
|
import * as smartdelay from '@pushrocks/smartdelay';
|
||||||
import * as smartobject from '@pushrocks/smartobject';
|
import * as smartobject from '@pushrocks/smartobject';
|
||||||
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
import * as smarturl from '@pushrocks/smarturl';
|
||||||
|
import * as webrequest from '@pushrocks/webrequest';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
smartobject
|
smartdelay,
|
||||||
|
smartobject,
|
||||||
|
smartpromise,
|
||||||
|
smarturl,
|
||||||
|
webrequest,
|
||||||
}
|
}
|
||||||
|
|
||||||
// thirdparty
|
|
||||||
import * as clickhouse from '@depyronick/clickhouse-client';
|
|
||||||
|
|
||||||
export { clickhouse };
|
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"moduleResolution": "node12"
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ES2022",
|
||||||
|
"moduleResolution": "nodenext",
|
||||||
|
"esModuleInterop": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user