2022-08-24 01:26:48 -07:00
|
|
|
import {
|
|
|
|
ICredentialDataDecryptedObject,
|
|
|
|
ICredentialType,
|
|
|
|
IHttpRequestOptions,
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
2020-01-23 09:27:28 -08:00
|
|
|
|
|
|
|
export class SegmentApi implements ICredentialType {
|
|
|
|
name = 'segmentApi';
|
|
|
|
displayName = 'Segment API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'segment';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-01-23 09:27:28 -08:00
|
|
|
{
|
|
|
|
displayName: 'Write Key',
|
|
|
|
name: 'writekey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-01-23 09:27:28 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
2022-08-24 01:26:48 -07:00
|
|
|
async authenticate(
|
|
|
|
credentials: ICredentialDataDecryptedObject,
|
|
|
|
requestOptions: IHttpRequestOptions,
|
|
|
|
): Promise<IHttpRequestOptions> {
|
|
|
|
const base64Key = Buffer.from(`${credentials.writekey}:`).toString('base64');
|
|
|
|
requestOptions.headers!['Authorization'] = `Basic ${base64Key}`;
|
|
|
|
return requestOptions;
|
|
|
|
}
|
2020-01-23 09:27:28 -08:00
|
|
|
}
|