86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
import { DicomMetadataStore } from '../services/DicomMetadataStore';
|
|
// TODO: Use above to inject so dependent datasources don't need to import or
|
|
// depend on @ohif/core?
|
|
|
|
/**
|
|
* Factory function that creates a new "Web API" data source.
|
|
* A "Web API" data source is any source that fetches data over
|
|
* HTTP. This function serves as an "adapter" to wrap those calls
|
|
* so that all "Web API" data sources have the same interface and can
|
|
* be used interchangeably.
|
|
*
|
|
* It's worth noting that a single implementation of this interface
|
|
* can define different underlying sources for "read" and "write" operations.
|
|
*/
|
|
function create({
|
|
query,
|
|
retrieve,
|
|
store,
|
|
reject,
|
|
initialize,
|
|
deleteStudyMetadataPromise,
|
|
getImageIdsForDisplaySet,
|
|
getImageIdsForInstance,
|
|
getConfig,
|
|
getStudyInstanceUIDs,
|
|
}) {
|
|
const defaultQuery = {
|
|
studies: {
|
|
/**
|
|
* @param {string} params.patientName
|
|
* @param {string} params.mrn
|
|
* @param {object} params.studyDate
|
|
* @param {string} params.description
|
|
* @param {string} params.modality
|
|
* @param {string} params.accession
|
|
* @param {string} params.sortBy
|
|
* @param {string} params.sortDirection -
|
|
* @param {number} params.page
|
|
* @param {number} params.resultsPerPage
|
|
*/
|
|
mapParams: params => params,
|
|
requestResults: () => {},
|
|
processResults: results => results,
|
|
},
|
|
series: {},
|
|
instances: {},
|
|
};
|
|
|
|
const defaultRetrieve = {
|
|
series: {},
|
|
};
|
|
|
|
const defaultStore = {
|
|
dicom: async naturalizedDataset => {
|
|
throw new Error(
|
|
'store.dicom(naturalizedDicom, StudyInstanceUID) not implemented for dataSource.'
|
|
);
|
|
},
|
|
};
|
|
|
|
const defaultReject = {};
|
|
|
|
const defaultGetConfig = () => {
|
|
return { dicomUploadEnabled: false };
|
|
};
|
|
|
|
return {
|
|
query: query || defaultQuery,
|
|
retrieve: retrieve || defaultRetrieve,
|
|
reject: reject || defaultReject,
|
|
store: store || defaultStore,
|
|
initialize,
|
|
deleteStudyMetadataPromise,
|
|
getImageIdsForDisplaySet,
|
|
getImageIdsForInstance,
|
|
getConfig: getConfig || defaultGetConfig,
|
|
getStudyInstanceUIDs: getStudyInstanceUIDs,
|
|
};
|
|
}
|
|
|
|
const IWebApiDataSource = {
|
|
create,
|
|
};
|
|
|
|
export default IWebApiDataSource;
|