2017-12-11 21:44:46 -08:00
|
|
|
import { assert } from '@ember/debug';
|
2017-09-27 09:33:20 -07:00
|
|
|
import { createInitialComplianceInfo } from 'wherehows-web/utils/datasets/compliance-policy';
|
2017-08-24 00:23:48 -07:00
|
|
|
import { datasetUrlById } from 'wherehows-web/utils/api/datasets/shared';
|
|
|
|
import { ApiStatus } from 'wherehows-web/utils/api/shared';
|
2017-12-11 21:44:46 -08:00
|
|
|
import {
|
|
|
|
IComplianceGetResponse,
|
|
|
|
IComplianceInfo,
|
|
|
|
IComplianceSuggestion,
|
|
|
|
IComplianceSuggestionResponse
|
|
|
|
} from 'wherehows-web/typings/api/datasets/compliance';
|
|
|
|
import { getJSON } from 'wherehows-web/utils/api/fetcher';
|
2017-08-15 23:16:38 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs the dataset compliance url
|
|
|
|
* @param {number} id the id of the dataset
|
|
|
|
* @return {string} the dataset compliance url
|
|
|
|
*/
|
|
|
|
const datasetComplianceUrlById = (id: number): string => `${datasetUrlById(id)}/compliance`;
|
|
|
|
|
2017-08-16 13:28:13 -07:00
|
|
|
/**
|
|
|
|
* Constructs the compliance suggestions url based of the compliance id
|
|
|
|
* @param {number} id the id of the dataset
|
|
|
|
* @return {string} compliance suggestions url
|
|
|
|
*/
|
|
|
|
const datasetComplianceSuggestionsUrlById = (id: number): string => `${datasetComplianceUrlById(id)}/suggestions`;
|
|
|
|
|
2017-12-11 21:44:46 -08:00
|
|
|
/**
|
|
|
|
* Determines if the client app should 'new' a compliance policy
|
|
|
|
* If the endpoint responds with a failed status, and the msg contains the indicator that a compliance does not exist
|
|
|
|
* @param {IComplianceGetResponse} { status, msg }
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
const requiresCompliancePolicyCreation = ({ status, msg }: IComplianceGetResponse): boolean => {
|
|
|
|
const notFound = 'No entity found for query';
|
|
|
|
return status === ApiStatus.FAILED && String(msg).includes(notFound);
|
|
|
|
};
|
|
|
|
|
2017-08-15 23:16:38 -07:00
|
|
|
/**
|
|
|
|
* Fetches the current compliance policy for a dataset with thi given id
|
|
|
|
* @param {number} id the id of the dataset
|
2017-12-11 21:44:46 -08:00
|
|
|
* @returns {(Promise<{ isNewComplianceInfo: boolean; complianceInfo: IComplianceInfo }>)}
|
2017-08-15 23:16:38 -07:00
|
|
|
*/
|
2017-12-11 21:44:46 -08:00
|
|
|
const readDatasetCompliance = async (
|
|
|
|
id: number
|
|
|
|
): Promise<{ isNewComplianceInfo: boolean; complianceInfo: IComplianceInfo }> => {
|
2017-08-15 23:16:38 -07:00
|
|
|
assert(`Expected id to be a number but received ${typeof id}`, typeof id === 'number');
|
2017-12-11 21:44:46 -08:00
|
|
|
|
|
|
|
const response = await getJSON<IComplianceGetResponse>({ url: datasetComplianceUrlById(id) });
|
|
|
|
const isNewComplianceInfo = requiresCompliancePolicyCreation(response);
|
|
|
|
let { msg, status, complianceInfo } = response;
|
2017-08-15 23:16:38 -07:00
|
|
|
|
|
|
|
if (isNewComplianceInfo) {
|
|
|
|
complianceInfo = createInitialComplianceInfo(id);
|
|
|
|
}
|
|
|
|
|
2017-12-11 21:44:46 -08:00
|
|
|
if ((status === ApiStatus.OK || isNewComplianceInfo) && complianceInfo) {
|
|
|
|
return { isNewComplianceInfo, complianceInfo };
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error(msg);
|
2017-08-15 23:16:38 -07:00
|
|
|
};
|
|
|
|
|
2017-08-16 13:28:13 -07:00
|
|
|
/**
|
|
|
|
* Requests the compliance suggestions for a given dataset Id and returns the suggestion list
|
|
|
|
* @param {number} id the id of the dataset
|
2017-10-16 11:35:13 -07:00
|
|
|
* @return {Promise<IComplianceSuggestion>}
|
2017-08-16 13:28:13 -07:00
|
|
|
*/
|
2017-10-16 11:35:13 -07:00
|
|
|
const readDatasetComplianceSuggestion = async (id: number): Promise<IComplianceSuggestion> => {
|
2017-12-11 21:44:46 -08:00
|
|
|
const { complianceSuggestion = <IComplianceSuggestion>{} } = await getJSON<IComplianceSuggestionResponse>({
|
|
|
|
url: datasetComplianceSuggestionsUrlById(id)
|
|
|
|
});
|
|
|
|
|
2017-10-16 11:35:13 -07:00
|
|
|
return complianceSuggestion;
|
2017-08-16 13:28:13 -07:00
|
|
|
};
|
|
|
|
|
2017-10-16 11:35:13 -07:00
|
|
|
export { readDatasetCompliance, readDatasetComplianceSuggestion, datasetComplianceUrlById };
|