@jrmc/adonis-attachment 6.0.0-alpha.1 → 6.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/commands.json +1 -1
- package/build/commands/make/attachment_v5_migration.d.ts.map +1 -1
- package/build/commands/make/attachment_v5_migration.js +6 -3
- package/build/commands/make/attachment_v5_migration.js.map +1 -1
- package/build/commands/make/attachments_table.d.ts.map +1 -1
- package/build/commands/make/attachments_table.js +8 -2
- package/build/commands/make/attachments_table.js.map +1 -1
- package/build/commands/make/converter.d.ts +17 -0
- package/build/commands/make/converter.d.ts.map +1 -0
- package/build/commands/make/converter.js +27 -0
- package/build/commands/make/converter.js.map +1 -0
- package/build/index.d.ts +12 -6
- package/build/index.d.ts.map +1 -1
- package/build/index.js +3 -5
- package/build/index.js.map +1 -1
- package/build/providers/attachment_provider.d.ts.map +1 -1
- package/build/providers/attachment_provider.js +36 -1
- package/build/providers/attachment_provider.js.map +1 -1
- package/build/services/converters.d.ts +10 -0
- package/build/services/converters.d.ts.map +1 -0
- package/build/services/converters.js +17 -0
- package/build/services/converters.js.map +1 -0
- package/build/src/adapters/adonis_drive_storage.d.ts.map +1 -1
- package/build/src/adapters/adonis_drive_storage.js +4 -1
- package/build/src/adapters/adonis_drive_storage.js.map +1 -1
- package/build/src/adapters/local_file_storage.d.ts.map +1 -1
- package/build/src/adapters/local_file_storage.js +9 -2
- package/build/src/adapters/local_file_storage.js.map +1 -1
- package/build/src/converters/autodetect_converter.d.ts +24 -0
- package/build/src/converters/autodetect_converter.d.ts.map +1 -0
- package/build/src/converters/autodetect_converter.js +113 -0
- package/build/src/converters/autodetect_converter.js.map +1 -0
- package/build/src/converters/configured_variant_converter_registry.d.ts +36 -0
- package/build/src/converters/configured_variant_converter_registry.d.ts.map +1 -0
- package/build/src/converters/configured_variant_converter_registry.js +81 -0
- package/build/src/converters/configured_variant_converter_registry.js.map +1 -0
- package/build/src/converters/converter.d.ts +148 -0
- package/build/src/converters/converter.d.ts.map +1 -0
- package/build/src/converters/converter.js +24 -0
- package/build/src/converters/converter.js.map +1 -0
- package/build/src/core/attachment.d.ts +7 -3
- package/build/src/core/attachment.d.ts.map +1 -1
- package/build/src/core/attachment.js +29 -4
- package/build/src/core/attachment.js.map +1 -1
- package/build/src/core/attachment_job_processor.d.ts +17 -1
- package/build/src/core/attachment_job_processor.d.ts.map +1 -1
- package/build/src/core/attachment_job_processor.js +81 -8
- package/build/src/core/attachment_job_processor.js.map +1 -1
- package/build/src/core/attachment_metadata_persister.d.ts +13 -0
- package/build/src/core/attachment_metadata_persister.d.ts.map +1 -0
- package/build/{tests/create_legacy_attachment_migration_script.spec.d.ts → src/core/attachment_metadata_persister.js} +1 -1
- package/build/src/core/attachment_metadata_persister.js.map +1 -0
- package/build/src/core/attachment_options.d.ts +3 -2
- package/build/src/core/attachment_options.d.ts.map +1 -1
- package/build/src/core/attachment_options.js.map +1 -1
- package/build/src/core/attachment_service.d.ts +24 -1
- package/build/src/core/attachment_service.d.ts.map +1 -1
- package/build/src/core/attachment_service.js +95 -4
- package/build/src/core/attachment_service.js.map +1 -1
- package/build/src/core/index.d.ts +9 -2
- package/build/src/core/index.d.ts.map +1 -1
- package/build/src/core/index.js +8 -2
- package/build/src/core/index.js.map +1 -1
- package/build/src/core/queue.d.ts +11 -1
- package/build/src/core/queue.d.ts.map +1 -1
- package/build/src/define_config.d.ts +40 -3
- package/build/src/define_config.d.ts.map +1 -1
- package/build/src/define_config.js +43 -1
- package/build/src/define_config.js.map +1 -1
- package/build/src/errors.d.ts +57 -0
- package/build/src/errors.d.ts.map +1 -0
- package/build/src/errors.js +96 -0
- package/build/src/errors.js.map +1 -0
- package/build/src/events/adonis_attachment_event_emitter.d.ts +17 -0
- package/build/src/events/adonis_attachment_event_emitter.d.ts.map +1 -0
- package/build/src/events/adonis_attachment_event_emitter.js +17 -0
- package/build/src/events/adonis_attachment_event_emitter.js.map +1 -0
- package/build/src/events/attachment_events.d.ts +43 -0
- package/build/src/events/attachment_events.d.ts.map +1 -0
- package/build/src/events/attachment_events.js +32 -0
- package/build/src/events/attachment_events.js.map +1 -0
- package/build/src/integrations/lucid/{attachment_column.d.ts → column/attachment_column.d.ts} +2 -2
- package/build/src/integrations/lucid/column/attachment_column.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachment_column.js → column/attachment_column.js} +2 -2
- package/build/src/integrations/lucid/column/attachment_column.js.map +1 -0
- package/build/src/integrations/lucid/index.d.ts +17 -13
- package/build/src/integrations/lucid/index.d.ts.map +1 -1
- package/build/src/integrations/lucid/index.js +17 -13
- package/build/src/integrations/lucid/index.js.map +1 -1
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.d.ts +20 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.d.ts.map +1 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.js +18 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.js.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment.d.ts → migrations/legacy/migrate_legacy_attachment.d.ts} +22 -10
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment.d.ts.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment.js → migrations/legacy/migrate_legacy_attachment.js} +35 -25
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment.js.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment_records.d.ts → migrations/legacy/migrate_legacy_attachment_records.d.ts} +3 -3
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment_records.d.ts.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment_records.js → migrations/legacy/migrate_legacy_attachment_records.js} +11 -7
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment_records.js.map +1 -0
- package/build/src/integrations/lucid/models/attachment_link_model.d.ts +30 -0
- package/build/src/integrations/lucid/models/attachment_link_model.d.ts.map +1 -0
- package/build/src/integrations/lucid/models/attachment_link_model.js +59 -0
- package/build/src/integrations/lucid/models/attachment_link_model.js.map +1 -0
- package/build/src/integrations/lucid/{attachment_model.d.ts → models/attachment_model.d.ts} +5 -8
- package/build/src/integrations/lucid/models/attachment_model.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachment_model.js → models/attachment_model.js} +5 -16
- package/build/src/integrations/lucid/models/attachment_model.js.map +1 -0
- package/build/src/integrations/lucid/{lucid_attachment_lifecycle_service.d.ts → persistence/lucid_attachment_lifecycle_service.d.ts} +18 -14
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.js +252 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.js.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_metadata_persister.d.ts +17 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_metadata_persister.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_metadata_persister.js +18 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_metadata_persister.js.map +1 -0
- package/build/src/integrations/lucid/{lucid_attachment_repository.d.ts → persistence/lucid_attachment_repository.d.ts} +3 -3
- package/build/src/integrations/lucid/persistence/lucid_attachment_repository.d.ts.map +1 -0
- package/build/src/integrations/lucid/{lucid_attachment_repository.js → persistence/lucid_attachment_repository.js} +1 -1
- package/build/src/integrations/lucid/persistence/lucid_attachment_repository.js.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.d.ts +48 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.js +226 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.js.map +1 -0
- package/build/src/integrations/lucid/{lucid_variant_generation_service.d.ts → persistence/lucid_variant_generation_service.d.ts} +8 -5
- package/build/src/integrations/lucid/persistence/lucid_variant_generation_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/{lucid_variant_generation_service.js → persistence/lucid_variant_generation_service.js} +9 -3
- package/build/src/integrations/lucid/persistence/lucid_variant_generation_service.js.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_owner.d.ts.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_owner.js.map +1 -0
- package/build/src/integrations/lucid/{attachment_relation.d.ts → relations/attachment_relation.d.ts} +29 -15
- package/build/src/integrations/lucid/relations/attachment_relation.d.ts.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_relation.js +273 -0
- package/build/src/integrations/lucid/relations/attachment_relation.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.d.ts +28 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.js +81 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.d.ts +15 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.js +23 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachments_table_stub.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachments_table_stub.js → schema/attachments_table_stub.js} +2 -4
- package/build/src/integrations/lucid/schema/attachments_table_stub.js.map +1 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.d.ts +12 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.js +19 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.js.map +1 -0
- package/build/src/media/binaries.d.ts +79 -0
- package/build/src/media/binaries.d.ts.map +1 -0
- package/build/src/media/binaries.js +288 -0
- package/build/src/media/binaries.js.map +1 -0
- package/build/src/media/blurhash.d.ts +48 -0
- package/build/src/media/blurhash.d.ts.map +1 -0
- package/build/src/media/blurhash.js +46 -0
- package/build/src/media/blurhash.js.map +1 -0
- package/build/src/media/exif.d.ts +23 -0
- package/build/src/media/exif.d.ts.map +1 -0
- package/build/src/media/exif.js +98 -0
- package/build/src/media/exif.js.map +1 -0
- package/build/src/media/media_metadata.d.ts +55 -0
- package/build/src/media/media_metadata.d.ts.map +1 -0
- package/build/src/media/media_metadata.js +27 -0
- package/build/src/media/media_metadata.js.map +1 -0
- package/build/src/media/sharp.d.ts +45 -0
- package/build/src/media/sharp.d.ts.map +1 -0
- package/build/src/media/sharp.js +76 -0
- package/build/src/media/sharp.js.map +1 -0
- package/build/src/media/v5_metadata.d.ts +20 -0
- package/build/src/media/v5_metadata.d.ts.map +1 -0
- package/build/src/media/v5_metadata.js +20 -0
- package/build/src/media/v5_metadata.js.map +1 -0
- package/build/src/queues/memory_queue.d.ts.map +1 -1
- package/build/src/queues/memory_queue.js +4 -1
- package/build/src/queues/memory_queue.js.map +1 -1
- package/build/src/sources/attachment_manager.d.ts +1 -3
- package/build/src/sources/attachment_manager.d.ts.map +1 -1
- package/build/src/sources/attachment_manager.js +19 -12
- package/build/src/sources/attachment_manager.js.map +1 -1
- package/build/src/variants/variant_converter.d.ts +4 -1
- package/build/src/variants/variant_converter.d.ts.map +1 -1
- package/build/src/variants/variant_generation_service.d.ts +9 -3
- package/build/src/variants/variant_generation_service.d.ts.map +1 -1
- package/build/src/variants/variant_generation_service.js +47 -6
- package/build/src/variants/variant_generation_service.js.map +1 -1
- package/build/stubs/config/attachment.stub +23 -2
- package/build/stubs/converters/converter.stub +18 -0
- package/build/stubs/migrations/attachments_table.stub +7 -25
- package/build/{src/integrations/lucid/render_legacy_attachment_migration_script.js → stubs/migrations/legacy_attachment_migration.stub} +13 -15
- package/build/tests/adonis_queue.spec.js +56 -1
- package/build/tests/adonis_queue.spec.js.map +1 -1
- package/build/tests/attachment_events.spec.d.ts +8 -0
- package/build/tests/attachment_events.spec.d.ts.map +1 -0
- package/build/tests/attachment_events.spec.js +65 -0
- package/build/tests/attachment_events.spec.js.map +1 -0
- package/build/tests/attachment_job_processor.spec.js +77 -2
- package/build/tests/attachment_job_processor.spec.js.map +1 -1
- package/build/tests/attachment_provider.spec.js +84 -1
- package/build/tests/attachment_provider.spec.js.map +1 -1
- package/build/tests/attachment_schema_service.spec.d.ts +8 -0
- package/build/tests/attachment_schema_service.spec.d.ts.map +1 -0
- package/build/tests/attachment_schema_service.spec.js +52 -0
- package/build/tests/attachment_schema_service.spec.js.map +1 -0
- package/build/tests/attachment_service.spec.js +81 -2
- package/build/tests/attachment_service.spec.js.map +1 -1
- package/build/tests/attachment_table_names.spec.d.ts +8 -0
- package/build/tests/attachment_table_names.spec.d.ts.map +1 -0
- package/build/tests/attachment_table_names.spec.js +36 -0
- package/build/tests/attachment_table_names.spec.js.map +1 -0
- package/build/tests/attachments_table_stub.spec.js +41 -6
- package/build/tests/attachments_table_stub.spec.js.map +1 -1
- package/build/tests/autodetect_converter.spec.d.ts +8 -0
- package/build/tests/autodetect_converter.spec.d.ts.map +1 -0
- package/build/tests/autodetect_converter.spec.js +55 -0
- package/build/tests/autodetect_converter.spec.js.map +1 -0
- package/build/tests/binary_media.spec.d.ts +8 -0
- package/build/tests/binary_media.spec.d.ts.map +1 -0
- package/build/tests/binary_media.spec.js +106 -0
- package/build/tests/binary_media.spec.js.map +1 -0
- package/build/tests/blurhash_media.spec.d.ts +8 -0
- package/build/tests/blurhash_media.spec.d.ts.map +1 -0
- package/build/tests/blurhash_media.spec.js +40 -0
- package/build/tests/blurhash_media.spec.js.map +1 -0
- package/build/tests/configure.spec.js +1 -0
- package/build/tests/configure.spec.js.map +1 -1
- package/build/tests/configured_variant_converter_registry.spec.d.ts +8 -0
- package/build/tests/configured_variant_converter_registry.spec.d.ts.map +1 -0
- package/build/tests/configured_variant_converter_registry.spec.js +73 -0
- package/build/tests/configured_variant_converter_registry.spec.js.map +1 -0
- package/build/tests/converter_config.types.d.ts +36 -0
- package/build/tests/converter_config.types.d.ts.map +1 -0
- package/build/tests/converter_config.types.js +60 -0
- package/build/tests/converter_config.types.js.map +1 -0
- package/build/tests/define_config.spec.js +113 -0
- package/build/tests/define_config.spec.js.map +1 -1
- package/build/tests/errors.spec.d.ts +8 -0
- package/build/tests/errors.spec.d.ts.map +1 -0
- package/build/tests/errors.spec.js +43 -0
- package/build/tests/errors.spec.js.map +1 -0
- package/build/tests/exif_media.spec.d.ts +8 -0
- package/build/tests/exif_media.spec.d.ts.map +1 -0
- package/build/tests/exif_media.spec.js +50 -0
- package/build/tests/exif_media.spec.js.map +1 -0
- package/build/tests/helpers/lucid_test_database.d.ts.map +1 -1
- package/build/tests/helpers/lucid_test_database.js +17 -7
- package/build/tests/helpers/lucid_test_database.js.map +1 -1
- package/build/tests/legacy_attachment_migration_stub.spec.d.ts +8 -0
- package/build/tests/legacy_attachment_migration_stub.spec.d.ts.map +1 -0
- package/build/tests/legacy_attachment_migration_stub.spec.js +57 -0
- package/build/tests/legacy_attachment_migration_stub.spec.js.map +1 -0
- package/build/tests/lucid_attachment_collection_store.spec.js +5 -4
- package/build/tests/lucid_attachment_collection_store.spec.js.map +1 -1
- package/build/tests/lucid_attachment_column.spec.js +1 -1
- package/build/tests/lucid_attachment_column.spec.js.map +1 -1
- package/build/tests/lucid_attachment_lifecycle_service.spec.js +144 -256
- package/build/tests/lucid_attachment_lifecycle_service.spec.js.map +1 -1
- package/build/tests/lucid_attachment_metadata_persister.spec.d.ts +8 -0
- package/build/tests/lucid_attachment_metadata_persister.spec.d.ts.map +1 -0
- package/build/tests/lucid_attachment_metadata_persister.spec.js +34 -0
- package/build/tests/lucid_attachment_metadata_persister.spec.js.map +1 -0
- package/build/tests/lucid_attachment_relation.spec.js +167 -27
- package/build/tests/lucid_attachment_relation.spec.js.map +1 -1
- package/build/tests/lucid_attachment_repository.spec.js +1 -1
- package/build/tests/lucid_attachment_repository.spec.js.map +1 -1
- package/build/tests/lucid_attachment_store.spec.js +24 -52
- package/build/tests/lucid_attachment_store.spec.js.map +1 -1
- package/build/tests/lucid_sqlite_integration.spec.js +24 -18
- package/build/tests/lucid_sqlite_integration.spec.js.map +1 -1
- package/build/tests/lucid_variant_generation_service.spec.js +18 -1
- package/build/tests/lucid_variant_generation_service.spec.js.map +1 -1
- package/build/tests/make_converter.spec.d.ts +8 -0
- package/build/tests/make_converter.spec.d.ts.map +1 -0
- package/build/tests/make_converter.spec.js +32 -0
- package/build/tests/make_converter.spec.js.map +1 -0
- package/build/tests/media_metadata.spec.d.ts +8 -0
- package/build/tests/media_metadata.spec.d.ts.map +1 -0
- package/build/tests/media_metadata.spec.js +51 -0
- package/build/tests/media_metadata.spec.js.map +1 -0
- package/build/tests/migrate_legacy_attachment.spec.js +62 -47
- package/build/tests/migrate_legacy_attachment.spec.js.map +1 -1
- package/build/tests/migrate_legacy_attachment_records.spec.js +4 -3
- package/build/tests/migrate_legacy_attachment_records.spec.js.map +1 -1
- package/build/tests/package_exports.spec.js +18 -2
- package/build/tests/package_exports.spec.js.map +1 -1
- package/build/tests/sharp_media.spec.d.ts +8 -0
- package/build/tests/sharp_media.spec.d.ts.map +1 -0
- package/build/tests/sharp_media.spec.js +84 -0
- package/build/tests/sharp_media.spec.js.map +1 -0
- package/build/tests/v5_metadata.spec.d.ts +8 -0
- package/build/tests/v5_metadata.spec.d.ts.map +1 -0
- package/build/tests/v5_metadata.spec.js +19 -0
- package/build/tests/v5_metadata.spec.js.map +1 -0
- package/build/tests/variant_generation_service.spec.js +122 -0
- package/build/tests/variant_generation_service.spec.js.map +1 -1
- package/package.json +50 -2
- package/build/src/integrations/lucid/attachment_column.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_column.js.map +0 -1
- package/build/src/integrations/lucid/attachment_model.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_model.js.map +0 -1
- package/build/src/integrations/lucid/attachment_owner.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_owner.js.map +0 -1
- package/build/src/integrations/lucid/attachment_relation.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_relation.js +0 -163
- package/build/src/integrations/lucid/attachment_relation.js.map +0 -1
- package/build/src/integrations/lucid/attachments_table_stub.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachments_table_stub.js.map +0 -1
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.d.ts +0 -13
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.d.ts.map +0 -1
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.js +0 -20
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.js +0 -188
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_repository.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_repository.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_store.d.ts +0 -36
- package/build/src/integrations/lucid/lucid_attachment_store.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_store.js +0 -179
- package/build/src/integrations/lucid/lucid_attachment_store.js.map +0 -1
- package/build/src/integrations/lucid/lucid_variant_generation_service.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_variant_generation_service.js.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment.d.ts.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment.js.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment_records.d.ts.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment_records.js.map +0 -1
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.d.ts +0 -11
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.d.ts.map +0 -1
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.js.map +0 -1
- package/build/tests/create_legacy_attachment_migration_script.spec.d.ts.map +0 -1
- package/build/tests/create_legacy_attachment_migration_script.spec.js +0 -31
- package/build/tests/create_legacy_attachment_migration_script.spec.js.map +0 -1
- /package/build/src/integrations/lucid/{attachment_owner.d.ts → relations/attachment_owner.d.ts} +0 -0
- /package/build/src/integrations/lucid/{attachment_owner.js → relations/attachment_owner.js} +0 -0
- /package/build/src/integrations/lucid/{attachments_table_stub.d.ts → schema/attachments_table_stub.d.ts} +0 -0
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import { isAttachmentDraft, } from '../../../core/attachment.js';
|
|
8
|
+
import { AttachmentConfigurationError } from '../../../errors.js';
|
|
9
|
+
export class LucidAttachmentLifecycleService {
|
|
10
|
+
#attachments;
|
|
11
|
+
#store;
|
|
12
|
+
constructor(attachments, store) {
|
|
13
|
+
this.#attachments = attachments;
|
|
14
|
+
this.#store = store;
|
|
15
|
+
}
|
|
16
|
+
get(owner) {
|
|
17
|
+
return this.#store.findOriginal(owner);
|
|
18
|
+
}
|
|
19
|
+
async attach(owner, input, options) {
|
|
20
|
+
const persisted = await this.#persist(owner, input, options);
|
|
21
|
+
let original;
|
|
22
|
+
try {
|
|
23
|
+
original = await this.#store.createOriginal(owner, persisted.attachment);
|
|
24
|
+
this.#removeOnRollback(owner, [persisted.attachment]);
|
|
25
|
+
}
|
|
26
|
+
catch (error) {
|
|
27
|
+
await this.#removeStoredFile(persisted.attachment);
|
|
28
|
+
throw error;
|
|
29
|
+
}
|
|
30
|
+
await this.#scheduleVariants(owner, persisted, options);
|
|
31
|
+
await this.#scheduleMetadata(owner, persisted, options);
|
|
32
|
+
return original;
|
|
33
|
+
}
|
|
34
|
+
async replace(owner, input, options) {
|
|
35
|
+
const previous = await this.#store.findOriginal(owner);
|
|
36
|
+
if (!previous) {
|
|
37
|
+
return this.attach(owner, input, options);
|
|
38
|
+
}
|
|
39
|
+
const persisted = await this.#persist(owner, input, options);
|
|
40
|
+
let current;
|
|
41
|
+
try {
|
|
42
|
+
await this.#store.releaseOwner(previous);
|
|
43
|
+
current = await this.#store.createOriginal(owner, persisted.attachment);
|
|
44
|
+
}
|
|
45
|
+
catch (error) {
|
|
46
|
+
await this.#store.restoreOwner(previous).catch(() => undefined);
|
|
47
|
+
await this.#removeStoredFile(persisted.attachment);
|
|
48
|
+
throw error;
|
|
49
|
+
}
|
|
50
|
+
try {
|
|
51
|
+
const removed = await this.#store.remove(previous);
|
|
52
|
+
await this.#removeOnCommit(owner, removed.map((item) => item.toAttachment()));
|
|
53
|
+
}
|
|
54
|
+
catch (error) {
|
|
55
|
+
await this.#store.remove(current).catch(() => undefined);
|
|
56
|
+
await this.#store.restoreOwner(previous).catch(() => undefined);
|
|
57
|
+
await this.#removeStoredFile(current.toAttachment());
|
|
58
|
+
throw error;
|
|
59
|
+
}
|
|
60
|
+
this.#removeOnRollback(owner, [current.toAttachment()]);
|
|
61
|
+
await this.#scheduleVariants(owner, persisted, options);
|
|
62
|
+
await this.#scheduleMetadata(owner, persisted, options);
|
|
63
|
+
return current;
|
|
64
|
+
}
|
|
65
|
+
async detach(owner) {
|
|
66
|
+
const original = await this.#store.findOriginal(owner);
|
|
67
|
+
if (!original) {
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
const removed = await this.#store.remove(original);
|
|
71
|
+
await this.#removeOnCommit(owner, removed.map((item) => item.toAttachment()));
|
|
72
|
+
}
|
|
73
|
+
async listVariants(owner) {
|
|
74
|
+
const original = await this.#store.findOriginal(owner);
|
|
75
|
+
return original ? this.#store.listVariants(original.attachmentId) : [];
|
|
76
|
+
}
|
|
77
|
+
async purgeOwner(owner) {
|
|
78
|
+
for (const link of await this.#store.listOwnerLinks(owner)) {
|
|
79
|
+
const removed = await this.#store.remove(link);
|
|
80
|
+
await this.#removeOnCommit(owner, removed.map((attachment) => attachment.toAttachment()));
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
async add(owner, input, position, options) {
|
|
84
|
+
const created = await this.#add(owner, input, position, options);
|
|
85
|
+
await this.#scheduleVariants(owner, created.persisted, options);
|
|
86
|
+
await this.#scheduleMetadata(owner, created.persisted, options);
|
|
87
|
+
return created.item;
|
|
88
|
+
}
|
|
89
|
+
async #add(owner, input, position, options) {
|
|
90
|
+
const persisted = await this.#persist(owner, input, options);
|
|
91
|
+
try {
|
|
92
|
+
const item = await this.#collectionStore().createCollectionItem(owner, persisted.attachment, position);
|
|
93
|
+
this.#removeOnRollback(owner, [persisted.attachment]);
|
|
94
|
+
return { item, persisted };
|
|
95
|
+
}
|
|
96
|
+
catch (error) {
|
|
97
|
+
await this.#removeStoredFile(persisted.attachment);
|
|
98
|
+
throw error;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
attachExisting(owner, attachmentId) {
|
|
102
|
+
return this.#linkStore().createOriginalLink(owner, attachmentId);
|
|
103
|
+
}
|
|
104
|
+
addExisting(owner, attachmentId, position) {
|
|
105
|
+
return this.#linkStore().createCollectionLink(owner, attachmentId, position);
|
|
106
|
+
}
|
|
107
|
+
listCollection(owner) {
|
|
108
|
+
return this.#collectionStore().listCollection(owner);
|
|
109
|
+
}
|
|
110
|
+
async removeCollectionItem(owner, id) {
|
|
111
|
+
const item = await this.#collectionStore().findCollectionItem(owner, id);
|
|
112
|
+
if (!item) {
|
|
113
|
+
return false;
|
|
114
|
+
}
|
|
115
|
+
await this.#detachCollectionItem(owner, item);
|
|
116
|
+
return true;
|
|
117
|
+
}
|
|
118
|
+
async clearCollection(owner) {
|
|
119
|
+
for (const item of await this.#collectionStore().listCollection(owner)) {
|
|
120
|
+
await this.#detachCollectionItem(owner, item);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
async replaceCollection(owner, inputs, options) {
|
|
124
|
+
const previous = await this.#collectionStore().listCollection(owner);
|
|
125
|
+
const created = [];
|
|
126
|
+
try {
|
|
127
|
+
for (const input of inputs) {
|
|
128
|
+
created.push(await this.#add(owner, input, undefined, options));
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
catch (error) {
|
|
132
|
+
await Promise.all(created.map(({ item }) => this.#detachCollectionItem(owner, item)));
|
|
133
|
+
throw error;
|
|
134
|
+
}
|
|
135
|
+
for (const item of previous) {
|
|
136
|
+
await this.#detachCollectionItem(owner, item);
|
|
137
|
+
}
|
|
138
|
+
for (const item of created) {
|
|
139
|
+
await this.#scheduleVariants(owner, item.persisted, options);
|
|
140
|
+
await this.#scheduleMetadata(owner, item.persisted, options);
|
|
141
|
+
}
|
|
142
|
+
return this.#collectionStore().listCollection(owner);
|
|
143
|
+
}
|
|
144
|
+
moveCollectionItem(owner, id, position) {
|
|
145
|
+
return this.#collectionStore().moveCollectionItem(owner, id, position);
|
|
146
|
+
}
|
|
147
|
+
async #removeStoredFile(attachment) {
|
|
148
|
+
await this.#attachments.remove(attachment);
|
|
149
|
+
}
|
|
150
|
+
async #removeOnCommit(owner, attachments) {
|
|
151
|
+
await this.#afterCommit(owner, () => this.#removeStoredFiles(attachments));
|
|
152
|
+
}
|
|
153
|
+
#removeOnRollback(owner, attachments) {
|
|
154
|
+
const transaction = getOwnerTransaction(owner);
|
|
155
|
+
if (transaction) {
|
|
156
|
+
transaction.after('rollback', () => this.#removeStoredFiles(attachments));
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
#removeStoredFiles(attachments) {
|
|
160
|
+
return Promise.all(attachments.map((attachment) => this.#removeStoredFile(attachment))).then(() => undefined);
|
|
161
|
+
}
|
|
162
|
+
async #afterCommit(owner, callback) {
|
|
163
|
+
const transaction = getOwnerTransaction(owner);
|
|
164
|
+
if (transaction) {
|
|
165
|
+
transaction.after('commit', callback);
|
|
166
|
+
return;
|
|
167
|
+
}
|
|
168
|
+
await callback();
|
|
169
|
+
}
|
|
170
|
+
async #detachCollectionItem(owner, item) {
|
|
171
|
+
const removed = await this.#collectionStore().removeCollectionItem(owner, item);
|
|
172
|
+
await this.#removeOnCommit(owner, removed.map((attachment) => attachment.toAttachment()));
|
|
173
|
+
}
|
|
174
|
+
#collectionStore() {
|
|
175
|
+
const store = this.#store;
|
|
176
|
+
if (!store.createCollectionItem ||
|
|
177
|
+
!store.findCollectionItem ||
|
|
178
|
+
!store.listCollection ||
|
|
179
|
+
!store.moveCollectionItem ||
|
|
180
|
+
!store.removeCollectionItem) {
|
|
181
|
+
throw new AttachmentConfigurationError('Lucid attachment collection operations require a collection-capable store');
|
|
182
|
+
}
|
|
183
|
+
return store;
|
|
184
|
+
}
|
|
185
|
+
#linkStore() {
|
|
186
|
+
const store = this.#store;
|
|
187
|
+
if (!store.createOriginalLink || !store.createCollectionLink) {
|
|
188
|
+
throw new AttachmentConfigurationError('Lucid attachment link operations require a link-capable store');
|
|
189
|
+
}
|
|
190
|
+
return store;
|
|
191
|
+
}
|
|
192
|
+
async #persist(owner, input, options) {
|
|
193
|
+
if (isAttachmentDraft(input)) {
|
|
194
|
+
return {
|
|
195
|
+
draft: input,
|
|
196
|
+
attachment: await input.persist({
|
|
197
|
+
...(options ? { options } : {}),
|
|
198
|
+
context: { model: owner.model, field: owner.field },
|
|
199
|
+
}),
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
if (this.#attachments.createDraft) {
|
|
203
|
+
const draft = this.#attachments.createDraft(input);
|
|
204
|
+
return {
|
|
205
|
+
draft,
|
|
206
|
+
attachment: await draft.persist({
|
|
207
|
+
...(options ? { options } : {}),
|
|
208
|
+
context: { model: owner.model, field: owner.field },
|
|
209
|
+
}),
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
return { attachment: await this.#attachments.create(input) };
|
|
213
|
+
}
|
|
214
|
+
async #scheduleVariants(owner, persisted, options) {
|
|
215
|
+
if (!persisted.draft || !this.#attachments.getVariantKeys || !this.#attachments.scheduleVariantGeneration) {
|
|
216
|
+
return;
|
|
217
|
+
}
|
|
218
|
+
const keys = this.#attachments.getVariantKeys(persisted.draft, options);
|
|
219
|
+
if (!keys?.length) {
|
|
220
|
+
return;
|
|
221
|
+
}
|
|
222
|
+
const meta = this.#attachments.getVariantMetadataEnabled?.(persisted.draft, options);
|
|
223
|
+
const eventContext = this.#eventContext(owner);
|
|
224
|
+
await this.#afterCommit(owner, () => this.#attachments.scheduleVariantGeneration(persisted.attachment, keys, meta, eventContext));
|
|
225
|
+
}
|
|
226
|
+
async #scheduleMetadata(owner, persisted, options) {
|
|
227
|
+
if (!persisted.draft || !this.#attachments.getMetadataMode || !this.#attachments.scheduleMetadataExtraction) {
|
|
228
|
+
return;
|
|
229
|
+
}
|
|
230
|
+
if (this.#attachments.getMetadataMode(persisted.draft, options) !== 'deferred') {
|
|
231
|
+
return;
|
|
232
|
+
}
|
|
233
|
+
const eventContext = this.#eventContext(owner);
|
|
234
|
+
await this.#afterCommit(owner, () => this.#attachments.scheduleMetadataExtraction(persisted.attachment, eventContext));
|
|
235
|
+
}
|
|
236
|
+
#eventContext(owner) {
|
|
237
|
+
const model = owner.model;
|
|
238
|
+
return {
|
|
239
|
+
tableName: owner.type,
|
|
240
|
+
attributeName: owner.field,
|
|
241
|
+
primary: {
|
|
242
|
+
key: model?.constructor?.primaryKey ?? 'id',
|
|
243
|
+
value: owner.id,
|
|
244
|
+
},
|
|
245
|
+
};
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
function getOwnerTransaction(owner) {
|
|
249
|
+
const model = owner.model;
|
|
250
|
+
return model?.$trx ?? null;
|
|
251
|
+
}
|
|
252
|
+
//# sourceMappingURL=lucid_attachment_lifecycle_service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_lifecycle_service.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import type { Attachment } from '../../../core/attachment.js';
|
|
8
|
+
import type { AttachmentMetadataPersister } from '../../../core/attachment_metadata_persister.js';
|
|
9
|
+
import type { AttachmentMetadata } from '../../../media/media_metadata.js';
|
|
10
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
11
|
+
/** Updates metadata for an attachment blob persisted in the Lucid attachments table. */
|
|
12
|
+
export declare class LucidAttachmentMetadataPersister implements AttachmentMetadataPersister {
|
|
13
|
+
#private;
|
|
14
|
+
constructor(model?: typeof AttachmentModel);
|
|
15
|
+
persistMetadata(attachment: Attachment, metadata: AttachmentMetadata): Promise<void>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=lucid_attachment_metadata_persister.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_metadata_persister.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_metadata_persister.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAC7D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,gDAAgD,CAAA;AACjG,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAA;AAC1E,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,wFAAwF;AACxF,qBAAa,gCAAiC,YAAW,2BAA2B;;gBAGtE,KAAK,GAAE,OAAO,eAAiC;IAIrD,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC;CAG3F"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
8
|
+
/** Updates metadata for an attachment blob persisted in the Lucid attachments table. */
|
|
9
|
+
export class LucidAttachmentMetadataPersister {
|
|
10
|
+
#model;
|
|
11
|
+
constructor(model = AttachmentModel) {
|
|
12
|
+
this.#model = model;
|
|
13
|
+
}
|
|
14
|
+
async persistMetadata(attachment, metadata) {
|
|
15
|
+
await this.#model.query().where('id', attachment.id).update({ metadata });
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=lucid_attachment_metadata_persister.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_metadata_persister.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_metadata_persister.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,wFAAwF;AACxF,MAAM,OAAO,gCAAgC;IAClC,MAAM,CAAwB;IAEvC,YAAY,QAAgC,eAAe;QACzD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;IACrB,CAAC;IAED,KAAK,CAAC,eAAe,CAAC,UAAsB,EAAE,QAA4B;QACxE,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,IAAI,EAAE,UAAU,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAA;IAC3E,CAAC;CACF"}
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
|
-
import type { Attachment } from '
|
|
8
|
-
import type { AttachmentRepository } from '
|
|
9
|
-
import { AttachmentModel } from '
|
|
7
|
+
import type { Attachment } from '../../../core/attachment.js';
|
|
8
|
+
import type { AttachmentRepository } from '../../../core/attachment_repository.js';
|
|
9
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
10
10
|
/**
|
|
11
11
|
* Attachment repository used by workers when attachments are persisted by Lucid.
|
|
12
12
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_repository.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_repository.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAC7D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAA;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D;;GAEG;AACH,qBAAa,yBAA0B,YAAW,oBAAoB;;gBAGxD,KAAK,GAAE,OAAO,eAAiC;IAIrD,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC;CAKvD"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
|
-
import { AttachmentModel } from '
|
|
7
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
8
8
|
/**
|
|
9
9
|
* Attachment repository used by workers when attachments are persisted by Lucid.
|
|
10
10
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_repository.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_repository.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D;;GAEG;AACH,MAAM,OAAO,yBAAyB;IAC3B,MAAM,CAAwB;IAEvC,YAAY,QAAgC,eAAe;QACzD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;IACrB,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,EAAU;QACvB,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;QAEtC,OAAO,GAAG,EAAE,YAAY,EAAE,IAAI,IAAI,CAAA;IACpC,CAAC;CACF"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import type { TransactionClientContract } from '@adonisjs/lucid/types/database';
|
|
8
|
+
import type { Attachment } from '../../../core/attachment.js';
|
|
9
|
+
import { type AttachmentOwner } from '../relations/attachment_owner.js';
|
|
10
|
+
import { AttachmentLinkModel } from '../models/attachment_link_model.js';
|
|
11
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
12
|
+
export type LucidAttachmentWithVariants = {
|
|
13
|
+
original: AttachmentLinkModel;
|
|
14
|
+
variants: AttachmentModel[];
|
|
15
|
+
};
|
|
16
|
+
export type LucidAttachmentStoreOptions = {
|
|
17
|
+
client?: TransactionClientContract;
|
|
18
|
+
linkModel?: typeof AttachmentLinkModel;
|
|
19
|
+
createLinkId?: () => string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Persists immutable file blobs separately from their polymorphic owner links.
|
|
23
|
+
*/
|
|
24
|
+
export declare class LucidAttachmentStore {
|
|
25
|
+
#private;
|
|
26
|
+
constructor(blobModel?: typeof AttachmentModel, options?: LucidAttachmentStoreOptions);
|
|
27
|
+
createOriginal(owner: AttachmentOwner, attachment: Attachment): Promise<AttachmentLinkModel>;
|
|
28
|
+
createCollectionItem(owner: AttachmentOwner, attachment: Attachment, position?: number): Promise<AttachmentLinkModel>;
|
|
29
|
+
createOriginalLink(owner: AttachmentOwner, attachmentId: string): Promise<AttachmentLinkModel>;
|
|
30
|
+
createCollectionLink(owner: AttachmentOwner, attachmentId: string, position?: number): Promise<AttachmentLinkModel>;
|
|
31
|
+
createVariant(original: AttachmentModel, key: string, attachment: Attachment): Promise<AttachmentModel>;
|
|
32
|
+
releaseOwner(original: AttachmentLinkModel): Promise<void>;
|
|
33
|
+
restoreOwner(original: AttachmentLinkModel): Promise<void>;
|
|
34
|
+
findOriginal(owner: AttachmentOwner): Promise<AttachmentLinkModel | null>;
|
|
35
|
+
listCollection(owner: AttachmentOwner): Promise<AttachmentLinkModel[]>;
|
|
36
|
+
findCollectionItem(owner: AttachmentOwner, id: string): Promise<AttachmentLinkModel | null>;
|
|
37
|
+
removeCollectionItem(owner: AttachmentOwner, item: AttachmentLinkModel): Promise<AttachmentModel[]>;
|
|
38
|
+
moveCollectionItem(owner: AttachmentOwner, id: string, position: number): Promise<AttachmentLinkModel[]>;
|
|
39
|
+
findById(id: string): Promise<AttachmentModel | null>;
|
|
40
|
+
findByOwner(owner: AttachmentOwner): Promise<LucidAttachmentWithVariants | null>;
|
|
41
|
+
listVariants(originalId: string): Promise<AttachmentModel[]>;
|
|
42
|
+
/**
|
|
43
|
+
* Deletes a link and returns blobs that became unreferenced and were removed.
|
|
44
|
+
*/
|
|
45
|
+
remove(link: AttachmentLinkModel): Promise<AttachmentModel[]>;
|
|
46
|
+
listOwnerLinks(owner: AttachmentOwner): Promise<AttachmentLinkModel[]>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=lucid_attachment_store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_store.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_store.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAE/E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAE7D,OAAO,EAA4B,KAAK,eAAe,EAAE,MAAM,kCAAkC,CAAA;AACjG,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAG/D,MAAM,MAAM,2BAA2B,GAAG;IACxC,QAAQ,EAAE,mBAAmB,CAAA;IAC7B,QAAQ,EAAE,eAAe,EAAE,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,MAAM,CAAC,EAAE,yBAAyB,CAAA;IAClC,SAAS,CAAC,EAAE,OAAO,mBAAmB,CAAA;IACtC,YAAY,CAAC,EAAE,MAAM,MAAM,CAAA;CAC5B,CAAA;AAED;;GAEG;AACH,qBAAa,oBAAoB;;gBAO7B,SAAS,GAAE,OAAO,eAAiC,EACnD,OAAO,GAAE,2BAAgC;IAQrC,cAAc,CAAC,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAW5F,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,UAAU,EAAE,UAAU,EACtB,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,mBAAmB,CAAC;IAczB,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAK9F,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,YAAY,EAAE,MAAM,EACpB,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,mBAAmB,CAAC;IAS/B,aAAa,CACX,QAAQ,EAAE,eAAe,EACzB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,UAAU,GACrB,OAAO,CAAC,eAAe,CAAC;IAIrB,YAAY,CAAC,QAAQ,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAK1D,YAAY,CAAC,QAAQ,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAShE,YAAY,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IASzE,cAAc,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAStE,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAUrF,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,IAAI,EAAE,mBAAmB,GACxB,OAAO,CAAC,eAAe,EAAE,CAAC;IAMvB,kBAAkB,CACtB,KAAK,EAAE,eAAe,EACtB,EAAE,EAAE,MAAM,EACV,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAqBjC,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAI/C,WAAW,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC;IAatF,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,EAAE,CAAC;IAI5D;;OAEG;IACG,MAAM,CAAC,IAAI,EAAE,mBAAmB,GAAG,OAAO,CAAC,eAAe,EAAE,CAAC;IAcnE,cAAc,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,EAAE,CAAC;CAkGvE"}
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import { randomUUID } from 'node:crypto';
|
|
8
|
+
import { markAttachmentPersisted } from '../../../core/attachment_state.js';
|
|
9
|
+
import { createAttachmentOwnerKey } from '../relations/attachment_owner.js';
|
|
10
|
+
import { AttachmentLinkModel } from '../models/attachment_link_model.js';
|
|
11
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
12
|
+
import { AttachmentNotFoundError, AttachmentValidationError } from '../../../errors.js';
|
|
13
|
+
/**
|
|
14
|
+
* Persists immutable file blobs separately from their polymorphic owner links.
|
|
15
|
+
*/
|
|
16
|
+
export class LucidAttachmentStore {
|
|
17
|
+
#blobModel;
|
|
18
|
+
#linkModel;
|
|
19
|
+
#client;
|
|
20
|
+
#createLinkId;
|
|
21
|
+
constructor(blobModel = AttachmentModel, options = {}) {
|
|
22
|
+
this.#blobModel = blobModel;
|
|
23
|
+
this.#linkModel = options.linkModel ?? AttachmentLinkModel;
|
|
24
|
+
this.#client = options.client;
|
|
25
|
+
this.#createLinkId = options.createLinkId ?? randomUUID;
|
|
26
|
+
}
|
|
27
|
+
async createOriginal(owner, attachment) {
|
|
28
|
+
const blob = await this.#createBlob(attachment);
|
|
29
|
+
try {
|
|
30
|
+
return await this.#createLink(owner, blob, { ownerKey: createAttachmentOwnerKey(owner) });
|
|
31
|
+
}
|
|
32
|
+
catch (error) {
|
|
33
|
+
await blob.delete().catch(() => undefined);
|
|
34
|
+
throw error;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
async createCollectionItem(owner, attachment, position) {
|
|
38
|
+
const items = await this.listCollection(owner);
|
|
39
|
+
const target = normalizePosition(position, items.length);
|
|
40
|
+
const blob = await this.#createBlob(attachment);
|
|
41
|
+
try {
|
|
42
|
+
await this.#shiftCollection(items, target, 1);
|
|
43
|
+
return await this.#createLink(owner, blob, { position: target });
|
|
44
|
+
}
|
|
45
|
+
catch (error) {
|
|
46
|
+
await blob.delete().catch(() => undefined);
|
|
47
|
+
throw error;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
async createOriginalLink(owner, attachmentId) {
|
|
51
|
+
const blob = await this.#findBlobOrFail(attachmentId);
|
|
52
|
+
return this.#createLink(owner, blob, { ownerKey: createAttachmentOwnerKey(owner) });
|
|
53
|
+
}
|
|
54
|
+
async createCollectionLink(owner, attachmentId, position) {
|
|
55
|
+
const items = await this.listCollection(owner);
|
|
56
|
+
const target = normalizePosition(position, items.length);
|
|
57
|
+
const blob = await this.#findBlobOrFail(attachmentId);
|
|
58
|
+
await this.#shiftCollection(items, target, 1);
|
|
59
|
+
return this.#createLink(owner, blob, { position: target });
|
|
60
|
+
}
|
|
61
|
+
createVariant(original, key, attachment) {
|
|
62
|
+
return this.#createBlob(attachment, { parentId: original.id, variantKey: key });
|
|
63
|
+
}
|
|
64
|
+
async releaseOwner(original) {
|
|
65
|
+
original.ownerKey = null;
|
|
66
|
+
await original.save();
|
|
67
|
+
}
|
|
68
|
+
async restoreOwner(original) {
|
|
69
|
+
original.ownerKey = createAttachmentOwnerKey({
|
|
70
|
+
type: original.attachableType,
|
|
71
|
+
id: original.attachableId,
|
|
72
|
+
field: original.field,
|
|
73
|
+
});
|
|
74
|
+
await original.save();
|
|
75
|
+
}
|
|
76
|
+
findOriginal(owner) {
|
|
77
|
+
return this.#linkQuery()
|
|
78
|
+
.where('attachable_type', owner.type)
|
|
79
|
+
.where('attachable_id', owner.id)
|
|
80
|
+
.where('field', owner.field)
|
|
81
|
+
.whereNotNull('owner_key')
|
|
82
|
+
.first();
|
|
83
|
+
}
|
|
84
|
+
listCollection(owner) {
|
|
85
|
+
return this.#linkQuery()
|
|
86
|
+
.where('attachable_type', owner.type)
|
|
87
|
+
.where('attachable_id', owner.id)
|
|
88
|
+
.where('field', owner.field)
|
|
89
|
+
.whereNull('owner_key')
|
|
90
|
+
.orderBy('position', 'asc');
|
|
91
|
+
}
|
|
92
|
+
findCollectionItem(owner, id) {
|
|
93
|
+
return this.#linkQuery()
|
|
94
|
+
.where('id', id)
|
|
95
|
+
.where('attachable_type', owner.type)
|
|
96
|
+
.where('attachable_id', owner.id)
|
|
97
|
+
.where('field', owner.field)
|
|
98
|
+
.whereNull('owner_key')
|
|
99
|
+
.first();
|
|
100
|
+
}
|
|
101
|
+
async removeCollectionItem(owner, item) {
|
|
102
|
+
const removed = await this.remove(item);
|
|
103
|
+
await this.#normalizeCollection(owner);
|
|
104
|
+
return removed;
|
|
105
|
+
}
|
|
106
|
+
async moveCollectionItem(owner, id, position) {
|
|
107
|
+
const items = await this.listCollection(owner);
|
|
108
|
+
const source = items.findIndex((item) => item.id === id);
|
|
109
|
+
if (source === -1) {
|
|
110
|
+
throw new AttachmentValidationError(`Attachment link "${id}" does not belong to this collection`);
|
|
111
|
+
}
|
|
112
|
+
const target = normalizePosition(position, items.length - 1);
|
|
113
|
+
if (source === target) {
|
|
114
|
+
return items;
|
|
115
|
+
}
|
|
116
|
+
const [item] = items.splice(source, 1);
|
|
117
|
+
items.splice(target, 0, item);
|
|
118
|
+
await this.#reorderCollection(items);
|
|
119
|
+
return items;
|
|
120
|
+
}
|
|
121
|
+
findById(id) {
|
|
122
|
+
return this.#blobQuery().where('id', id).first();
|
|
123
|
+
}
|
|
124
|
+
async findByOwner(owner) {
|
|
125
|
+
const original = await this.findOriginal(owner);
|
|
126
|
+
if (!original) {
|
|
127
|
+
return null;
|
|
128
|
+
}
|
|
129
|
+
return {
|
|
130
|
+
original,
|
|
131
|
+
variants: await this.listVariants(original.attachmentId),
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
listVariants(originalId) {
|
|
135
|
+
return this.#blobQuery().where('parent_id', originalId);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Deletes a link and returns blobs that became unreferenced and were removed.
|
|
139
|
+
*/
|
|
140
|
+
async remove(link) {
|
|
141
|
+
const attachment = link.attachment ?? (await this.findById(link.attachmentId));
|
|
142
|
+
await link.delete();
|
|
143
|
+
if (!attachment || (await this.#linkQuery().where('attachment_id', attachment.id).first())) {
|
|
144
|
+
return [];
|
|
145
|
+
}
|
|
146
|
+
const variants = await this.listVariants(attachment.id);
|
|
147
|
+
await attachment.delete();
|
|
148
|
+
return [attachment, ...variants];
|
|
149
|
+
}
|
|
150
|
+
listOwnerLinks(owner) {
|
|
151
|
+
return this.#linkQuery()
|
|
152
|
+
.where('attachable_type', owner.type)
|
|
153
|
+
.where('attachable_id', owner.id);
|
|
154
|
+
}
|
|
155
|
+
async #createBlob(attachment, options = {}) {
|
|
156
|
+
const blob = await this.#blobModel.create({
|
|
157
|
+
...attachment,
|
|
158
|
+
parentId: options.parentId ?? null,
|
|
159
|
+
variantKey: options.variantKey ?? null,
|
|
160
|
+
blurhash: attachment.blurhash ?? null,
|
|
161
|
+
metadata: attachment.metadata ?? null,
|
|
162
|
+
}, this.#client ? { client: this.#client } : undefined);
|
|
163
|
+
markAttachmentPersisted(attachment);
|
|
164
|
+
return blob;
|
|
165
|
+
}
|
|
166
|
+
async #findBlobOrFail(id) {
|
|
167
|
+
const blob = await this.findById(id);
|
|
168
|
+
if (!blob) {
|
|
169
|
+
throw new AttachmentNotFoundError(id);
|
|
170
|
+
}
|
|
171
|
+
return blob;
|
|
172
|
+
}
|
|
173
|
+
async #createLink(owner, attachment, options = {}) {
|
|
174
|
+
const link = await this.#linkModel.create({
|
|
175
|
+
id: this.#createLinkId(),
|
|
176
|
+
attachableType: owner.type,
|
|
177
|
+
attachableId: owner.id,
|
|
178
|
+
field: owner.field,
|
|
179
|
+
ownerKey: options.ownerKey ?? null,
|
|
180
|
+
position: options.position ?? null,
|
|
181
|
+
attachmentId: attachment.id,
|
|
182
|
+
}, this.#client ? { client: this.#client } : undefined);
|
|
183
|
+
return this.#linkQuery().where('id', link.id).firstOrFail();
|
|
184
|
+
}
|
|
185
|
+
async #normalizeCollection(owner) {
|
|
186
|
+
await this.#reorderCollection(await this.listCollection(owner));
|
|
187
|
+
}
|
|
188
|
+
#blobQuery() {
|
|
189
|
+
return this.#blobModel.query(this.#client ? { client: this.#client } : undefined);
|
|
190
|
+
}
|
|
191
|
+
#linkQuery() {
|
|
192
|
+
return this.#linkModel
|
|
193
|
+
.query(this.#client ? { client: this.#client } : undefined)
|
|
194
|
+
.preload('attachment');
|
|
195
|
+
}
|
|
196
|
+
async #shiftCollection(items, from, amount) {
|
|
197
|
+
for (const item of [...items].reverse()) {
|
|
198
|
+
if ((item.position ?? 0) < from) {
|
|
199
|
+
continue;
|
|
200
|
+
}
|
|
201
|
+
item.position = (item.position ?? 0) + amount;
|
|
202
|
+
await item.save();
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
async #reorderCollection(items) {
|
|
206
|
+
const offset = items.length + 1;
|
|
207
|
+
for (const item of items) {
|
|
208
|
+
item.position = (item.position ?? 0) + offset;
|
|
209
|
+
await item.save();
|
|
210
|
+
}
|
|
211
|
+
for (const [position, item] of items.entries()) {
|
|
212
|
+
item.position = position;
|
|
213
|
+
await item.save();
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
function normalizePosition(position, maximum) {
|
|
218
|
+
if (position === undefined) {
|
|
219
|
+
return maximum;
|
|
220
|
+
}
|
|
221
|
+
if (!Number.isSafeInteger(position) || position < 0) {
|
|
222
|
+
throw new AttachmentValidationError('Attachment collection positions must be non-negative integers');
|
|
223
|
+
}
|
|
224
|
+
return Math.min(position, maximum);
|
|
225
|
+
}
|
|
226
|
+
//# sourceMappingURL=lucid_attachment_store.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_store.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_store.ts"],"names":[],"mappings":"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"}
|