mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
431 lines
18 KiB
TypeScript
431 lines
18 KiB
TypeScript
// Authentication
|
|
export * from './authentication/BearerWebIdExtractor';
|
|
export * from './authentication/Credentials';
|
|
export * from './authentication/CredentialsExtractor';
|
|
export * from './authentication/DPoPWebIdExtractor';
|
|
export * from './authentication/PublicCredentialsExtractor';
|
|
export * from './authentication/UnionCredentialsExtractor';
|
|
export * from './authentication/UnsecureConstantCredentialsExtractor';
|
|
export * from './authentication/UnsecureWebIdExtractor';
|
|
|
|
// Authorization/Access
|
|
export * from './authorization/access/AccessChecker';
|
|
export * from './authorization/access/AgentAccessChecker';
|
|
export * from './authorization/access/AgentClassAccessChecker';
|
|
export * from './authorization/access/AgentGroupAccessChecker';
|
|
|
|
// Authorization/Permissions
|
|
export * from './authorization/permissions/Permissions';
|
|
export * from './authorization/permissions/ModesExtractor';
|
|
export * from './authorization/permissions/MethodModesExtractor';
|
|
export * from './authorization/permissions/N3PatchModesExtractor';
|
|
export * from './authorization/permissions/SparqlUpdateModesExtractor';
|
|
|
|
// Authorization
|
|
export * from './authorization/AllStaticReader';
|
|
export * from './authorization/Authorizer';
|
|
export * from './authorization/AuxiliaryReader';
|
|
export * from './authorization/OwnerPermissionReader';
|
|
export * from './authorization/PathBasedReader';
|
|
export * from './authorization/PermissionBasedAuthorizer';
|
|
export * from './authorization/PermissionReader';
|
|
export * from './authorization/UnionPermissionReader';
|
|
export * from './authorization/WebAclReader';
|
|
|
|
// HTTP/Auxiliary
|
|
export * from './http/auxiliary/AuxiliaryIdentifierStrategy';
|
|
export * from './http/auxiliary/AuxiliaryStrategy';
|
|
export * from './http/auxiliary/ComposedAuxiliaryStrategy';
|
|
export * from './http/auxiliary/LinkMetadataGenerator';
|
|
export * from './http/auxiliary/MetadataGenerator';
|
|
export * from './http/auxiliary/RdfValidator';
|
|
export * from './http/auxiliary/RoutingAuxiliaryIdentifierStrategy';
|
|
export * from './http/auxiliary/RoutingAuxiliaryStrategy';
|
|
export * from './http/auxiliary/SuffixAuxiliaryIdentifierStrategy';
|
|
export * from './http/auxiliary/Validator';
|
|
|
|
// HTTP/Input/Body
|
|
export * from './http/input/body/BodyParser';
|
|
export * from './http/input/body/N3PatchBodyParser';
|
|
export * from './http/input/body/RawBodyParser';
|
|
export * from './http/input/body/SparqlUpdateBodyParser';
|
|
|
|
// HTTP/Input/Conditions
|
|
export * from './http/input/conditions/BasicConditionsParser';
|
|
export * from './http/input/conditions/ConditionsParser';
|
|
|
|
// HTTP/Input/Identifier
|
|
export * from './http/input/identifier/OriginalUrlExtractor';
|
|
export * from './http/input/identifier/TargetExtractor';
|
|
|
|
// HTTP/Input/Metadata
|
|
export * from './http/input/metadata/ContentLengthParser';
|
|
export * from './http/input/metadata/ContentTypeParser';
|
|
export * from './http/input/metadata/LinkRelParser';
|
|
export * from './http/input/metadata/MetadataParser';
|
|
export * from './http/input/metadata/SlugParser';
|
|
|
|
// HTTP/Input/Preferences
|
|
export * from './http/input/preferences/AcceptPreferenceParser';
|
|
export * from './http/input/preferences/PreferenceParser';
|
|
|
|
// HTTP/Input
|
|
export * from './http/input/BasicRequestParser';
|
|
export * from './http/input/RequestParser';
|
|
|
|
// HTTP/LDP/Metadata
|
|
export * from './http/ldp/metadata/OperationMetadataCollector';
|
|
export * from './http/ldp/metadata/WebAclMetadataCollector';
|
|
|
|
// HTTP/LDP
|
|
export * from './http/ldp/DeleteOperationHandler';
|
|
export * from './http/ldp/GetOperationHandler';
|
|
export * from './http/ldp/HeadOperationHandler';
|
|
export * from './http/ldp/OperationHandler';
|
|
export * from './http/ldp/PatchOperationHandler';
|
|
export * from './http/ldp/PostOperationHandler';
|
|
export * from './http/ldp/PutOperationHandler';
|
|
|
|
// HTTP/Output/Error
|
|
export * from './http/output/error/ConvertingErrorHandler';
|
|
export * from './http/output/error/ErrorHandler';
|
|
export * from './http/output/error/RedirectingErrorHandler';
|
|
export * from './http/output/error/SafeErrorHandler';
|
|
|
|
// HTTP/Output/Metadata
|
|
export * from './http/output/metadata/ConstantMetadataWriter';
|
|
export * from './http/output/metadata/LinkRelMetadataWriter';
|
|
export * from './http/output/metadata/MappedMetadataWriter';
|
|
export * from './http/output/metadata/MetadataWriter';
|
|
export * from './http/output/metadata/ModifiedMetadataWriter';
|
|
export * from './http/output/metadata/WacAllowMetadataWriter';
|
|
export * from './http/output/metadata/WwwAuthMetadataWriter';
|
|
|
|
// HTTP/Output/Response
|
|
export * from './http/output/response/CreatedResponseDescription';
|
|
export * from './http/output/response/OkResponseDescription';
|
|
export * from './http/output/response/ResetResponseDescription';
|
|
export * from './http/output/response/ResponseDescription';
|
|
|
|
// HTTP/Output
|
|
export * from './http/output/BasicResponseWriter';
|
|
export * from './http/output/ResponseWriter';
|
|
|
|
// HTTP/Representation
|
|
export * from './http/representation/BasicRepresentation';
|
|
export * from './http/representation/Patch';
|
|
export * from './http/representation/Representation';
|
|
export * from './http/representation/RepresentationMetadata';
|
|
export * from './http/representation/RepresentationPreferences';
|
|
export * from './http/representation/ResourceIdentifier';
|
|
export * from './http/representation/SparqlUpdatePatch';
|
|
|
|
// HTTP
|
|
export * from './http/Operation';
|
|
export * from './http/UnsecureWebSocketsProtocol';
|
|
|
|
// Identity/Configuration
|
|
export * from './identity/configuration/IdentityProviderFactory';
|
|
export * from './identity/configuration/ProviderFactory';
|
|
|
|
// Identity/Interaction/Email-Password/Handler
|
|
export * from './identity/interaction/email-password/handler/ForgotPasswordHandler';
|
|
export * from './identity/interaction/email-password/handler/LoginHandler';
|
|
export * from './identity/interaction/email-password/handler/RegistrationHandler';
|
|
export * from './identity/interaction/email-password/handler/ResetPasswordHandler';
|
|
|
|
// Identity/Interaction/Email-Password/Storage
|
|
export * from './identity/interaction/email-password/storage/AccountStore';
|
|
export * from './identity/interaction/email-password/storage/BaseAccountStore';
|
|
|
|
// Identity/Interaction/Email-Password/Util
|
|
export * from './identity/interaction/email-password/util/RegistrationManager';
|
|
|
|
// Identity/Interaction/Email-Password
|
|
export * from './identity/interaction/email-password/EmailPasswordUtil';
|
|
|
|
// Identity/Interaction/Routing
|
|
export * from './identity/interaction/routing/BasicInteractionRoute';
|
|
export * from './identity/interaction/routing/InteractionRoute';
|
|
export * from './identity/interaction/routing/RelativeInteractionRoute';
|
|
|
|
// Identity/Interaction/Util
|
|
export * from './identity/interaction/util/BaseEmailSender';
|
|
export * from './identity/interaction/util/BaseInteractionCompleter';
|
|
export * from './identity/interaction/util/EmailSender';
|
|
export * from './identity/interaction/util/InteractionCompleter';
|
|
|
|
// Identity/Interaction
|
|
export * from './identity/interaction/BaseInteractionHandler';
|
|
export * from './identity/interaction/CompletingInteractionHandler';
|
|
export * from './identity/interaction/ExistingLoginHandler';
|
|
export * from './identity/interaction/ControlHandler';
|
|
export * from './identity/interaction/HtmlViewHandler';
|
|
export * from './identity/interaction/InteractionHandler';
|
|
export * from './identity/interaction/PromptHandler';
|
|
|
|
// Identity/Ownership
|
|
export * from './identity/ownership/NoCheckOwnershipValidator';
|
|
export * from './identity/ownership/OwnershipValidator';
|
|
export * from './identity/ownership/TokenOwnershipValidator';
|
|
|
|
// Identity/Storage
|
|
export * from './identity/storage/AdapterFactory';
|
|
export * from './identity/storage/ExpiringAdapterFactory';
|
|
export * from './identity/storage/WebIdAdapterFactory';
|
|
|
|
// Identity
|
|
export * from './identity/IdentityProviderHttpHandler';
|
|
export * from './identity/OidcHttpHandler';
|
|
|
|
// Init/Final
|
|
export * from './init/final/Finalizable';
|
|
export * from './init/final/ParallelFinalizer';
|
|
|
|
// Init/Setup
|
|
export * from './init/setup/SetupHttpHandler';
|
|
|
|
// Init/Cli
|
|
export * from './init/cli/CliExtractor';
|
|
export * from './init/cli/YargsCliExtractor';
|
|
|
|
// Init/Variables/Extractors
|
|
export * from './init/variables/extractors/KeyExtractor';
|
|
export * from './init/variables/extractors/AssetPathExtractor';
|
|
export * from './init/variables/extractors/BaseUrlExtractor';
|
|
export * from './init/variables/extractors/SettingsExtractor';
|
|
|
|
// Init/Variables
|
|
export * from './init/variables/CombinedSettingsResolver';
|
|
export * from './init/variables/SettingsResolver';
|
|
|
|
// Init
|
|
export * from './init/App';
|
|
export * from './init/AppRunner';
|
|
export * from './init/CliResolver';
|
|
export * from './init/ConfigPodInitializer';
|
|
export * from './init/ContainerInitializer';
|
|
export * from './init/Initializer';
|
|
export * from './init/LoggerInitializer';
|
|
export * from './init/ServerInitializer';
|
|
|
|
// Logging
|
|
export * from './logging/LazyLogger';
|
|
export * from './logging/LazyLoggerFactory';
|
|
export * from './logging/Logger';
|
|
export * from './logging/LoggerFactory';
|
|
export * from './logging/LogLevel';
|
|
export * from './logging/LogUtil';
|
|
export * from './logging/VoidLogger';
|
|
export * from './logging/VoidLoggerFactory';
|
|
export * from './logging/WinstonLogger';
|
|
export * from './logging/WinstonLoggerFactory';
|
|
|
|
// Pods/Generate/Variables
|
|
export * from './pods/generate/variables/BaseUrlHandler';
|
|
export * from './pods/generate/variables/RootFilePathHandler';
|
|
export * from './pods/generate/variables/VariableHandler';
|
|
export * from './pods/generate/variables/Variables';
|
|
export * from './pods/generate/variables/VariableSetter';
|
|
|
|
// Pods/Generate
|
|
export * from './pods/generate/BaseComponentsJsFactory';
|
|
export * from './pods/generate/ComponentsJsFactory';
|
|
export * from './pods/generate/GenerateUtil';
|
|
export * from './pods/generate/IdentifierGenerator';
|
|
export * from './pods/generate/PodGenerator';
|
|
export * from './pods/generate/ResourcesGenerator';
|
|
export * from './pods/generate/SubdomainIdentifierGenerator';
|
|
export * from './pods/generate/SuffixIdentifierGenerator';
|
|
export * from './pods/generate/TemplatedPodGenerator';
|
|
export * from './pods/generate/TemplatedResourcesGenerator';
|
|
|
|
// Pods/Settings
|
|
export * from './pods/settings/PodSettings';
|
|
|
|
// Pods
|
|
export * from './pods/ConfigPodManager';
|
|
export * from './pods/GeneratedPodManager';
|
|
export * from './pods/PodManager';
|
|
|
|
// Server
|
|
export * from './server/AuthorizingHttpHandler';
|
|
export * from './server/BaseHttpServerFactory';
|
|
export * from './server/HttpHandler';
|
|
export * from './server/HttpRequest';
|
|
export * from './server/HttpResponse';
|
|
export * from './server/HttpServerFactory';
|
|
export * from './server/OperationHttpHandler';
|
|
export * from './server/ParsingHttpHandler';
|
|
export * from './server/WebSocketHandler';
|
|
export * from './server/WebSocketServerFactory';
|
|
|
|
// Server/Middleware
|
|
export * from './server/middleware/CorsHandler';
|
|
export * from './server/middleware/HeaderHandler';
|
|
export * from './server/middleware/StaticAssetHandler';
|
|
export * from './server/middleware/WebSocketAdvertiser';
|
|
|
|
// Server/Util
|
|
export * from './server/util/RedirectAllHttpHandler';
|
|
export * from './server/util/RouterHandler';
|
|
|
|
// Storage/Accessors
|
|
export * from './storage/accessors/AtomicDataAccessor';
|
|
export * from './storage/accessors/AtomicFileDataAccessor';
|
|
export * from './storage/accessors/DataAccessor';
|
|
export * from './storage/accessors/FileDataAccessor';
|
|
export * from './storage/accessors/InMemoryDataAccessor';
|
|
export * from './storage/accessors/PassthroughDataAccessor';
|
|
export * from './storage/accessors/SparqlDataAccessor';
|
|
export * from './storage/accessors/ValidatingDataAccessor';
|
|
|
|
// Storage/Conversion
|
|
export * from './storage/conversion/BaseTypedRepresentationConverter';
|
|
export * from './storage/conversion/ChainedConverter';
|
|
export * from './storage/conversion/ConstantConverter';
|
|
export * from './storage/conversion/ContainerToTemplateConverter';
|
|
export * from './storage/conversion/ContentTypeReplacer';
|
|
export * from './storage/conversion/ConversionUtil';
|
|
export * from './storage/conversion/DynamicJsonToTemplateConverter';
|
|
export * from './storage/conversion/ErrorToJsonConverter';
|
|
export * from './storage/conversion/ErrorToQuadConverter';
|
|
export * from './storage/conversion/ErrorToTemplateConverter';
|
|
export * from './storage/conversion/FormToJsonConverter';
|
|
export * from './storage/conversion/MarkdownToHtmlConverter';
|
|
export * from './storage/conversion/PassthroughConverter';
|
|
export * from './storage/conversion/QuadToRdfConverter';
|
|
export * from './storage/conversion/RdfToQuadConverter';
|
|
export * from './storage/conversion/RepresentationConverter';
|
|
export * from './storage/conversion/TypedRepresentationConverter';
|
|
|
|
// Storage/KeyValue
|
|
export * from './storage/keyvalue/ExpiringStorage';
|
|
export * from './storage/keyvalue/JsonFileStorage';
|
|
export * from './storage/keyvalue/JsonResourceStorage';
|
|
export * from './storage/keyvalue/KeyValueStorage';
|
|
export * from './storage/keyvalue/MemoryMapStorage';
|
|
export * from './storage/keyvalue/WrappedExpiringStorage';
|
|
|
|
// Storage/Mapping
|
|
export * from './storage/mapping/BaseFileIdentifierMapper';
|
|
export * from './storage/mapping/ExtensionBasedMapper';
|
|
export * from './storage/mapping/FileIdentifierMapper';
|
|
export * from './storage/mapping/FixedContentTypeMapper';
|
|
export * from './storage/mapping/SubdomainExtensionBasedMapper';
|
|
|
|
// Storage/Patch
|
|
export * from './storage/patch/ContainerPatcher';
|
|
export * from './storage/patch/ConvertingPatcher';
|
|
export * from './storage/patch/N3Patcher';
|
|
export * from './storage/patch/PatchHandler';
|
|
export * from './storage/patch/RepresentationPatcher';
|
|
export * from './storage/patch/RepresentationPatchHandler';
|
|
export * from './storage/patch/SparqlUpdatePatcher';
|
|
|
|
// Storage/Quota
|
|
export * from './storage/quota/GlobalQuotaStrategy';
|
|
export * from './storage/quota/PodQuotaStrategy';
|
|
export * from './storage/quota/QuotaStrategy';
|
|
|
|
// Storage/Routing
|
|
export * from './storage/routing/BaseUrlRouterRule';
|
|
export * from './storage/routing/ConvertingRouterRule';
|
|
export * from './storage/routing/PreferenceSupport';
|
|
export * from './storage/routing/RegexRouterRule';
|
|
export * from './storage/routing/RouterRule';
|
|
|
|
// Storage/Size-Reporter
|
|
export * from './storage/size-reporter/FileSizeReporter';
|
|
export * from './storage/size-reporter/Size';
|
|
export * from './storage/size-reporter/SizeReporter';
|
|
|
|
// Storage/Validators
|
|
export * from './storage/validators/QuotaValidator';
|
|
|
|
// Storage
|
|
export * from './storage/AtomicResourceStore';
|
|
export * from './storage/BaseResourceStore';
|
|
export * from './storage/BasicConditions';
|
|
export * from './storage/Conditions';
|
|
export * from './storage/DataAccessorBasedStore';
|
|
export * from './storage/IndexRepresentationStore';
|
|
export * from './storage/LockingResourceStore';
|
|
export * from './storage/MonitoringStore';
|
|
export * from './storage/PassthroughStore';
|
|
export * from './storage/PatchingStore';
|
|
export * from './storage/ReadOnlyStore';
|
|
export * from './storage/RepresentationConvertingStore';
|
|
export * from './storage/ResourceStore';
|
|
export * from './storage/RoutingResourceStore';
|
|
|
|
// Util/Errors
|
|
export * from './util/errors/BadRequestHttpError';
|
|
export * from './util/errors/ConflictHttpError';
|
|
export * from './util/errors/ErrorUtil';
|
|
export * from './util/errors/ForbiddenHttpError';
|
|
export * from './util/errors/FoundHttpError';
|
|
export * from './util/errors/HttpError';
|
|
export * from './util/errors/HttpErrorUtil';
|
|
export * from './util/errors/InternalServerError';
|
|
export * from './util/errors/MethodNotAllowedHttpError';
|
|
export * from './util/errors/MovedPermanentlyHttpError';
|
|
export * from './util/errors/NotFoundHttpError';
|
|
export * from './util/errors/NotImplementedHttpError';
|
|
export * from './util/errors/PreconditionFailedHttpError';
|
|
export * from './util/errors/RedirectHttpError';
|
|
export * from './util/errors/SystemError';
|
|
export * from './util/errors/UnauthorizedHttpError';
|
|
export * from './util/errors/UnsupportedMediaTypeHttpError';
|
|
|
|
// Util/Handlers
|
|
export * from './util/handlers/AsyncHandler';
|
|
export * from './util/handlers/BooleanHandler';
|
|
export * from './util/handlers/ConditionalHandler';
|
|
export * from './util/handlers/HandlerUtil';
|
|
export * from './util/handlers/MethodFilterHandler';
|
|
export * from './util/handlers/ParallelHandler';
|
|
export * from './util/handlers/SequenceHandler';
|
|
export * from './util/handlers/StaticHandler';
|
|
export * from './util/handlers/StaticThrowHandler';
|
|
export * from './util/handlers/UnionHandler';
|
|
export * from './util/handlers/UnsupportedAsyncHandler';
|
|
export * from './util/handlers/WaterfallHandler';
|
|
|
|
// Util/Identifiers
|
|
export * from './util/identifiers/BaseIdentifierStrategy';
|
|
export * from './util/identifiers/IdentifierStrategy';
|
|
export * from './util/identifiers/SingleRootIdentifierStrategy';
|
|
export * from './util/identifiers/SubdomainIdentifierStrategy';
|
|
|
|
// Util/Locking
|
|
export * from './util/locking/ExpiringReadWriteLocker';
|
|
export * from './util/locking/EqualReadWriteLocker';
|
|
export * from './util/locking/GreedyReadWriteLocker';
|
|
export * from './util/locking/ReadWriteLocker';
|
|
export * from './util/locking/RedisResourceLocker';
|
|
export * from './util/locking/ResourceLocker';
|
|
export * from './util/locking/SingleThreadedResourceLocker';
|
|
export * from './util/locking/WrappedExpiringReadWriteLocker';
|
|
export * from './util/locking/VoidLocker';
|
|
|
|
// Util/Templates
|
|
export * from './util/templates/ChainedTemplateEngine';
|
|
export * from './util/templates/EjsTemplateEngine';
|
|
export * from './util/templates/HandlebarsTemplateEngine';
|
|
export * from './util/templates/TemplateEngine';
|
|
|
|
// Util
|
|
export * from './util/ContentTypes';
|
|
export * from './util/FetchUtil';
|
|
export * from './util/GuardedStream';
|
|
export * from './util/HeaderUtil';
|
|
export * from './util/PathUtil';
|
|
export * from './util/PromiseUtil';
|
|
export * from './util/QuadUtil';
|
|
export * from './util/RecordObject';
|
|
export * from './util/ResourceUtil';
|
|
export * from './util/StreamUtil';
|
|
export * from './util/TermUtil';
|
|
export * from './util/Vocabularies';
|