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

Allow dollar in layer name #8241

Merged
merged 12 commits into from
Dec 10, 2024
Merged

Conversation

MichaelBuessemeyer
Copy link
Contributor

@MichaelBuessemeyer MichaelBuessemeyer commented Nov 27, 2024

URL of deployed dev instance (used for testing):

Steps to test:

  • Open the dataset settings of any DS
  • change one layer & the dataset name to include a $. Submitting should work (but likely running the DS in case a layer is renamed)
  • Renaming a layer can be done via the advanced tab

TODOs:

  • also allow $ in checkLayerNameForInvalidCharacters
  • disallow $ for datasetNames
  • test migration & reversion

Issues:


(Please delete unneeded items, merge only when none are left open)

Copy link
Contributor

coderabbitai bot commented Nov 27, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

The changes involve updates to the validation rules for dataset names in the layerNameRules array within the dataset_components.tsx file. A new constant sharedRules has been introduced to consolidate common validation criteria. The regex pattern has been modified to include the dollar sign ($) as an acceptable character, and the corresponding error message has been updated. The getDatasetNameRules function now accommodates both the new and previous regex patterns. Additionally, various components and scripts have been updated to reflect these changes, enhancing overall validation logic and schema integrity.

Changes

File Path Change Summary
frontend/javascripts/admin/dataset/dataset_components.tsx Introduced sharedRules, updated layerNameRules regex to include $, and modified the error message.
CHANGELOG.unreleased.md Updated to reflect new functionalities, changes in terminology, and various bug fixes.
conf/evolutions/125-allow-dollar-in-layer-names.sql Modified annotation_layers table to allow $ in layer names by updating the check constraint.
conf/evolutions/reversions/125-allow-dollar-in-layer-names.sql Reverted changes allowing $ in layer names by updating the check constraint.
frontend/javascripts/oxalis/view/left-border-tabs/modals/add_volume_layer_modal.tsx Updated regex in checkLayerNameForInvalidCharacters to allow $ in layer names.
tools/postgres/schema.sql Updated schema to allow $ in annotation_layers and created several new tables and views.
frontend/javascripts/dashboard/dataset/dataset_settings_data_tab.tsx Enhanced layer name validation logic to check against the current form data.
frontend/javascripts/dashboard/dataset/dataset_settings_view.tsx Updated validation handling to improve user experience during dataset settings updates.

Assessment against linked issues

Objective Addressed Explanation
Ensure the first submission of dataset settings succeeds (8172)
Improve validation logic for dataset names (8172)

Possibly related PRs

Suggested labels

bug

Poem

🐇 In the land of code where bunnies play,
A dollar sign joins the dataset fray.
With rules now kinder, names can shine,
Validity dances, all is fine!
Hops of joy in the code we see,
Celebrate changes, oh so free! 🌟


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 6e41c81 and 215d683.

📒 Files selected for processing (1)
  • CHANGELOG.unreleased.md (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • CHANGELOG.unreleased.md

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@fm3
Copy link
Member

fm3 commented Nov 27, 2024

Can we allow it for layers but not for datasets?

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
frontend/javascripts/admin/dataset/dataset_components.tsx (1)

44-44: Consider using a named constant for the validation pattern

Since this pattern is used in multiple places (layer names and dataset names) and needs to stay in sync with backend validation, consider extracting it into a named constant.

+const VALID_NAME_PATTERN = /^[0-9a-zA-Z_.\-$.]+$/;
+const VALID_NAME_MESSAGE = "Only letters, digits and the following characters are allowed: . _ - $";

 export const layerNameRules = [
   {
     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: . _ - $",
+    pattern: VALID_NAME_PATTERN,
+    message: VALID_NAME_MESSAGE,
   },
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 6c0a472 and 6b01e09.

📒 Files selected for processing (1)
  • frontend/javascripts/admin/dataset/dataset_components.tsx (1 hunks)
🔇 Additional comments (2)
frontend/javascripts/admin/dataset/dataset_components.tsx (2)

44-45: LGTM with verification needed!

The changes correctly implement the dollar sign support in the validation regex and update the corresponding error message. However, since the comment indicates these rules are also checked by the backend, we should verify the backend validation alignment.

Let's verify the backend validation rules:


44-45: Verify UI components handling layer/dataset names

Since this change affects both layer and dataset name validation, we should verify that all UI components properly handle and display names containing dollar signs.

✅ Verification successful

Based on the search results, I can now generate a final response since we have enough information about how layer/dataset names are handled in the UI components:

UI components properly handle special characters in names

The validation pattern change for allowing dollar signs ($) in layer/dataset names is safe to implement. The codebase shows that:

  • Names are rendered directly in UI components without any special escaping/formatting that would break with dollar signs
  • Name validation is only enforced at the input level in dataset_components.tsx
  • No hardcoded assumptions about valid name characters were found in display/rendering logic
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Look for components that handle layer or dataset names

# Find components that might display or manipulate layer/dataset names
rg -t typescript -t tsx "layer.*name|dataset.*name" --glob "!*test*" -l

# Look for string escaping or formatting of names
rg -t typescript -t tsx "toString|format.*name|display.*name" --glob "!*test*"

# Check for any hardcoded assumptions about valid characters
rg -t typescript -t tsx "[a-zA-Z0-9_\.-]+" --glob "!*test*"

Length of output: 321


Script:

#!/bin/bash
# Look for components that handle layer or dataset names using ripgrep
# Note: Using just 'rg' without typescript/tsx file type flags

# Find components that might display or manipulate layer/dataset names
rg "layer.*name|dataset.*name" --glob "*.ts*" --glob "!*test*" -l

# Look for string escaping or formatting of names
rg "toString|format.*name|display.*name" --glob "*.ts*" --glob "!*test*"

# Check for any hardcoded assumptions about valid characters in validation patterns
rg "[a-zA-Z0-9_\\.-]+" --glob "*.ts*" --glob "!*test*"

# Additionally, let's check for any UI components that might be rendering these names
rg "<.*?(layer|dataset).*?name.*?>" --glob "*.tsx" --glob "!*test*" -A 2

Length of output: 146673


Script:

#!/bin/bash
# Let's search more specifically for UI components that render layer/dataset names
# and check for any string formatting or display logic

# Look for components that render names in JSX
rg -l "name=|name:|name =" --glob "*.tsx" --glob "!*test*"

# Look for name-related props and types
rg "name: string|name\?: string|name: \{|name\?: \{" --glob "*.ts*" --glob "!*test*"

# Look for specific name validation or formatting functions
rg "validate.*name|format.*name|display.*name" --glob "*.ts*" --glob "!*test*"

# Look for any dollar sign related validation or escaping
rg "\$|\\$" --glob "*.ts*" --glob "!*test*" -A 1

Length of output: 164537

@MichaelBuessemeyer MichaelBuessemeyer changed the title Allow dollar in layer and dataset name Allow dollar in layer name Dec 2, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 69d9d79 and 6ae0c67.

📒 Files selected for processing (1)
  • CHANGELOG.unreleased.md (1 hunks)

@@ -17,6 +17,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)
- Reading image files on datastore filesystem is now done asynchronously. [#8126](https://github.com/scalableminds/webknossos/pull/8126)
- Layer names are now allowed to contain `$` as special characters. [#8241](https://github.com/scalableminds/webknossos/pull/8241)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Make the changelog entry more precise.

The current entry could be misinterpreted to suggest that $ is allowed in all names. Consider revising it to explicitly state the distinction between layer names and dataset names.

-Layer names are now allowed to contain `$` as special characters. [#8241](https://github.com/scalableminds/webknossos/pull/8241)
+Layer names (but not dataset names) are now allowed to contain the `$` character. [#8241](https://github.com/scalableminds/webknossos/pull/8241)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Layer names are now allowed to contain `$` as special characters. [#8241](https://github.com/scalableminds/webknossos/pull/8241)
- Layer names (but not dataset names) are now allowed to contain the `$` character. [#8241](https://github.com/scalableminds/webknossos/pull/8241)

Copy link
Member

@daniel-wer daniel-wer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The functionality you describe works as intended, but I noticed two things during testing:

  • When trying to rename a volume tracing layer from within an annotation, $ is still not allowed (This layer name includes the disallowed character "$". Please remove it to set the layer name.)
  • When changing the layer name in the advanced datasource settings, the first click always triggers a warning toast, indicating that one of the fields is not valid (Please check that all form fields are valid.), but no field is highlighted. This happens regardless of whether a $ character is included or not and only on the first submission. Clicking submit a second time succeeds. I briefly tried to debug this, but didn't find the cause. This issue probably existed before, so can also be solved in a separate PR.

@MichaelBuessemeyer
Copy link
Contributor Author

Thanks for the review @daniel-wer 🙏

When changing the layer name in the advanced datasource settings, the first click always triggers a warning toast, indicating that one of the fields is not valid (Please check that all form fields are valid.), but no field is highlighted. This happens regardless of whether a $ character is included or not and only on the first submission. Clicking submit a second time succeeds. I briefly tried to debug this, but didn't find the cause. This issue probably existed before, so can also be solved in a separate PR.

Is a known bug in the frontend code: See: #8172

When trying to rename a volume tracing layer from within an annotation, $ is still not allowed (This layer name includes the disallowed character "$". Please remove it to set the layer name.)

Yeah, the frontend resticts this. While trying to add $ as an allowed character I stumbled upon the variable which is the regex enforcing which characters are allowed for annotation layer names in the frontend. The regex is called uriSafeCharactersRegex in add_volume_layer_modal.tsx. This makes me think that maybe allowing unsave characters might lead to some problems with links or so. Do you maybe know more about this daniel or @fm3? You (@fm3) are the last person changing the regex in this PR: https://github.com/scalableminds/webknossos/pull/6326/files#diff-51a391c68ba6e4cf8ca5ba79e13d87714d938a303418e9ec9d325d4c202858ac. In the PR & linked issue I cannot find, why the late name needs to be URL save. Usually special characters should be URL encodable, shouldn't they?

Moreover, just adjusting the fronend is not enough. The backend also has a check in place in the DB. Therefore, a migration would also be necessary here 🥴 (quite the amount of work for such a small change)

@fm3
Copy link
Member

fm3 commented Dec 4, 2024

Both dataset and annotation layer names are used in the URIs for zarr streaming. This should be tested with $ in the name. If it works, then allowing the dollar in frontend and backend should be fine.

quite the amount of work for such a small change

Maybe it can be done in two steps? First the chanage for dataset layers as implemented here, and then as a follow-up also for annotation layer names?

As I understand it, the current use case is about color layers only (predictions from voxelytics), so no volume annotation layers with these layers fallback segmentations should be created for the moment. This should probably also be tested in the second stage then.

@MichaelBuessemeyer
Copy link
Contributor Author

Maybe it can be done in two steps? First the chanage for dataset layers as implemented here, and then as a follow-up also for annotation layer names?

Just doing one pr is fine for me. It's was just a little unexpected to me that this small change requires a migration.

Thanks for the hint, I'll do the zarr streaming testing :D

@MichaelBuessemeyer
Copy link
Contributor Author

If it works, then allowing the dollar in frontend and backend should be fine.

Works with color layer, segmentation layer, volume layer with fallback layer, and without fallback layer. All with $ in their names. => Should be ok

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (3)
conf/evolutions/reversions/125-allow-dollar-in-layer-names.sql (1)

6-6: Consider batching the update operation

The current update might impact performance on large tables. Consider batching the operation for better performance and reduced lock time.

DO $$
DECLARE
  batch_size INTEGER := 1000;
  affected_rows INTEGER;
BEGIN
  LOOP
    UPDATE webknossos.annotation_layers 
    SET name = regexp_replace(name, '\$', '', 'g')
    WHERE name ~* '\$'
    LIMIT batch_size;
    
    GET DIAGNOSTICS affected_rows = ROW_COUNT;
    EXIT WHEN affected_rows = 0;
    
    COMMIT;
  END LOOP;
END $$;
frontend/javascripts/oxalis/view/left-border-tabs/modals/add_volume_layer_modal.tsx (2)

51-51: Update variable name and add documentation about URI safety

The variable name uriSafeCharactersRegex might be misleading since $ is not typically considered URI-safe. Consider documenting the implications or renaming the variable.

- const uriSafeCharactersRegex = /[0-9a-zA-Z-._$]+/g;
+ // Note: The $ character is allowed in layer names but requires proper URI encoding in URLs
+ const allowedLayerCharactersRegex = /[0-9a-zA-Z-._$]+/g;

Line range hint 51-63: Update error messages to reflect allowed characters

The error messages should be updated to accurately reflect that the $ character is now allowed in layer names.

Consider updating the relevant message in your messages file:

"tracing.volume_layer_name_includes_invalid_characters": 
  (chars: string) => `Layer name contains invalid characters: ${chars}. Only alphanumeric characters, hyphens, dots, underscores, and $ are allowed.`
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between ae84230 and 3fd9ef6.

📒 Files selected for processing (5)
  • CHANGELOG.unreleased.md (1 hunks)
  • conf/evolutions/125-allow-dollar-in-layer-names.sql (1 hunks)
  • conf/evolutions/reversions/125-allow-dollar-in-layer-names.sql (1 hunks)
  • frontend/javascripts/oxalis/view/left-border-tabs/modals/add_volume_layer_modal.tsx (1 hunks)
  • tools/postgres/schema.sql (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • CHANGELOG.unreleased.md
🔇 Additional comments (4)
conf/evolutions/125-allow-dollar-in-layer-names.sql (1)

6-7: Consider validating existing data before constraint change

While the new constraint correctly allows the $ character, it would be safer to first verify that no existing layer names contain other invalid characters that might violate the new constraint.

Consider adding a data validation step before the constraint change:

DO $$ 
BEGIN 
  IF EXISTS (
    SELECT name FROM webknossos.annotation_layers 
    WHERE name !~* '^[A-Za-z0-9\-_\.\$]+$'
  ) THEN
    RAISE EXCEPTION 'Found layer names that would violate the new constraint';
  END IF;
END $$;
frontend/javascripts/oxalis/view/left-border-tabs/modals/add_volume_layer_modal.tsx (1)

Line range hint 51-63: Verify URI handling in the application

Since we're allowing $ in layer names, we need to ensure proper URI encoding/decoding throughout the application.

✅ Verification successful

Let me gather more information about how layer names are used in URLs and API endpoints.


Based on the gathered information, I can now provide the final response:

The $ character in layer names is properly handled throughout the application

The codebase shows robust URI handling:

  • URL Manager (url_manager.ts) explicitly handles URI encoding/decoding with documented character sets
  • Layer names in URLs are used safely in API endpoints with proper encoding
  • There's a database-level constraint ensuring URL-safe layer names
  • The validation regex /[0-9a-zA-Z-._$]+/ aligns with the application's URL handling capabilities
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for URI encoding/decoding handling in the codebase
# Expected: Find relevant URI handling code to verify proper encoding

echo "Checking for URI encoding/decoding usage..."
rg -A 2 "encodeURI(Component)?" 

echo "Checking for URL construction with layer names..."
ast-grep --pattern 'url = $_ + $layer.name + $_'

Length of output: 2676


Script:

#!/bin/bash
# Check how layer names are used in URLs and API endpoints
echo "Checking for layer name usage in URLs and API endpoints..."
rg -A 3 "layer.*name.*url|url.*layer.*name"

echo "Checking volume layer related API endpoints..."
rg -A 3 "volume.*layer.*api|api.*volume.*layer"

echo "Checking for layer name validation patterns..."
rg -A 3 "layer.*name.*valid|valid.*layer.*name"

Length of output: 10021

tools/postgres/schema.sql (2)

23-23: LGTM: Schema version increment is appropriate.

The schema version bump from 124 to 125 aligns with the database changes for allowing dollar signs in layer names.


59-59: LGTM: Layer name constraint correctly allows dollar signs.

The CHECK constraint's regex pattern has been updated to allow dollar signs ($) in layer names while maintaining other character restrictions. This implements the requirement at the database level.

Let's verify that dataset names still prohibit dollar signs:

✅ Verification successful

Dataset name constraints do not allow dollar signs, maintaining security.

Based on the search results, I can confirm that dataset names have different constraints than layer names. Looking at the schema in tools/postgres/schema.sql, datasets are created in the webknossos.datasets table, and the name constraints for datasets are defined in webknossos.dataStores table which explicitly shows:

name VARCHAR(256) PRIMARY KEY NOT NULL CHECK (name ~* '^[A-Za-z0-9\-_\.]+$')

This pattern does not include the $ character, confirming that dataset names still prohibit dollar signs while only layer names allow them.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify dataset name constraints still prohibit dollar signs

# Test: Search for dataset table constraints. Expect: No $ in the name constraint pattern
rg -A 5 'datasets.*name.*CHECK'

Length of output: 33


Script:

#!/bin/bash
# Let's try a broader search for dataset table definition and constraints
rg -i "create table.*datasets?" -A 10

Length of output: 13164


Script:

#!/bin/bash
# Alternative search looking for name constraints in schema.sql
cat tools/postgres/schema.sql | grep -A 5 "datasets.*name"

Length of output: 60


Script:

#!/bin/bash
# Search for any name constraints in schema.sql
cat tools/postgres/schema.sql | grep -A 2 "name.*CHECK"

Length of output: 1333

Copy link
Member

@daniel-wer daniel-wer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Frontend code LGTM

@@ -48,7 +48,7 @@ export function checkLayerNameForInvalidCharacters(readableLayerName: string): V
message: messages["tracing.volume_layer_name_starts_with_dot"],
};
}
const uriSafeCharactersRegex = /[0-9a-zA-Z-._]+/g;
const uriSafeCharactersRegex = /[0-9a-zA-Z-._$]+/g;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I remember correctly you found that these characters don't necessarily have to be url safe, right? If so, maybe rename to validLayerNameCharactersRegex or so instead.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
frontend/javascripts/dashboard/dataset/dataset_settings_view.tsx (1)

342-353: Consider using a longer timeout for validation deferral.

The setTimeout implementation correctly defers the validation to handle antd's asynchronous validation. However, a 1ms timeout might be too short on slower devices.

-        1,
+        50,
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 6149a05 and 6f58f26.

📒 Files selected for processing (2)
  • frontend/javascripts/dashboard/dataset/dataset_settings_data_tab.tsx (1 hunks)
  • frontend/javascripts/dashboard/dataset/dataset_settings_view.tsx (1 hunks)
🔇 Additional comments (2)
frontend/javascripts/dashboard/dataset/dataset_settings_data_tab.tsx (2)

401-403: LGTM! Improved layer name validation.

The validation now correctly uses form.getFieldValue to check layer name uniqueness against the current form state, which is more reliable than direct array filtering.


401-403: Verify the distinction between layer and dataset name validation.

The PR objective states that dollar signs should be allowed in layer names but disallowed in dataset names. Let's verify this implementation.

✅ Verification successful

Distinction between layer and dataset name validation is correctly implemented

The verification shows that the distinction is properly implemented:

  • Layer names allow dollar signs: /^[0-9a-zA-Z_.\-$.]+$/
  • Dataset names are more restrictive: /^[0-9a-zA-Z_.-]+$/

The implementation in dataset_components.tsx correctly enforces:

  • Dollar signs ($) are allowed in layer names
  • Dollar signs are disallowed in dataset names
  • Both validations share common rules but dataset names have additional restrictions
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check the validation rules for layer and dataset names

# Search for layer name validation rules
echo "=== Layer Name Rules ==="
rg "layerNameRules.*=.*" -A 5

# Search for dataset name validation rules
echo "=== Dataset Name Rules ==="
rg "getDatasetNameRules.*=.*" -A 5

Length of output: 1290


Script:

#!/bin/bash
# Let's check the shared rules and dataset name pattern validation
echo "=== Shared Rules ==="
rg "sharedRules.*=.*" -A 5

echo "=== Dataset Name Pattern ==="
rg "pattern.*dataset.*name" -i -A 2

Length of output: 609


Script:

#!/bin/bash
# Let's check the complete dataset validation implementation
echo "=== Dataset Name Validation ==="
rg "getDatasetNameRules" -A 20

# Let's also check for any other dataset name pattern validations
echo "=== Dataset Pattern Validations ==="
ast-grep --pattern 'pattern: /[^}]+dataset[^}]+/'

Length of output: 8309

Copy link
Member

@fm3 fm3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backend LGTM, leaving final approval to frontend team

Copy link
Member

@daniel-wer daniel-wer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you! 👍

@MichaelBuessemeyer MichaelBuessemeyer merged commit f909097 into master Dec 10, 2024
3 checks passed
@MichaelBuessemeyer MichaelBuessemeyer deleted the allow-dollar-in-layer-names branch December 10, 2024 13:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dataset settings need multiple submits with same form input to succeed
3 participants