Skip to content

Commit

Permalink
Allow dollar in layer name (#8241)
Browse files Browse the repository at this point in the history
* allow dollar in layer and dataset name

* only allow $ layer names, not dataset names

* add changelog entry

* allow $ in annotation layer names

* add schema version reversion to db reversion & rename var

* fix dataset setting form validation errors

* set timeout fixing form validation error to 0 ms

---------

Co-authored-by: Michael Büßemeyer <[email protected]>
  • Loading branch information
MichaelBuessemeyer and Michael Büßemeyer authored Dec 10, 2024
1 parent 5dc711d commit f909097
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 17 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released

### Changed
- Renamed "resolution" to "magnification" in more places within the codebase, including local variables. [#8168](https://github.com/scalableminds/webknossos/pull/8168)
- Layer names are now allowed to contain `$` as special characters. [#8241](https://github.com/scalableminds/webknossos/pull/8241)
- Datasets can now be renamed and can have duplicate names. [#8075](https://github.com/scalableminds/webknossos/pull/8075)
- Improved the default colors for skeleton trees. [#8228](https://github.com/scalableminds/webknossos/pull/8228)
- Allowed to train an AI model using differently sized bounding boxes. We recommend all bounding boxes to have equal dimensions or to have dimensions which are multiples of the smallest bounding box. [#8222](https://github.com/scalableminds/webknossos/pull/8222)
Expand Down
11 changes: 11 additions & 0 deletions conf/evolutions/125-allow-dollar-in-layer-names.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
START TRANSACTION;

do $$ begin ASSERT (select schemaVersion from webknossos.releaseInformation) = 124, 'Previous schema version mismatch'; end; $$ LANGUAGE plpgsql;


ALTER TABLE webknossos.annotation_layers DROP CONSTRAINT IF EXISTS annotation_layers_name_check;
ALTER TABLE webknossos.annotation_layers ADD CONSTRAINT annotation_layers_name_check CHECK (name ~* '^[A-Za-z0-9\-_\.\$]+$');

UPDATE webknossos.releaseInformation SET schemaVersion = 125;

COMMIT TRANSACTION;
13 changes: 13 additions & 0 deletions conf/evolutions/reversions/125-allow-dollar-in-layer-names.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
START TRANSACTION;

-- This reversion might take a while because it needs to search in all annotation layer names for '$' and replace it with ''
do $$ begin ASSERT (select schemaVersion from webknossos.releaseInformation) = 125, 'Previous schema version mismatch'; end; $$ LANGUAGE plpgsql;

UPDATE webknossos.annotation_layers SET name = regexp_replace(name, '\$', '', 'g') WHERE name ~* '\$';

ALTER TABLE webknossos.annotation_layers DROP CONSTRAINT IF EXISTS annotation_layers_name_check;
ALTER TABLE webknossos.annotation_layers ADD CONSTRAINT annotation_layers_name_check CHECK (name ~* '^[A-Za-z0-9\-_\.]+$');

UPDATE webknossos.releaseInformation SET schemaVersion = 124;

COMMIT TRANSACTION;
19 changes: 13 additions & 6 deletions frontend/javascripts/admin/dataset/dataset_components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,10 @@ export function CardContainer({
);
}
}
export const layerNameRules = [
const sharedRules = [
{
min: 1,
},
// Note that these rules are also checked by the backend
{
pattern: /^[0-9a-zA-Z_.-]+$/,
message: "Only letters, digits and the following characters are allowed: . _ -",
},
{
validator: syncValidator(
(value: string | null) => !value || !value.startsWith("."),
Expand All @@ -52,13 +47,25 @@ export const layerNameRules = [
},
];

export const layerNameRules = [
...sharedRules,
{
pattern: /^[0-9a-zA-Z_.\-$.]+$/,
message: "Only letters, digits and the following characters are allowed: . _ - $",
},
];

export const getDatasetNameRules = (activeUser: APIUser | null | undefined) => [
{
required: true,
message: messages["dataset.import.required.name"],
},
{ min: 3, message: messages["dataset.name_length"] },
...layerNameRules,
{
pattern: /^[0-9a-zA-Z_.-]+$/,
message: "Only letters, digits and the following characters are allowed: . _ -",
},
{
validator: async () => {
if (!activeUser) throw new Error("Can't do operation if no user is logged in.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,9 @@ function SimpleLayerForm({
{
validator: syncValidator(
(value: string) =>
dataLayers.filter((someLayer: APIDataLayer) => someLayer.name === value)
.length <= 1,
form
.getFieldValue(["dataSource", "dataLayers"])
.filter((someLayer: APIDataLayer) => someLayer.name === value).length <= 1,
"Layer names must be unique.",
),
},
Expand Down
16 changes: 11 additions & 5 deletions frontend/javascripts/dashboard/dataset/dataset_settings_view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -339,12 +339,18 @@ class DatasetSettingsView extends React.PureComponent<PropsWithFormAndRouter, St
this.state.activeDataSourceEditMode === "simple" ? "advanced" : "simple",
);

const afterForceUpdateCallback = () =>
const afterForceUpdateCallback = () => {
// Trigger validation manually, because fields may have been updated
form
.validateFields()
.then((formValues) => this.submit(formValues))
.catch((errorInfo) => this.handleValidationFailed(errorInfo));
// and defer the validation as it is done asynchronously by antd or so.
setTimeout(
() =>
form
.validateFields()
.then((formValues) => this.submit(formValues))
.catch((errorInfo) => this.handleValidationFailed(errorInfo)),
0,
);
};

// Need to force update of the SimpleAdvancedDataForm as removing a layer in the advanced tab does not update
// the form items in the simple tab (only the values are updated). The form items automatically update once
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export function checkLayerNameForInvalidCharacters(readableLayerName: string): V
message: messages["tracing.volume_layer_name_starts_with_dot"],
};
}
const uriSafeCharactersRegex = /[0-9a-zA-Z-._]+/g;
const validLayerNameCharactersRegex = /[0-9a-zA-Z-._$]+/g;
// Removing all URISaveCharacters from readableLayerName. The leftover chars are all invalid.
const allInvalidChars = readableLayerName.replace(uriSafeCharactersRegex, "");
const allInvalidChars = readableLayerName.replace(validLayerNameCharactersRegex, "");
const allUniqueInvalidCharsAsSet = new Set(allInvalidChars);
const allUniqueInvalidCharsAsString = "".concat(...allUniqueInvalidCharsAsSet.values());
const isValid = allUniqueInvalidCharsAsString.length === 0;
Expand Down
4 changes: 2 additions & 2 deletions tools/postgres/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE TABLE webknossos.releaseInformation (
schemaVersion BIGINT NOT NULL
);

INSERT INTO webknossos.releaseInformation(schemaVersion) values(124);
INSERT INTO webknossos.releaseInformation(schemaVersion) values(125);
COMMIT TRANSACTION;


Expand Down Expand Up @@ -56,7 +56,7 @@ CREATE TABLE webknossos.annotation_layers(
_annotation CHAR(24) NOT NULL,
tracingId CHAR(36) NOT NULL UNIQUE,
typ webknossos.ANNOTATION_LAYER_TYPE NOT NULL,
name VARCHAR(256) NOT NULL CHECK (name ~* '^[A-Za-z0-9\-_\.]+$'),
name VARCHAR(256) NOT NULL CHECK (name ~* '^[A-Za-z0-9\-_\.\$]+$'),
statistics JSONB NOT NULL,
UNIQUE (name, _annotation),
PRIMARY KEY (_annotation, tracingId),
Expand Down

0 comments on commit f909097

Please sign in to comment.