Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing dataset references #3873

Merged
merged 4 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The types of changes are:

### Fixed
- Fix datamap zoom for low system counts [#3835](https://github.com/ethyca/fides/pull/3835)
- Fixed connector forms with external dataset reference fields [#3873](https://github.com/ethyca/fides/pull/3873)

### Added

Expand Down
3 changes: 2 additions & 1 deletion clients/admin-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"test:ci": "jest"
},
"dependencies": {
"@chakra-ui/icons": "1.1.7",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fidesui/components": "^0.7.1",
Expand All @@ -35,7 +36,6 @@
"@monaco-editor/react": "^4.4.6",
"@reduxjs/toolkit": "^1.9.3",
"chakra-react-select": "^3.3.7",
"@chakra-ui/icons": "1.1.7",
"csv-stringify": "^6.3.0",
"cytoscape": "^3.23.0",
"cytoscape-klay": "^3.1.4",
Expand All @@ -46,6 +46,7 @@
"i18n-iso-countries": "^7.5.0",
"immer": "^9.0.21",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lodash.snakecase": "^4.1.1",
"msw": "^1.2.1",
"narrow-minded": "^1.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import {
import { useLazyGetDatastoreConnectionStatusQuery } from "datastore-connections/datastore-connection.slice";
import DSRCustomizationModal from "datastore-connections/system_portal_config/forms/DSRCustomizationForm/DSRCustomizationModal";
import { Field, FieldInputProps, Form, Formik, FormikProps } from "formik";
import _ from "lodash";
import React from "react";
import { DatastoreConnectionStatus } from "src/features/datastore-connections/types";

Expand Down Expand Up @@ -232,33 +233,62 @@ const ConnectorParametersForm: React.FC<ConnectorParametersFormProps> = ({
connectionConfig.connection_type === ConnectionType.SAAS
? (connectionConfig.saas_config?.fides_key as string)
: connectionConfig.key;

// @ts-ignore
initialValues.secrets = connectionConfig.secrets;
initialValues.secrets = { ...connectionConfig.secrets };

// check if we need we need to pre-process any secrets values
// we currently only need to do this for Fides dataset references
// to convert them from objects to dot-delimited strings
if (secretsSchema?.properties) {
Object.entries(secretsSchema.properties).forEach(([key, schema]) => {
if (schema.allOf?.[0].$ref === FIDES_DATASET_REFERENCE) {
const datasetReference = initialValues.secrets[key];
initialValues.secrets[
key
] = `${datasetReference.dataset}.${datasetReference.field}`;
}
});
}

return initialValues;
}
return fillInDefaults(initialValues, secretsSchema);
};

const handleSubmit = (values: any, actions: any) => {
// convert each property value of type FidesopsDatasetReference
// from a dot delimited string to a FidesopsDatasetReference
const updatedValues = { ...values };
/**
* Preprocesses the input values.
* Currently, it is only used to convert FIDES_DATASET_REFERENCE fields.
* @param values ConnectionConfigFormValues - The original values.
* @returns ConnectionConfigFormValues - The processed values.
*/
const preprocessValues = (
values: ConnectionConfigFormValues
): ConnectionConfigFormValues => {
const updatedValues = _.cloneDeep(values);
if (secretsSchema) {
Object.keys(secretsSchema.properties).forEach((key) => {
if (
secretsSchema.properties[key].allOf?.[0].$ref ===
FIDES_DATASET_REFERENCE
) {
const referencePath = values[key].split(".");
updatedValues[key] = {
const referencePath = updatedValues.secrets[key].split(".");
updatedValues.secrets[key] = {
dataset: referencePath.shift(),
field: referencePath.join("."),
direction: "from",
};
}
});
}
onSaveClick(updatedValues, actions);
return updatedValues;
};

const handleSubmit = (values: any, actions: any) => {
// convert each property value of type FidesopsDatasetReference
// from a dot delimited string to a FidesopsDatasetReference
const processedValues = preprocessValues(values);
onSaveClick(processedValues, actions);
};

const handleTestConnectionClick = async () => {
Expand Down
1 change: 1 addition & 0 deletions clients/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/fides/api/api/v1/endpoints/system.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Dict, List, Optional

from fastapi import Depends, Response, Security, HTTPException
from fastapi import Depends, HTTPException, Response, Security
from fastapi_pagination import Page, Params
from fastapi_pagination.bases import AbstractPage
from fastapi_pagination.ext.sqlalchemy import paginate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ def mask_sensitive_fields(
if connection_secrets is None:
return connection_secrets

# The function `mask_sensitive_fields` is called recursively. The recursion can be stopped
# if no properties are found at the current level, indicating that the current value is a dictionary.
# Since individual fields within the dictionary do not need to be masked,
# the function can return early in this case.
if not secret_schema.get("properties"):
galvana marked this conversation as resolved.
Show resolved Hide resolved
return connection_secrets

connection_secret_keys = connection_secrets.keys()
secret_schema_keys = secret_schema["properties"].keys()
new_connection_secrets = {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import pytest

from fides.api.schemas.connection_configuration.connection_config import (
mask_sensitive_fields,
)

import pytest


class TestMaskSenstiveValues:
@pytest.fixture(scope="function")
Expand All @@ -30,6 +30,68 @@ def secret_schema(self):
"type": "object",
}

@pytest.fixture(scope="function")
def secret_schema_with_dataset_references(self):
return {
"title": "doordash_schema",
"description": "Doordash secrets schema",
"type": "object",
"properties": {
"domain": {
"title": "Domain",
"default": "openapi.doordash.com",
"sensitive": False,
"type": "string",
},
"developer_id": {
"title": "Developer ID",
"sensitive": False,
"type": "string",
},
"key_id": {"title": "Key ID", "sensitive": False, "type": "string"},
"signing_secret": {
"title": "Signing Secret",
"sensitive": True,
"type": "string",
},
"doordash_delivery_id": {
"title": "Doordash Delivery ID",
"external_reference": True,
"allOf": [{"$ref": "#/definitions/FidesDatasetReference"}],
},
},
"required": [
"developer_id",
"key_id",
"signing_secret",
"doordash_delivery_id",
],
"additionalProperties": False,
"definitions": {
"EdgeDirection": {
"title": "EdgeDirection",
"description": "Direction of a FidesDataSetReference",
"enum": ["from", "to"],
"type": "string",
},
"FidesDatasetReference": {
"title": "FidesDatasetReference",
"description": "Reference to a field from another Collection",
"type": "object",
"properties": {
"dataset": {
"title": "Dataset",
"pattern": "^[a-zA-Z0-9_.<>-]+$",
"type": "string",
},
"field": {"title": "Field", "type": "string"},
"direction": {"$ref": "#/definitions/EdgeDirection"},
},
"required": ["dataset", "field"],
},
},
}

@pytest.fixture(scope="function")
def connection_secrets(self):
return {
Expand All @@ -46,6 +108,33 @@ def test_mask_sensitive_fields(self, secret_schema, connection_secrets):
"domain": "api.aircall.io",
}

def test_mask_dataset_reference_fields(self, secret_schema_with_dataset_references):
masked_secrets = mask_sensitive_fields(
{
"domain": "openapi.doordash.com",
"developer_id": "123",
"key_id": "123",
"signing_secret": "123",
"doordash_delivery_id": {
"dataset": "shop",
"field": "customer.id",
"direction": "from",
},
},
secret_schema_with_dataset_references,
)
assert masked_secrets == {
"domain": "openapi.doordash.com",
"developer_id": "123",
"key_id": "123",
"signing_secret": "**********",
"doordash_delivery_id": {
"dataset": "shop",
"field": "customer.id",
"direction": "from",
},
}

def test_mask_sensitive_fields_remove_non_schema_values(
self, connection_secrets, secret_schema
):
Expand Down