mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Co-authored-by: Jan Arends <jan.arends@mailbox.org> Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
745 lines
23 KiB
TypeScript
745 lines
23 KiB
TypeScript
import { useEnv } from '@directus/env';
|
|
import { ForbiddenError, InvalidPayloadError } from '@directus/errors';
|
|
import type { SchemaInspector, Table } from '@directus/schema';
|
|
import { createInspector } from '@directus/schema';
|
|
import type { Accountability, FieldMeta, RawField, SchemaOverview } from '@directus/types';
|
|
import { addFieldFlag } from '@directus/utils';
|
|
import type Keyv from 'keyv';
|
|
import type { Knex } from 'knex';
|
|
import { chunk, groupBy, merge, omit } from 'lodash-es';
|
|
import { clearSystemCache, getCache } from '../cache.js';
|
|
import { ALIAS_TYPES } from '../constants.js';
|
|
import type { Helpers } from '../database/helpers/index.js';
|
|
import { getHelpers } from '../database/helpers/index.js';
|
|
import getDatabase, { getSchemaInspector } from '../database/index.js';
|
|
import emitter from '../emitter.js';
|
|
import type { AbstractServiceOptions, ActionEventParams, Collection, MutationOptions } from '../types/index.js';
|
|
import { getSchema } from '../utils/get-schema.js';
|
|
import { shouldClearCache } from '../utils/should-clear-cache.js';
|
|
import { FieldsService } from './fields.js';
|
|
import { ItemsService } from './items.js';
|
|
import { systemCollectionRows, type BaseCollectionMeta } from '@directus/system-data';
|
|
|
|
export type RawCollection = {
|
|
collection: string;
|
|
fields?: RawField[];
|
|
schema?: Partial<Table> | null;
|
|
meta?: Partial<BaseCollectionMeta> | null;
|
|
};
|
|
|
|
export class CollectionsService {
|
|
knex: Knex;
|
|
helpers: Helpers;
|
|
accountability: Accountability | null;
|
|
schemaInspector: SchemaInspector;
|
|
schema: SchemaOverview;
|
|
cache: Keyv<any> | null;
|
|
systemCache: Keyv<any>;
|
|
|
|
constructor(options: AbstractServiceOptions) {
|
|
this.knex = options.knex || getDatabase();
|
|
this.helpers = getHelpers(this.knex);
|
|
this.accountability = options.accountability || null;
|
|
this.schemaInspector = options.knex ? createInspector(options.knex) : getSchemaInspector();
|
|
this.schema = options.schema;
|
|
|
|
const { cache, systemCache } = getCache();
|
|
this.cache = cache;
|
|
this.systemCache = systemCache;
|
|
}
|
|
|
|
/**
|
|
* Create a single new collection
|
|
*/
|
|
async createOne(payload: RawCollection, opts?: MutationOptions): Promise<string> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
if (!payload.collection) throw new InvalidPayloadError({ reason: `"collection" is required` });
|
|
|
|
if (payload.collection.startsWith('directus_')) {
|
|
throw new InvalidPayloadError({ reason: `Collections can't start with "directus_"` });
|
|
}
|
|
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
const existingCollections: string[] = [
|
|
...((await this.knex.select('collection').from('directus_collections'))?.map(({ collection }) => collection) ??
|
|
[]),
|
|
...Object.keys(this.schema.collections),
|
|
];
|
|
|
|
if (existingCollections.includes(payload.collection)) {
|
|
throw new InvalidPayloadError({ reason: `Collection "${payload.collection}" already exists` });
|
|
}
|
|
|
|
// Create the collection/fields in a transaction so it'll be reverted in case of errors or
|
|
// permission problems. This might not work reliably in MySQL, as it doesn't support DDL in
|
|
// transactions.
|
|
await this.knex.transaction(async (trx) => {
|
|
if (payload.schema) {
|
|
// Directus heavily relies on the primary key of a collection, so we have to make sure that
|
|
// every collection that is created has a primary key. If no primary key field is created
|
|
// while making the collection, we default to an auto incremented id named `id`
|
|
if (!payload.fields) {
|
|
payload.fields = [
|
|
{
|
|
field: 'id',
|
|
type: 'integer',
|
|
meta: {
|
|
hidden: true,
|
|
interface: 'numeric',
|
|
readonly: true,
|
|
},
|
|
schema: {
|
|
is_primary_key: true,
|
|
has_auto_increment: true,
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
// Ensure that every field meta has the field/collection fields filled correctly
|
|
payload.fields = payload.fields.map((field) => {
|
|
if (field.meta) {
|
|
field.meta = {
|
|
...field.meta,
|
|
field: field.field,
|
|
collection: payload.collection!,
|
|
};
|
|
}
|
|
|
|
// Add flag for specific database type overrides
|
|
const flagToAdd = this.helpers.date.fieldFlagForField(field.type);
|
|
|
|
if (flagToAdd) {
|
|
addFieldFlag(field, flagToAdd);
|
|
}
|
|
|
|
return field;
|
|
});
|
|
|
|
const fieldsService = new FieldsService({ knex: trx, schema: this.schema });
|
|
|
|
await trx.schema.createTable(payload.collection, (table) => {
|
|
for (const field of payload.fields!) {
|
|
if (field.type && ALIAS_TYPES.includes(field.type) === false) {
|
|
fieldsService.addColumnToTable(table, field);
|
|
}
|
|
}
|
|
});
|
|
|
|
const fieldItemsService = new ItemsService('directus_fields', {
|
|
knex: trx,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
const fieldPayloads = payload.fields!.filter((field) => field.meta).map((field) => field.meta) as FieldMeta[];
|
|
|
|
// Sort new fields that does not have any group defined, in ascending order.
|
|
// Lodash merge is used so that the "sort" can be overridden if defined.
|
|
let sortedFieldPayloads = fieldPayloads
|
|
.filter((field) => field?.group === undefined || field?.group === null)
|
|
.map((field, index) => merge({ sort: index + 1 }, field));
|
|
|
|
// Sort remaining new fields with group defined, if any, in ascending order.
|
|
// sortedFieldPayloads will be less than fieldPayloads if it filtered out any fields with group defined.
|
|
if (sortedFieldPayloads.length < fieldPayloads.length) {
|
|
const fieldsWithGroups = groupBy(
|
|
fieldPayloads.filter((field) => field?.group),
|
|
(field) => field?.group,
|
|
);
|
|
|
|
// The sort order is restarted from 1 for fields in each group and appended to sortedFieldPayloads.
|
|
// Lodash merge is used so that the "sort" can be overridden if defined.
|
|
for (const [_group, fields] of Object.entries(fieldsWithGroups)) {
|
|
sortedFieldPayloads = sortedFieldPayloads.concat(
|
|
fields.map((field, index) => merge({ sort: index + 1 }, field)),
|
|
);
|
|
}
|
|
}
|
|
|
|
await fieldItemsService.createMany(sortedFieldPayloads, {
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
bypassLimits: true,
|
|
});
|
|
}
|
|
|
|
if (payload.meta) {
|
|
const collectionItemsService = new ItemsService('directus_collections', {
|
|
knex: trx,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
await collectionItemsService.createOne(
|
|
{
|
|
...payload.meta,
|
|
collection: payload.collection,
|
|
},
|
|
{
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
},
|
|
);
|
|
}
|
|
|
|
return payload.collection;
|
|
});
|
|
|
|
return payload.collection;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create multiple new collections
|
|
*/
|
|
async createMany(payloads: RawCollection[], opts?: MutationOptions): Promise<string[]> {
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
const collections = await this.knex.transaction(async (trx) => {
|
|
const service = new CollectionsService({
|
|
schema: this.schema,
|
|
accountability: this.accountability,
|
|
knex: trx,
|
|
});
|
|
|
|
const collectionNames: string[] = [];
|
|
|
|
for (const payload of payloads) {
|
|
const name = await service.createOne(payload, {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) => nestedActionEvents.push(params),
|
|
});
|
|
|
|
collectionNames.push(name);
|
|
}
|
|
|
|
return collectionNames;
|
|
});
|
|
|
|
return collections;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read all collections. Currently doesn't support any query.
|
|
*/
|
|
async readByQuery(): Promise<Collection[]> {
|
|
const env = useEnv();
|
|
|
|
const collectionItemsService = new ItemsService('directus_collections', {
|
|
knex: this.knex,
|
|
schema: this.schema,
|
|
accountability: this.accountability,
|
|
});
|
|
|
|
let tablesInDatabase = await this.schemaInspector.tableInfo();
|
|
|
|
let meta = (await collectionItemsService.readByQuery({
|
|
limit: -1,
|
|
})) as BaseCollectionMeta[];
|
|
|
|
meta.push(...systemCollectionRows);
|
|
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
const collectionsGroups: { [key: string]: string } = meta.reduce(
|
|
(meta, item) => ({
|
|
...meta,
|
|
[item.collection]: item.group,
|
|
}),
|
|
{},
|
|
);
|
|
|
|
let collectionsYouHavePermissionToRead: string[] = this.accountability
|
|
.permissions!.filter((permission) => {
|
|
return permission.action === 'read';
|
|
})
|
|
.map(({ collection }) => collection);
|
|
|
|
for (const collection of collectionsYouHavePermissionToRead) {
|
|
const group = collectionsGroups[collection];
|
|
if (group) collectionsYouHavePermissionToRead.push(group);
|
|
delete collectionsGroups[collection];
|
|
}
|
|
|
|
collectionsYouHavePermissionToRead = [...new Set([...collectionsYouHavePermissionToRead])];
|
|
|
|
tablesInDatabase = tablesInDatabase.filter((table) => {
|
|
return collectionsYouHavePermissionToRead.includes(table.name);
|
|
});
|
|
|
|
meta = meta.filter((collectionMeta) => {
|
|
return collectionsYouHavePermissionToRead.includes(collectionMeta.collection);
|
|
});
|
|
}
|
|
|
|
const collections: Collection[] = [];
|
|
|
|
for (const collectionMeta of meta) {
|
|
const collection: Collection = {
|
|
collection: collectionMeta.collection,
|
|
meta: collectionMeta,
|
|
schema: tablesInDatabase.find((table) => table.name === collectionMeta.collection) ?? null,
|
|
};
|
|
|
|
collections.push(collection);
|
|
}
|
|
|
|
for (const table of tablesInDatabase) {
|
|
const exists = !!collections.find(({ collection }) => collection === table.name);
|
|
|
|
if (!exists) {
|
|
collections.push({
|
|
collection: table.name,
|
|
schema: table,
|
|
meta: null,
|
|
});
|
|
}
|
|
}
|
|
|
|
if (env['DB_EXCLUDE_TABLES']) {
|
|
return collections.filter(
|
|
(collection) => (env['DB_EXCLUDE_TABLES'] as string[]).includes(collection.collection) === false,
|
|
);
|
|
}
|
|
|
|
return collections;
|
|
}
|
|
|
|
/**
|
|
* Get a single collection by name
|
|
*/
|
|
async readOne(collectionKey: string): Promise<Collection> {
|
|
const result = await this.readMany([collectionKey]);
|
|
|
|
if (result.length === 0) throw new ForbiddenError();
|
|
|
|
return result[0]!;
|
|
}
|
|
|
|
/**
|
|
* Read many collections by name
|
|
*/
|
|
async readMany(collectionKeys: string[]): Promise<Collection[]> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
const permissions = this.accountability.permissions!.filter((permission) => {
|
|
return permission.action === 'read' && collectionKeys.includes(permission.collection);
|
|
});
|
|
|
|
if (collectionKeys.length !== permissions.length) {
|
|
const collectionsYouHavePermissionToRead = permissions.map(({ collection }) => collection);
|
|
|
|
for (const collectionKey of collectionKeys) {
|
|
if (collectionsYouHavePermissionToRead.includes(collectionKey) === false) {
|
|
throw new ForbiddenError();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const collections = await this.readByQuery();
|
|
return collections.filter(({ collection }) => collectionKeys.includes(collection));
|
|
}
|
|
|
|
/**
|
|
* Update a single collection by name
|
|
*/
|
|
async updateOne(collectionKey: string, data: Partial<Collection>, opts?: MutationOptions): Promise<string> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
const collectionItemsService = new ItemsService('directus_collections', {
|
|
knex: this.knex,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
const payload = data as Partial<Collection>;
|
|
|
|
if (!payload.meta) {
|
|
return collectionKey;
|
|
}
|
|
|
|
const exists = !!(await this.knex
|
|
.select('collection')
|
|
.from('directus_collections')
|
|
.where({ collection: collectionKey })
|
|
.first());
|
|
|
|
if (exists) {
|
|
await collectionItemsService.updateOne(collectionKey, payload.meta, {
|
|
...opts,
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
});
|
|
} else {
|
|
await collectionItemsService.createOne(
|
|
{ ...payload.meta, collection: collectionKey },
|
|
{
|
|
...opts,
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
},
|
|
);
|
|
}
|
|
|
|
return collectionKey;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update multiple collections in a single transaction
|
|
*/
|
|
async updateBatch(data: Partial<Collection>[], opts?: MutationOptions): Promise<string[]> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
if (!Array.isArray(data)) {
|
|
throw new InvalidPayloadError({ reason: 'Input should be an array of collection changes' });
|
|
}
|
|
|
|
const collectionKey = 'collection';
|
|
const collectionKeys: string[] = [];
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
await this.knex.transaction(async (trx) => {
|
|
const collectionItemsService = new CollectionsService({
|
|
knex: trx,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
for (const payload of data) {
|
|
if (!payload[collectionKey]) {
|
|
throw new InvalidPayloadError({ reason: `Collection in update misses collection key` });
|
|
}
|
|
|
|
await collectionItemsService.updateOne(payload[collectionKey], omit(payload, collectionKey), {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
});
|
|
|
|
collectionKeys.push(payload[collectionKey]);
|
|
}
|
|
});
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
|
|
return collectionKeys;
|
|
}
|
|
|
|
/**
|
|
* Update multiple collections by name
|
|
*/
|
|
async updateMany(collectionKeys: string[], data: Partial<Collection>, opts?: MutationOptions): Promise<string[]> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
await this.knex.transaction(async (trx) => {
|
|
const service = new CollectionsService({
|
|
schema: this.schema,
|
|
accountability: this.accountability,
|
|
knex: trx,
|
|
});
|
|
|
|
for (const collectionKey of collectionKeys) {
|
|
await service.updateOne(collectionKey, data, {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) => nestedActionEvents.push(params),
|
|
});
|
|
}
|
|
});
|
|
|
|
return collectionKeys;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete a single collection This will delete the table and all records within. It'll also
|
|
* delete any fields, presets, activity, revisions, and permissions relating to this collection
|
|
*/
|
|
async deleteOne(collectionKey: string, opts?: MutationOptions): Promise<string> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
const collections = await this.readByQuery();
|
|
|
|
const collectionToBeDeleted = collections.find((collection) => collection.collection === collectionKey);
|
|
|
|
if (!!collectionToBeDeleted === false) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
await this.knex.transaction(async (trx) => {
|
|
if (collectionToBeDeleted!.schema) {
|
|
await trx.schema.dropTable(collectionKey);
|
|
}
|
|
|
|
// Make sure this collection isn't used as a group in any other collections
|
|
await trx('directus_collections').update({ group: null }).where({ group: collectionKey });
|
|
|
|
if (collectionToBeDeleted!.meta) {
|
|
const collectionItemsService = new ItemsService('directus_collections', {
|
|
knex: trx,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
await collectionItemsService.deleteOne(collectionKey, {
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
});
|
|
}
|
|
|
|
if (collectionToBeDeleted!.schema) {
|
|
const fieldsService = new FieldsService({
|
|
knex: trx,
|
|
accountability: this.accountability,
|
|
schema: this.schema,
|
|
});
|
|
|
|
await trx('directus_fields').delete().where('collection', '=', collectionKey);
|
|
await trx('directus_presets').delete().where('collection', '=', collectionKey);
|
|
|
|
const revisionsToDelete = await trx
|
|
.select('id')
|
|
.from('directus_revisions')
|
|
.where({ collection: collectionKey });
|
|
|
|
if (revisionsToDelete.length > 0) {
|
|
const chunks = chunk(
|
|
revisionsToDelete.map((record) => record.id),
|
|
10000,
|
|
);
|
|
|
|
for (const keys of chunks) {
|
|
await trx('directus_revisions').update({ parent: null }).whereIn('parent', keys);
|
|
}
|
|
}
|
|
|
|
await trx('directus_revisions').delete().where('collection', '=', collectionKey);
|
|
|
|
await trx('directus_activity').delete().where('collection', '=', collectionKey);
|
|
await trx('directus_permissions').delete().where('collection', '=', collectionKey);
|
|
await trx('directus_relations').delete().where({ many_collection: collectionKey });
|
|
|
|
const relations = this.schema.relations.filter((relation) => {
|
|
return relation.collection === collectionKey || relation.related_collection === collectionKey;
|
|
});
|
|
|
|
for (const relation of relations) {
|
|
// Delete related o2m fields that point to current collection
|
|
if (relation.related_collection && relation.meta?.one_field) {
|
|
await fieldsService.deleteField(relation.related_collection, relation.meta.one_field, {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
});
|
|
}
|
|
|
|
// Delete related m2o fields that point to current collection
|
|
if (relation.related_collection === collectionKey) {
|
|
await fieldsService.deleteField(relation.collection, relation.field, {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) =>
|
|
opts?.bypassEmitAction ? opts.bypassEmitAction(params) : nestedActionEvents.push(params),
|
|
});
|
|
}
|
|
}
|
|
|
|
const a2oRelationsThatIncludeThisCollection = this.schema.relations.filter((relation) => {
|
|
return relation.meta?.one_allowed_collections?.includes(collectionKey);
|
|
});
|
|
|
|
for (const relation of a2oRelationsThatIncludeThisCollection) {
|
|
const newAllowedCollections = relation
|
|
.meta!.one_allowed_collections!.filter((collection) => collectionKey !== collection)
|
|
.join(',');
|
|
|
|
await trx('directus_relations')
|
|
.update({ one_allowed_collections: newAllowedCollections })
|
|
.where({ id: relation.meta!.id });
|
|
}
|
|
}
|
|
});
|
|
|
|
return collectionKey;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete multiple collections by key
|
|
*/
|
|
async deleteMany(collectionKeys: string[], opts?: MutationOptions): Promise<string[]> {
|
|
if (this.accountability && this.accountability.admin !== true) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
const nestedActionEvents: ActionEventParams[] = [];
|
|
|
|
try {
|
|
await this.knex.transaction(async (trx) => {
|
|
const service = new CollectionsService({
|
|
schema: this.schema,
|
|
accountability: this.accountability,
|
|
knex: trx,
|
|
});
|
|
|
|
for (const collectionKey of collectionKeys) {
|
|
await service.deleteOne(collectionKey, {
|
|
autoPurgeCache: false,
|
|
autoPurgeSystemCache: false,
|
|
bypassEmitAction: (params) => nestedActionEvents.push(params),
|
|
});
|
|
}
|
|
});
|
|
|
|
return collectionKeys;
|
|
} finally {
|
|
if (shouldClearCache(this.cache, opts)) {
|
|
await this.cache.clear();
|
|
}
|
|
|
|
if (opts?.autoPurgeSystemCache !== false) {
|
|
await clearSystemCache({ autoPurgeCache: opts?.autoPurgeCache });
|
|
}
|
|
|
|
if (opts?.emitEvents !== false && nestedActionEvents.length > 0) {
|
|
const updatedSchema = await getSchema();
|
|
|
|
for (const nestedActionEvent of nestedActionEvents) {
|
|
nestedActionEvent.context.schema = updatedSchema;
|
|
emitter.emitAction(nestedActionEvent.event, nestedActionEvent.meta, nestedActionEvent.context);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|