2020-10-03 09:09:07 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
ILoadOptionsFunctions,
|
2020-10-03 09:10:03 -07:00
|
|
|
INodeExecutionData,
|
2020-10-03 09:09:07 -07:00
|
|
|
INodePropertyOptions,
|
2020-10-03 09:10:03 -07:00
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeOperationError,
|
2020-10-03 09:09:07 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
googleApiRequest,
|
|
|
|
googleApiRequestAllItems,
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
|
|
|
import {
|
|
|
|
userFields,
|
2020-10-03 09:10:03 -07:00
|
|
|
userOperations,
|
2020-10-03 09:09:07 -07:00
|
|
|
} from './UserDescription';
|
|
|
|
|
2020-10-23 00:15:11 -07:00
|
|
|
import {
|
|
|
|
groupFields,
|
|
|
|
groupOperations,
|
|
|
|
} from './GroupDescripion';
|
|
|
|
|
2020-10-03 09:09:07 -07:00
|
|
|
export class GSuiteAdmin implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'G Suite Admin',
|
|
|
|
name: 'gSuiteAdmin',
|
|
|
|
icon: 'file:gSuiteAdmin.png',
|
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume G Suite Admin API',
|
|
|
|
defaults: {
|
|
|
|
name: 'G Suite Admin',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'gSuiteAdminOAuth2Api',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-10-03 09:09:07 -07:00
|
|
|
options: [
|
2020-10-23 00:15:11 -07:00
|
|
|
{
|
|
|
|
name: 'Group',
|
|
|
|
value: 'group',
|
|
|
|
},
|
2020-10-03 09:09:07 -07:00
|
|
|
{
|
|
|
|
name: 'User',
|
|
|
|
value: 'user',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'user',
|
|
|
|
},
|
2020-10-23 00:15:11 -07:00
|
|
|
...groupOperations,
|
|
|
|
...groupFields,
|
2020-10-03 09:09:07 -07:00
|
|
|
...userOperations,
|
|
|
|
...userFields,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
|
|
|
// Get all the domains to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getDomains(
|
2020-10-22 09:00:28 -07:00
|
|
|
this: ILoadOptionsFunctions,
|
2020-10-03 09:09:07 -07:00
|
|
|
): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const domains = await googleApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'domains',
|
|
|
|
'GET',
|
2020-10-22 09:00:28 -07:00
|
|
|
'/directory/v1/customer/my_customer/domains',
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
for (const domain of domains) {
|
|
|
|
const domainName = domain.domainName;
|
|
|
|
const domainId = domain.domainName;
|
|
|
|
returnData.push({
|
|
|
|
name: domainName,
|
2020-10-22 06:46:03 -07:00
|
|
|
value: domainId,
|
2020-10-03 09:09:07 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
// Get all the schemas to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getSchemas(
|
2020-10-22 09:00:28 -07:00
|
|
|
this: ILoadOptionsFunctions,
|
2020-10-03 09:09:07 -07:00
|
|
|
): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const schemas = await googleApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'schemas',
|
|
|
|
'GET',
|
2020-10-22 09:00:28 -07:00
|
|
|
'/directory/v1/customer/my_customer/schemas',
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
for (const schema of schemas) {
|
|
|
|
const schemaName = schema.displayName;
|
|
|
|
const schemaId = schema.schemaName;
|
|
|
|
returnData.push({
|
|
|
|
name: schemaName,
|
2020-10-22 06:46:03 -07:00
|
|
|
value: schemaId,
|
2020-10-03 09:09:07 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
2022-04-22 09:29:51 -07:00
|
|
|
const length = items.length;
|
2020-10-03 09:09:07 -07:00
|
|
|
const qs: IDataObject = {};
|
|
|
|
let responseData;
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
for (let i = 0; i < length; i++) {
|
2020-10-23 00:15:11 -07:00
|
|
|
if (resource === 'group') {
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/groups/insert
|
|
|
|
if (operation === 'create') {
|
|
|
|
const email = this.getNodeParameter('email', i) as string;
|
2020-10-03 09:09:07 -07:00
|
|
|
|
2020-10-23 00:15:11 -07:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
|
|
|
|
const body: IDataObject = {
|
|
|
|
email,
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/directory/v1/groups`,
|
|
|
|
body,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/groups/delete
|
|
|
|
if (operation === 'delete') {
|
|
|
|
const groupId = this.getNodeParameter('groupId', i) as string;
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'DELETE',
|
|
|
|
`/directory/v1/groups/${groupId}`,
|
2020-10-23 00:19:45 -07:00
|
|
|
{},
|
2020-10-23 00:15:11 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
responseData = { success: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/groups/get
|
|
|
|
if (operation === 'get') {
|
|
|
|
const groupId = this.getNodeParameter('groupId', i) as string;
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/groups/${groupId}`,
|
|
|
|
{},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/groups/list
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
|
|
|
|
|
|
Object.assign(qs, options);
|
|
|
|
|
|
|
|
if (qs.customer === undefined) {
|
|
|
|
qs.customer = 'my_customer';
|
|
|
|
}
|
2020-10-03 09:09:07 -07:00
|
|
|
|
2020-10-23 00:15:11 -07:00
|
|
|
if (returnAll) {
|
|
|
|
responseData = await googleApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'groups',
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/groups`,
|
|
|
|
{},
|
2020-10-23 00:19:45 -07:00
|
|
|
qs,
|
2020-10-23 00:15:11 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
qs.maxResults = this.getNodeParameter('limit', i) as number;
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/groups`,
|
|
|
|
{},
|
2020-10-23 00:19:45 -07:00
|
|
|
qs,
|
2020-10-23 00:15:11 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
responseData = responseData.groups;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/groups/update
|
|
|
|
if (operation === 'update') {
|
|
|
|
const groupId = this.getNodeParameter('groupId', i) as string;
|
|
|
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
|
|
|
|
const body: IDataObject = {};
|
|
|
|
|
|
|
|
Object.assign(body, updateFields);
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PUT',
|
|
|
|
`/directory/v1/groups/${groupId}`,
|
|
|
|
body,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resource === 'user') {
|
2020-10-03 09:09:07 -07:00
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/users/insert
|
|
|
|
if (operation === 'create') {
|
|
|
|
const domain = this.getNodeParameter('domain', i) as string;
|
|
|
|
|
|
|
|
const firstName = this.getNodeParameter('firstName', i) as string;
|
|
|
|
|
|
|
|
const lastName = this.getNodeParameter('lastName', i) as string;
|
|
|
|
|
|
|
|
const password = this.getNodeParameter('password', i) as string;
|
|
|
|
|
|
|
|
const username = this.getNodeParameter('username', i) as string;
|
|
|
|
|
|
|
|
const makeAdmin = this.getNodeParameter('makeAdmin', i) as boolean;
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
|
|
|
|
const body: IDataObject = {
|
|
|
|
name: {
|
|
|
|
familyName: lastName,
|
|
|
|
givenName: firstName,
|
|
|
|
},
|
|
|
|
password,
|
|
|
|
primaryEmail: `${username}@${domain}`,
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
|
|
|
|
if (additionalFields.phoneUi) {
|
|
|
|
const phones = (additionalFields.phoneUi as IDataObject).phoneValues as IDataObject[];
|
|
|
|
|
|
|
|
body.phones = phones;
|
|
|
|
|
|
|
|
delete body.phoneUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (additionalFields.emailUi) {
|
|
|
|
const emails = (additionalFields.emailUi as IDataObject).emailValues as IDataObject[];
|
|
|
|
|
|
|
|
body.emails = emails;
|
|
|
|
|
|
|
|
delete body.emailUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/directory/v1/users`,
|
|
|
|
body,
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
if (makeAdmin) {
|
|
|
|
await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/directory/v1/users/${responseData.id}/makeAdmin`,
|
2020-10-22 09:00:28 -07:00
|
|
|
{ status: true },
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
responseData.isAdmin = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/users/delete
|
|
|
|
if (operation === 'delete') {
|
|
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'DELETE',
|
|
|
|
`/directory/v1/users/${userId}`,
|
2020-10-22 09:00:28 -07:00
|
|
|
{},
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
responseData = { success: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/users/get
|
|
|
|
if (operation === 'get') {
|
|
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
|
|
|
|
|
|
const projection = this.getNodeParameter('projection', i) as string;
|
|
|
|
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
|
|
|
|
|
|
qs.projection = projection;
|
|
|
|
|
|
|
|
Object.assign(qs, options);
|
|
|
|
|
|
|
|
if (qs.customFieldMask) {
|
|
|
|
qs.customFieldMask = (qs.customFieldMask as string[]).join(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qs.projection === 'custom' && qs.customFieldMask === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'When projection is set to custom, the custom schemas field must be defined');
|
2020-10-03 09:09:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/users/${userId}`,
|
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/users/list
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
|
|
|
|
const projection = this.getNodeParameter('projection', i) as string;
|
|
|
|
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
|
|
|
|
|
|
qs.projection = projection;
|
|
|
|
|
|
|
|
Object.assign(qs, options);
|
|
|
|
|
|
|
|
if (qs.customer === undefined) {
|
|
|
|
qs.customer = 'my_customer';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qs.customFieldMask) {
|
|
|
|
qs.customFieldMask = (qs.customFieldMask as string[]).join(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qs.projection === 'custom' && qs.customFieldMask === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'When projection is set to custom, the custom schemas field must be defined');
|
2020-10-03 09:09:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (returnAll) {
|
|
|
|
responseData = await googleApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'users',
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/users`,
|
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
qs.maxResults = this.getNodeParameter('limit', i) as number;
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/directory/v1/users`,
|
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
responseData = responseData.users;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://developers.google.com/admin-sdk/directory/v1/reference/users/update
|
|
|
|
if (operation === 'update') {
|
|
|
|
const userId = this.getNodeParameter('userId', i) as string;
|
|
|
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
|
|
|
|
const body: { name: { givenName?: string, familyName?: string }, emails?: IDataObject[], phones?: IDataObject[] } = { name: {} };
|
|
|
|
|
|
|
|
Object.assign(body, updateFields);
|
|
|
|
|
|
|
|
if (updateFields.firstName) {
|
|
|
|
body.name.givenName = updateFields.firstName as string;
|
|
|
|
//@ts-ignore
|
|
|
|
delete body.firstName;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updateFields.lastName) {
|
|
|
|
body.name.familyName = updateFields.lastName as string;
|
|
|
|
//@ts-ignore
|
|
|
|
delete body.lastName;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Object.keys(body.name).length === 0) {
|
2020-10-03 09:10:03 -07:00
|
|
|
//@ts-ignore
|
2020-10-03 09:09:07 -07:00
|
|
|
delete body.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updateFields.phoneUi) {
|
|
|
|
const phones = (updateFields.phoneUi as IDataObject).phoneValues as IDataObject[];
|
|
|
|
|
|
|
|
body.phones = phones;
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
delete body.phoneUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updateFields.emailUi) {
|
|
|
|
const emails = (updateFields.emailUi as IDataObject).emailValues as IDataObject[];
|
|
|
|
|
|
|
|
body.emails = emails;
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
delete body.emailUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
body['customSchemas'] = { testing: { hasdog: true } };
|
|
|
|
|
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PUT',
|
|
|
|
`/directory/v1/users/${userId}`,
|
|
|
|
body,
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-03 09:09:07 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
|
|
|
|
} else if (responseData !== undefined) {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|