Package Manager validation is only necessary if the project to install is not already in the filesystem

Created on 17 December 2024, 4 months ago

Problem/Motivation

This is spun off from ๐Ÿ“Œ Skip Package Manager validation of using the local recipes source plugin Active .

Project Browser is way too blunt about doing Package Manager validation. It does it even if it's not necessary, and won't be necessary in a particular context. We should be smarter about that, which will be better for UX, and also more performant, since Package Manager's validation is very slow.

Proposed resolution

Move the install readiness checking to \Drupal\project_browser\Controller\InstallerController::begin(). If this method is called at all, it means we're about to create a Package Manager sandbox, and that means we need to validate the state of the system.

This should happen just before we call $this->installer->create();, before the try block. If validation fails, then we need to return an error response and gracefully display it to the user. Tests will certainly need to be adjusted; some tests that were previously functional tests will probably have to be turned into functional JS tests.

๐Ÿ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

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

Merge Requests

Comments & Activities

  • Issue created by @phenaproxima
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts
  • Pipeline finished with Canceled
    3 months ago
    Total: 294s
    #390063
  • Pipeline finished with Failed
    3 months ago
    Total: 437s
    #390067
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    Bumping this to critical. In my testing, the 'Recommend' page in project browser spent 16 seconds just on this method, which makes it almost unusable - could potentially go past server timeouts on some setups.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    You tested with alpha6, didn'tcha. ;)

    In 2.0.x HEAD, which will soon be alpha7, we have a workaround for the Recipes (a.k.a "Recommended") tab which skips the Package Manager check: https://git.drupalcode.org/project/project_browser/-/blob/2.0.x/src/Elem...

    So, de-escalating this issue for now. I certainly think it should block a stable release of Project Browser, though.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States chrisfromredfin Portland, Maine
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia kunal.sachdev

    kunal.sachdev โ†’ made their first commit to this issueโ€™s fork.

  • Pipeline finished with Failed
    2 months ago
    Total: 397s
    #404703
  • ๐Ÿ‡ฌ๐Ÿ‡ชGeorgia jibla

    What is the status on this issue? I see MR, but issue status is "Active".

    This weekend (25-26 Jan), I am organizing a contribution weekend in Tbilisi and I am looking for issues to select to work on. If we can contribute here (review, test or code), we would be happy.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    This is in progress, @kunal.sachdev is actively working on it. :)

  • Pipeline finished with Failed
    2 months ago
    Total: 456s
    #406975
  • Pipeline finished with Failed
    2 months ago
    Total: 442s
    #406982
  • Pipeline finished with Failed
    2 months ago
    Total: 420s
    #407272
  • Pipeline finished with Failed
    2 months ago
    Total: 456s
    #407976
  • Pipeline finished with Failed
    2 months ago
    Total: 361s
    #408214
  • Pipeline finished with Failed
    2 months ago
    Total: 352s
    #408222
  • Pipeline finished with Failed
    2 months ago
    Total: 367s
    #409025
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Manually tested this at @kunal.sachdev's request.

    What I found is that the performance problem is definitely solved -- the modules page loads immediately!

    There is one major problem, which is that if max_selections is NULL (the default), and you start selecting projects to install, the bulk actions bar at the bottom of the page doesn't show up. That needs to be fixed, and we need a regression test added for that. I was able to work around it by setting max_selections to 1 globally.

    I then created sites.php with some fake sites listed in it, to pretend I'm in a multisite, which Package Manager doesn't support. I went to the browse list and tried to install Metatag, and it failed exactly as expected with an error from that validator. Screenshot:

    One thing we need to do, I think, is ensure the list of errors (and warnings) is formatted as HTML. If we just separate them by new lines, they all run together when you display them as HTML. So maybe format them as a ul.

  • Pipeline finished with Failed
    2 months ago
    Total: 407s
    #409979
  • Pipeline finished with Failed
    2 months ago
    Total: 491s
    #410045
  • Pipeline finished with Failed
    2 months ago
    Total: 509s
    #410062
  • Pipeline finished with Failed
    2 months ago
    Total: 449s
    #410317
  • Pipeline finished with Failed
    2 months ago
    Total: 489s
    #410951
  • Pipeline finished with Failed
    2 months ago
    Total: 523s
    #413487
  • Pipeline finished with Failed
    2 months ago
    Total: 500s
    #414401
  • Pipeline finished with Failed
    2 months ago
    Total: 541s
    #414665
  • Pipeline finished with Failed
    2 months ago
    Total: 560s
    #414731
  • Pipeline finished with Failed
    2 months ago
    Total: 542s
    #415423
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States chrisfromredfin Portland, Maine

    Leslie reminded me today that if Package Manager validation fails at the page-load, we default to showing "View Commands" instead of "Install" or "Select."

    If we move the readiness check to the beginning of install, that does push off when the error is being reported to the user. I think that's fine, BUT, if we then cache the PM validation check in some way, we'd be able to switch back to the 'View Commands' fallback. Is there any intention to handle this? It's kind of a nice feature now that we may lose... ?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    I'm not sure that caching error conditions is a good idea at all. It's one thing in automatic updates, which is meant to operate continuously in the background, but Project Browser is entirely on-demand, and conditions could change quickly.

  • Pipeline finished with Success
    about 2 months ago
    Total: 376s
    #416812
  • Pipeline finished with Success
    about 2 months ago
    Total: 837s
    #416830
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia kunal.sachdev

    Regarding the comment #11 ๐Ÿ› Package Manager validation is only necessary if the project to install is not already in the filesystem Active , I believe we already have a test for the 'selecting projects and install' scenario \Drupal\Tests\project_browser\FunctionalJavascript\ProjectBrowserInstallerUiTest::testMultipleModuleAddAndInstall , which was failing but is fixed now. So I don't think we need more tests.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Needs a rebase now that ๐Ÿ“Œ Refactor the Search component to treat filter changes generically Active is in.

    Regarding #12, I like the idea of dynamically falling back to View Commands if there's an error at the server side.

    That might be a fairly substantial change to the Svelte code, though, so probably best done in a follow-up.

  • Pipeline finished with Canceled
    about 2 months ago
    Total: 297s
    #417096
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Opened โœจ If Package Manager validation fails, fall back to "View Commands" Active to discuss what we should do if there is a validation failure.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States phenaproxima Massachusetts

    Tentatively RTBCing it; I didn't make any substantive changes to the patch. I had previously manually tested it in #11 and I have no reason to believe the current changes have broken anything.

  • Pipeline finished with Failed
    about 2 months ago
    Total: 455s
    #417103
  • Pipeline finished with Failed
    about 2 months ago
    Total: 226s
    #417120
  • Pipeline finished with Success
    about 2 months ago
    Total: 362s
    #417122
  • Pipeline finished with Skipped
    about 2 months ago
    #417296
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States chrisfromredfin Portland, Maine

    ship it real good

  • Pipeline finished with Failed
    about 2 months ago
    Total: 1337s
    #427213
  • Pipeline finished with Canceled
    about 2 months ago
    Total: 141s
    #427230
  • Pipeline finished with Failed
    about 2 months ago
    Total: 1497s
    #427232
  • Status changed to Fixed about 1 month ago
  • Automatically closed - issue fixed for 2 weeks with no activity.

  • Pipeline finished with Failed
    about 1 month ago
    Total: 1122s
    #432380
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1543s
    #432402
  • Pipeline finished with Failed
    about 1 month ago
    Total: 450s
    #432482
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1184s
    #432489
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1280s
    #432509
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1342s
    #432523
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1318s
    #432798
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1269s
    #432843
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1198s
    #432866
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1245s
    #432905
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1225s
    #432912
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1271s
    #433111
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1493s
    #433124
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1498s
    #433271
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1340s
    #433872
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1727s
    #433964
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1040s
    #434866
  • Pipeline finished with Failed
    about 1 month ago
    Total: 922s
    #434881
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1066s
    #434891
  • Pipeline finished with Failed
    about 1 month ago
    Total: 809s
    #434904
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1296s
    #434913
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1273s
    #434949
  • Pipeline finished with Failed
    about 1 month ago
    Total: 686s
    #435079
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1283s
    #435096
  • Pipeline finished with Success
    about 1 month ago
    Total: 6219s
    #435125
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1441s
    #435262
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 174s
    #435272
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 68s
    #435274
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1472s
    #435275
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1649s
    #435290
  • Pipeline finished with Success
    about 1 month ago
    Total: 1531s
    #435304
Production build 0.71.5 2024