Conflict of paths

Created on 7 August 2024, 5 months ago

I need to disallow all paths /foo/*, excluding /foo/bar
My attempt:

!/foo/*
/foo/bar

Result: /foo/bar disallowed.
Is there any ways to do it?

✨ Feature request
Status

Active

Version

2.1

Component

Code

Created by

πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Pipeline finished with Success
    10 months ago
    Total: 170s
    #103130
  • Pipeline finished with Success
    9 months ago
    #138336
  • Pipeline finished with Success
    9 months ago
    #138342
  • Pipeline finished with Success
    9 months ago
    #139258
  • Pipeline finished with Success
    7 months ago
    Total: 147s
    #190082
  • Pipeline finished with Failed
    6 months ago
    Total: 154s
    #199369
  • Pipeline finished with Failed
    6 months ago
    #199370
  • Pipeline finished with Success
    6 months ago
    Total: 160s
    #199371
  • Pipeline finished with Success
    5 months ago
    Total: 126s
    #227683
  • Pipeline finished with Success
    5 months ago
    #227686
  • Pipeline finished with Success
    5 months ago
    Total: 133s
    #239360
  • Pipeline finished with Success
    5 months ago
    Total: 152s
    #246749
  • Pipeline finished with Failed
    5 months ago
    Total: 120s
    #246921
  • Issue created by @super_romeo
  • Status changed to Closed: works as designed 5 months ago
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    ! is to exclude the previous wild card pattern.

    For what you want to do, make sure you have the "Hide for the listed pages" checked then:

    /foo/*
    !/foo/bar

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Thank you for answer.

    But I wanna keep "Show for the listed pages" mode, because I know exactly only paths to show.
    My code:

    /order/*
    !/order/*/*
    /order/*/complete
    

    Is it possible?

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    This case is covered by Condition Path β†’ module (see "Example 2").

  • Pipeline finished with Failed
    5 months ago
    Total: 487s
    #247826
  • Status changed to Active 5 months ago
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    I see what you mean. I think your point is very valid. I will follow up with a new update soon to allow linear exclusion.

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Thank you very much. I'm looking forward to it.

  • Status changed to Needs review 5 months ago
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    @super_romeo - I created a new major version for this as there was a lot to rewrite to accomplish this and fixed some other issues.
    Please try it and let me know if this worked for what you intended.

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    I installed new version. And my Site branding block is disappeared. And contextual menu is corrupted.
    Please see pics.

  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    You are correct, I refined the access adjustment to the block for viewing only as it was altering some admin functions as well.
    Please update to the latest 2.2.x-dev and let me know if it works this time.
    ( you may have manually delete the module's folder from the contrib modules on your setup to force to update.)

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Thank you for update.

    1. "Site branding" block is still disappeared.

    2. "Site branding" block config fixed.

    3. Cases:
    a)

    !/order/*/*
    /order/*/complete
    

    /order/1/foo - hidden (OK)
    /order/1/complete - visible (OK)

    b)

    /order/*/complete
    !/order/*/*
    

    /order/1/foo - hidden (OK)
    /order/1/complete - hidden (wrong)

    I believe the path order should not depend on the path order.

  • Pipeline finished with Canceled
    4 months ago
    Total: 143s
    #251692
  • Pipeline finished with Success
    4 months ago
    Total: 204s
    #251699
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    There is no other way it has to be in order.

    So both examples are not correct, first, you set the allowed or not-allowed setting as you need, The exclusion is to override any previous path patterns.

    Your examples should be:

    A)
    configuration is set to: [x] Hide on pages :
    /order/*/*
    !/order/*/complete

    B)
    configuration is set to: [x] Show on pages:
    /order/*/* <-- This will display your block on paths with this pattern
    !/order/*/complete <-- and this will exclude this specific path pattern, overwriting previous pattern

    But based on your original logic I think what you want is this:

    configuration is set to: [x] Show on pages:
    /order/* <-- will display on ay page after order/
    !/order/*/* <-- exception will hide on any page after order/*/
    /order/*/complete <-- This will take over the exception allowing the block to display on /order/*/complete page

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Thank you. Got it.
    Now all good except "Site branding block is still disappeared".

  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    What are your patterns on that block?

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    "Hide for the listed pages"

    /trains/order/*/timetable
    /trains/order/*/timetable2
    /trains/order/*/passenger
    /trains/order/*/payment
    

    And block is hidden on /order/modification/3/aa7e50fddf30b0a5384b4b44c916f5c3/passenger.

    I think wildcard /trains/order/*/passenger wrongly applied to this path.

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Can I hope to have this problem fixed in the future? So that I can plan.

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Working on patch now.

  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    Hello @jcontreras,
    please check.

    Tests as a bonus :)

  • Pipeline finished with Failed
    4 months ago
    Total: 494s
    #261200
  • Pipeline finished with Canceled
    4 months ago
    Total: 127s
    #261236
  • Pipeline finished with Success
    4 months ago
    Total: 137s
    #261238
  • Pipeline finished with Success
    4 months ago
    Total: 139s
    #261369
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    Hi @super_romeo - Sorry It's been a crazy week last week and will continue on to the next week. I am working on a large project with crazy deadline. I took a quick glance at you changes, and it looks really good.

    Since you did a lot of changes, I'll have to take closer look, pull it all and run some tests and if all good I'll do the merge.

    I'll see if I can carb some time tomorrow as of today I still got a lot to do. Thank you so much for your time on this.

  • Pipeline finished with Success
    4 months ago
    #262399
  • Pipeline finished with Failed
    4 months ago
    #262802
  • Pipeline finished with Success
    4 months ago
    Total: 203s
    #262854
  • Pipeline finished with Success
    4 months ago
    Total: 253s
    #264893
  • Pipeline finished with Success
    4 months ago
    Total: 235s
    #264902
  • Pipeline finished with Canceled
    4 months ago
    #264914
  • Pipeline finished with Success
    4 months ago
    Total: 285s
    #265224
  • Pipeline finished with Success
    4 months ago
    Total: 1420s
    #265282
  • Pipeline finished with Success
    4 months ago
    Total: 176s
    #266011
  • Pipeline finished with Failed
    4 months ago
    Total: 143s
    #271208
  • Pipeline finished with Failed
    4 months ago
    Total: 201s
    #271274
  • Pipeline finished with Failed
    4 months ago
    Total: 188s
    #271321
  • πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

    @jcontreras, you are welcome!

  • Pipeline finished with Success
    4 months ago
    Total: 153s
    #273176
  • Pipeline finished with Success
    4 months ago
    Total: 142s
    #274516
  • Pipeline finished with Success
    4 months ago
    Total: 3297s
    #275017
  • Pipeline finished with Skipped
    4 months ago
    #276006
  • Pipeline finished with Success
    4 months ago
    Total: 280s
    #276504
  • Pipeline finished with Success
    3 months ago
    Total: 149s
    #277319
  • Pipeline finished with Success
    3 months ago
    Total: 243s
    #277830
  • Pipeline finished with Success
    3 months ago
    Total: 234s
    #281152
  • Pipeline finished with Failed
    3 months ago
    #281268
  • Pipeline finished with Success
    3 months ago
    Total: 142s
    #281580
  • Pipeline finished with Failed
    3 months ago
    Total: 248s
    #285263
  • Pipeline finished with Failed
    3 months ago
    Total: 197s
    #285432
  • Pipeline finished with Failed
    3 months ago
    #288501
  • Pipeline finished with Success
    3 months ago
    Total: 142s
    #288905
  • Pipeline finished with Success
    3 months ago
    Total: 150s
    #291366
  • Pipeline finished with Success
    3 months ago
    Total: 199s
    #296733
  • Pipeline finished with Failed
    3 months ago
    Total: 157s
    #299523
  • Pipeline finished with Success
    3 months ago
    Total: 145s
    #301713
  • Pipeline finished with Success
    3 months ago
    Total: 305s
    #301910
  • Pipeline finished with Success
    3 months ago
    Total: 140s
    #301927
  • Pipeline finished with Failed
    2 months ago
    Total: 155s
    #311833
  • Pipeline finished with Success
    2 months ago
    Total: 150s
    #314014
  • Pipeline finished with Success
    2 months ago
    Total: 281s
    #315151
  • Pipeline finished with Success
    2 months ago
    Total: 185s
    #316042
  • Pipeline finished with Success
    2 months ago
    Total: 190s
    #317030
  • Pipeline finished with Failed
    2 months ago
    Total: 261s
    #317043
  • Pipeline finished with Success
    2 months ago
    Total: 192s
    #317049
  • Pipeline finished with Success
    about 2 months ago
    #318596
  • Pipeline finished with Success
    about 2 months ago
    Total: 143s
    #319363
  • Pipeline finished with Skipped
    about 2 months ago
    #320964
  • Pipeline finished with Failed
    about 2 months ago
    Total: 345s
    #321635
  • Pipeline finished with Failed
    about 2 months ago
    Total: 342s
    #321658
  • Pipeline finished with Failed
    about 2 months ago
    Total: 368s
    #321746
  • Pipeline finished with Success
    about 2 months ago
    Total: 355s
    #321758
  • Pipeline finished with Failed
    about 2 months ago
    Total: 145s
    #324013
  • Pipeline finished with Failed
    about 2 months ago
    #324602
  • Pipeline finished with Failed
    about 2 months ago
    Total: 220s
    #324609
  • Pipeline finished with Success
    about 2 months ago
    Total: 145s
    #324619
  • Pipeline finished with Failed
    about 2 months ago
    Total: 848s
    #325311
  • Pipeline finished with Success
    about 1 month ago
    Total: 153s
    #333119
  • Pipeline finished with Success
    about 1 month ago
    Total: 157s
    #333121
  • Pipeline finished with Success
    about 1 month ago
    Total: 136s
    #335263
  • Pipeline finished with Failed
    about 1 month ago
    Total: 150s
    #335309
  • Pipeline finished with Failed
    about 1 month ago
    #337375
  • Pipeline finished with Success
    about 1 month ago
    Total: 159s
    #337598
  • Pipeline finished with Failed
    about 1 month ago
    Total: 191s
    #338192
  • Pipeline finished with Success
    about 1 month ago
    Total: 231s
    #338225
  • Pipeline finished with Success
    about 1 month ago
    Total: 151s
    #340423
  • Pipeline finished with Success
    about 1 month ago
    Total: 232s
    #343172
  • Pipeline finished with Success
    about 1 month ago
    Total: 192s
    #343405
  • Pipeline finished with Success
    about 1 month ago
    Total: 197s
    #344246
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 86s
    #344887
  • Pipeline finished with Success
    27 days ago
    Total: 139s
    #348866
  • Pipeline finished with Success
    27 days ago
    Total: 137s
    #349191
  • Pipeline finished with Skipped
    24 days ago
    #353232
  • Pipeline finished with Success
    23 days ago
    Total: 164s
    #354343
  • Pipeline finished with Success
    23 days ago
    Total: 134s
    #354437
  • Pipeline finished with Success
    23 days ago
    Total: 206s
    #354484
  • Pipeline finished with Success
    23 days ago
    Total: 140s
    #354557
  • Pipeline finished with Success
    23 days ago
    Total: 171s
    #354635
  • Pipeline finished with Success
    22 days ago
    Total: 141s
    #354800
  • Pipeline finished with Success
    18 days ago
    Total: 209s
    #359350
  • Pipeline finished with Success
    16 days ago
    Total: 355s
    #361154
  • πŸ‡ΊπŸ‡ΈUnited States jcontreras

    I moved this to 2.2.0-alpha2 - please review.

  • Pipeline finished with Success
    12 days ago
    Total: 223s
    #364147
  • Pipeline finished with Failed
    7 days ago
    #368722
  • Pipeline finished with Failed
    7 days ago
    Total: 145s
    #368728
  • Pipeline finished with Canceled
    7 days ago
    Total: 215s
    #368777
  • Pipeline finished with Failed
    7 days ago
    Total: 943s
    #368779
  • Pipeline finished with Success
    7 days ago
    Total: 200s
    #368815
  • Pipeline finished with Success
    7 days ago
    Total: 324s
    #368816
  • Pipeline finished with Success
    5 days ago
    Total: 216s
    #371162
  • Pipeline finished with Success
    4 days ago
    Total: 126s
    #372190
Production build 0.71.5 2024