Remove cookie_patterns legacy, migrate to tracker_patterns

Delete coredata.CookiePattern and all associated CRUD methods,
rename shared types (CookiePatternOrderField, CookiePatternFilter,
CookiePatternMatchType) to TrackerPattern equivalents, and migrate
all API surfaces (GraphQL, MCP, CLI, n8n) to tracker_pattern naming.

The worker was already migrated in the base branch; this commit
completes the removal by dropping the old GraphQL schema/resolvers,
service methods, CLI commands, and n8n operations that operated on
the legacy cookie_patterns table.

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-05-06 10:21:33 +04:00
parent 21f92352d5
commit af6e420f54
39 changed files with 1008 additions and 2475 deletions

View File

@@ -0,0 +1,162 @@
// Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
import type { INodeProperties, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
import { proboApiRequest } from '../../GenericFunctions';
export const description: INodeProperties[] = [
{
displayName: 'Tracker Pattern ID',
name: 'trackerPatternId',
type: 'string',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the tracker pattern to update',
required: true,
},
{
displayName: 'Display Name',
name: 'displayName',
type: 'string',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
default: '',
description: 'The display name for the tracker pattern',
},
{
displayName: 'Excluded',
name: 'excluded',
type: 'options',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
options: [
{
name: '(Unchanged)',
value: '',
},
{
name: 'False',
value: 'false',
},
{
name: 'True',
value: 'true',
},
],
default: '',
description: 'Whether the tracker pattern is excluded from the banner',
},
{
displayName: 'Description',
name: 'patternDescription',
type: 'string',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
default: '',
description: 'The description of the tracker pattern',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
options: [
{
displayName: 'Max Age Seconds',
name: 'maxAgeSeconds',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
description: 'The maximum age of the cookie in seconds. Set to 0 to clear the existing value.',
},
],
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const trackerPatternId = this.getNodeParameter('trackerPatternId', itemIndex) as string;
const displayName = this.getNodeParameter('displayName', itemIndex, '') as string;
const excluded = this.getNodeParameter('excluded', itemIndex, '') as string;
const patternDescription = this.getNodeParameter('patternDescription', itemIndex, '') as string;
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {}) as {
maxAgeSeconds?: number;
};
const query = `
mutation UpdateTrackerPattern($input: UpdateTrackerPatternInput!) {
updateTrackerPattern(input: $input) {
trackerPattern {
id
pattern
matchType
displayName
maxAgeSeconds
description
source
excluded
createdAt
updatedAt
}
cookieBanner {
id
name
}
}
}
`;
const input: Record<string, unknown> = { trackerPatternId };
if (displayName) input.displayName = displayName;
if (excluded) input.excluded = excluded === 'true';
if (patternDescription) input.description = patternDescription;
if (additionalFields.maxAgeSeconds !== undefined) {
input.maxAgeSeconds = additionalFields.maxAgeSeconds === 0 ? null : additionalFields.maxAgeSeconds;
}
const responseData = await proboApiRequest.call(this, query, { input });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}