mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
feat: Expose ConversionUtil.
This commit is contained in:
@@ -130,6 +130,7 @@ export * from './storage/accessors/SparqlDataAccessor';
|
||||
|
||||
// Storage/Conversion
|
||||
export * from './storage/conversion/ChainedConverter';
|
||||
export * from './storage/conversion/ConversionUtil';
|
||||
export * from './storage/conversion/QuadToRdfConverter';
|
||||
export * from './storage/conversion/RdfToQuadConverter';
|
||||
export * from './storage/conversion/RepresentationConverter';
|
||||
|
||||
@@ -4,7 +4,7 @@ import type { ResourceIdentifier } from '../ldp/representation/ResourceIdentifie
|
||||
import { getLoggerFor } from '../logging/LogUtil';
|
||||
import { InternalServerError } from '../util/errors/InternalServerError';
|
||||
import type { Conditions } from './Conditions';
|
||||
import { matchingTypes } from './conversion/ConversionUtil';
|
||||
import { matchingMediaTypes } from './conversion/ConversionUtil';
|
||||
import type { RepresentationConverter, RepresentationConverterArgs } from './conversion/RepresentationConverter';
|
||||
import { PassthroughStore } from './PassthroughStore';
|
||||
import type { ResourceStore } from './ResourceStore';
|
||||
@@ -77,7 +77,7 @@ export class RepresentationConvertingStore<T extends ResourceStore = ResourceSto
|
||||
}
|
||||
|
||||
// Check if there is a result if we try to map the preferences to the content-type
|
||||
return matchingTypes(preferences, [ contentType ]).length > 0;
|
||||
return matchingMediaTypes(preferences, [ contentType ]).length > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { Representation } from '../../ldp/representation/Representation';
|
||||
import { getLoggerFor } from '../../logging/LogUtil';
|
||||
import { validateRequestArgs, matchingMediaType } from './ConversionUtil';
|
||||
import { supportsConversion, matchesMediaType } from './ConversionUtil';
|
||||
import type { RepresentationConverterArgs } from './RepresentationConverter';
|
||||
import { TypedRepresentationConverter } from './TypedRepresentationConverter';
|
||||
|
||||
@@ -47,7 +47,7 @@ export class ChainedConverter extends TypedRepresentationConverter {
|
||||
// So we only check if the input can be parsed and the preferred type can be written
|
||||
const inTypes = this.filterTypes(await this.first.getInputTypes());
|
||||
const outTypes = this.filterTypes(await this.last.getOutputTypes());
|
||||
validateRequestArgs(input, inTypes, outTypes);
|
||||
supportsConversion(input, inTypes, outTypes);
|
||||
}
|
||||
|
||||
private filterTypes(typeVals: Record<string, number>): string[] {
|
||||
@@ -85,7 +85,7 @@ export class ChainedConverter extends TypedRepresentationConverter {
|
||||
for (const rightType of rightKeys) {
|
||||
const rightWeight = rightTypes[rightType];
|
||||
const weight = leftWeight * rightWeight;
|
||||
if (weight > bestMatch.weight && matchingMediaType(leftType, rightType)) {
|
||||
if (weight > bestMatch.weight && matchesMediaType(leftType, rightType)) {
|
||||
bestMatch = { type: leftType, weight };
|
||||
if (weight === 1) {
|
||||
this.logger.info(`${bestMatch.type} is an exact match between ${leftKeys} and ${rightKeys}`);
|
||||
|
||||
@@ -21,7 +21,7 @@ import type { RepresentationConverterArgs } from './RepresentationConverter';
|
||||
*
|
||||
* @returns The weighted and filtered list of matching types.
|
||||
*/
|
||||
export const matchingTypes = (preferences: RepresentationPreferences, types: string[]):
|
||||
export const matchingMediaTypes = (preferences: RepresentationPreferences, types: string[]):
|
||||
RepresentationPreference[] => {
|
||||
if (!Array.isArray(preferences.type)) {
|
||||
throw new BadRequestHttpError('Output type required for conversion.');
|
||||
@@ -65,7 +65,7 @@ RepresentationPreference[] => {
|
||||
*
|
||||
* @returns True if the media type patterns can match each other.
|
||||
*/
|
||||
export const matchingMediaType = (mediaA: string, mediaB: string): boolean => {
|
||||
export const matchesMediaType = (mediaA: string, mediaB: string): boolean => {
|
||||
if (mediaA === mediaB) {
|
||||
return true;
|
||||
}
|
||||
@@ -85,24 +85,26 @@ export const matchingMediaType = (mediaA: string, mediaB: string): boolean => {
|
||||
};
|
||||
|
||||
/**
|
||||
* Runs some standard checks on the input request:
|
||||
* Determines whether the given conversion request is supported,
|
||||
* given the available content type conversions:
|
||||
* - Checks if there is a content type for the input.
|
||||
* - Checks if the input type is supported by the parser.
|
||||
* - Checks if the parser can produce one of the preferred output types.
|
||||
* Throws an error with details if conversion is not possible.
|
||||
* @param request - Incoming arguments.
|
||||
* @param supportedIn - Media types that can be parsed by the converter.
|
||||
* @param supportedOut - Media types that can be produced by the converter.
|
||||
*/
|
||||
export const validateRequestArgs = (request: RepresentationConverterArgs, supportedIn: string[],
|
||||
export const supportsConversion = (request: RepresentationConverterArgs, supportedIn: string[],
|
||||
supportedOut: string[]): void => {
|
||||
const inType = request.representation.metadata.contentType;
|
||||
if (!inType) {
|
||||
throw new BadRequestHttpError('Input type required for conversion.');
|
||||
}
|
||||
if (!supportedIn.some((type): boolean => matchingMediaType(inType, type))) {
|
||||
if (!supportedIn.some((type): boolean => matchesMediaType(inType, type))) {
|
||||
throw new NotImplementedHttpError(`Can only convert from ${supportedIn} to ${supportedOut}.`);
|
||||
}
|
||||
if (matchingTypes(request.preferences, supportedOut).length <= 0) {
|
||||
if (matchingMediaTypes(request.preferences, supportedOut).length <= 0) {
|
||||
throw new NotImplementedHttpError(`Can only convert from ${supportedIn} to ${supportedOut}.`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -6,7 +6,7 @@ import type { RepresentationPreferences } from '../../ldp/representation/Represe
|
||||
import { INTERNAL_QUADS } from '../../util/ContentTypes';
|
||||
import { guardStream } from '../../util/GuardedStream';
|
||||
import { CONTENT_TYPE } from '../../util/UriConstants';
|
||||
import { validateRequestArgs, matchingTypes } from './ConversionUtil';
|
||||
import { supportsConversion, matchingMediaTypes } from './ConversionUtil';
|
||||
import type { RepresentationConverterArgs } from './RepresentationConverter';
|
||||
import { TypedRepresentationConverter } from './TypedRepresentationConverter';
|
||||
|
||||
@@ -23,7 +23,7 @@ export class QuadToRdfConverter extends TypedRepresentationConverter {
|
||||
}
|
||||
|
||||
public async canHandle(input: RepresentationConverterArgs): Promise<void> {
|
||||
validateRequestArgs(input, [ INTERNAL_QUADS ], await rdfSerializer.getContentTypes());
|
||||
supportsConversion(input, [ INTERNAL_QUADS ], await rdfSerializer.getContentTypes());
|
||||
}
|
||||
|
||||
public async handle(input: RepresentationConverterArgs): Promise<Representation> {
|
||||
@@ -31,7 +31,7 @@ export class QuadToRdfConverter extends TypedRepresentationConverter {
|
||||
}
|
||||
|
||||
private async quadsToRdf(quads: Representation, preferences: RepresentationPreferences): Promise<Representation> {
|
||||
const contentType = matchingTypes(preferences, await rdfSerializer.getContentTypes())[0].value;
|
||||
const contentType = matchingMediaTypes(preferences, await rdfSerializer.getContentTypes())[0].value;
|
||||
const metadata = new RepresentationMetadata(quads.metadata, { [CONTENT_TYPE]: contentType });
|
||||
return {
|
||||
binary: true,
|
||||
|
||||
@@ -6,7 +6,7 @@ import { INTERNAL_QUADS } from '../../util/ContentTypes';
|
||||
import { BadRequestHttpError } from '../../util/errors/BadRequestHttpError';
|
||||
import { pipeSafely } from '../../util/StreamUtil';
|
||||
import { CONTENT_TYPE } from '../../util/UriConstants';
|
||||
import { validateRequestArgs } from './ConversionUtil';
|
||||
import { supportsConversion } from './ConversionUtil';
|
||||
import type { RepresentationConverterArgs } from './RepresentationConverter';
|
||||
import { TypedRepresentationConverter } from './TypedRepresentationConverter';
|
||||
|
||||
@@ -23,7 +23,7 @@ export class RdfToQuadConverter extends TypedRepresentationConverter {
|
||||
}
|
||||
|
||||
public async canHandle(input: RepresentationConverterArgs): Promise<void> {
|
||||
validateRequestArgs(input, await rdfParser.getContentTypes(), [ INTERNAL_QUADS ]);
|
||||
supportsConversion(input, await rdfParser.getContentTypes(), [ INTERNAL_QUADS ]);
|
||||
}
|
||||
|
||||
public async handle(input: RepresentationConverterArgs): Promise<Representation> {
|
||||
|
||||
Reference in New Issue
Block a user