From 68b99f1afb522fab7d7342d6530eea1bae981641 Mon Sep 17 00:00:00 2001 From: Adam G-H <32250-phenaproxima@users.noreply.drupalcode.org> Date: Wed, 26 Jun 2024 13:04:23 +0000 Subject: [PATCH] Issue #3457054: Identify projects in a more reliable way --- .cspell-project-words.txt | 1 + css/pb.css | 2 +- src/Controller/InstallerController.php | 2 +- src/EnabledSourceHandler.php | 13 ++++++------- src/ProjectBrowser/Project.php | 6 +++--- tests/src/Functional/InstallerControllerTest.php | 2 +- .../ProjectBrowserInstallerUiTest.php | 2 +- tests/src/Kernel/EnabledSourceHandlerTest.php | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.cspell-project-words.txt b/.cspell-project-words.txt index b69f75593..852d5aa33 100644 --- a/.cspell-project-words.txt +++ b/.cspell-project-words.txt @@ -7,3 +7,4 @@ colinodell testlogger kanopi tabwise +sophron diff --git a/css/pb.css b/css/pb.css index 20adee504..cbad4fd66 100644 --- a/css/pb.css +++ b/css/pb.css @@ -630,7 +630,7 @@ .search__search_term::-webkit-search-decoration, .search__search_term::-webkit-search-results-button, .search__search_term::-webkit-search-results-decoration { - display: none; + display: none; } .search__search-bar { diff --git a/src/Controller/InstallerController.php b/src/Controller/InstallerController.php index 9d5c38435..7020569ed 100644 --- a/src/Controller/InstallerController.php +++ b/src/Controller/InstallerController.php @@ -395,7 +395,7 @@ class InstallerController extends ControllerBase { try { $stage_id = $this->installer->create(); - $this->setRequiringState($project->uuid, 'creating install stage', $stage_id); + $this->setRequiringState($project->id, 'creating install stage', $stage_id); } catch (\Exception $e) { $this->cancelRequire(); diff --git a/src/EnabledSourceHandler.php b/src/EnabledSourceHandler.php index 7f4e22d20..79779f855 100644 --- a/src/EnabledSourceHandler.php +++ b/src/EnabledSourceHandler.php @@ -3,7 +3,6 @@ namespace Drupal\project_browser; use Drupal\Component\Serialization\Json; -use Drupal\Component\Uuid\UuidInterface; use Drupal\Core\Config\ConfigCrudEvent; use Drupal\Core\Config\ConfigEvents; use Drupal\Core\Config\ConfigFactoryInterface; @@ -35,7 +34,6 @@ class EnabledSourceHandler implements LoggerAwareInterface, EventSubscriberInter private readonly ConfigFactoryInterface $configFactory, private readonly ProjectBrowserSourceManager $pluginManager, private readonly ActivatorInterface $activator, - private readonly UuidInterface $uuid, KeyValueExpirableFactoryInterface $keyValueFactory, ) { $this->keyValue = $keyValueFactory->get('project_browser'); @@ -117,10 +115,11 @@ class EnabledSourceHandler implements LoggerAwareInterface, EventSubscriberInter $stored = []; foreach ($projects as $source_id => $results) { foreach ($results->list as $project) { - // Each project is identified by a UUID which persists until the data - // store is wiped. - $project->uuid = $this->uuid->generate(); - $this->keyValue->set($project->uuid, $project); + // Generate an ID for the project from the package name and machine + // name, which are unlikely to change. This isn't security-sensitive, + // so SHA1 is okay for this purpose. + $project->id = sha1($source_id . $project->packageName . $project->machineName); + $this->keyValue->setIfNotExists($project->id, $project); // Add activation data to the project. $this->getActivationData($project); } @@ -128,7 +127,7 @@ class EnabledSourceHandler implements LoggerAwareInterface, EventSubscriberInter // ProjectsResultsPage. $stored[$source_id] = [ $results->totalResults, - array_column($results->list, 'uuid'), + array_column($results->list, 'id'), $results->pluginLabel, ]; } diff --git a/src/ProjectBrowser/Project.php b/src/ProjectBrowser/Project.php index d0c95a3c2..fc8370593 100644 --- a/src/ProjectBrowser/Project.php +++ b/src/ProjectBrowser/Project.php @@ -15,13 +15,13 @@ use Drupal\project_browser\ProjectType; class Project implements \JsonSerializable { /** - * A persistent UUID for this project in non-volatile storage. + * A persistent ID for this project in non-volatile storage. * * @var string * * @see \Drupal\project_browser\EnabledSourceHandler::getProjects() */ - public string $uuid; + public string $id; /** * The status of this project in the current site. @@ -186,7 +186,7 @@ class Project implements \JsonSerializable { 'created' => $this->created, 'selector_id' => $this->getSelectorId(), 'commands' => $commands, - 'id' => $this->uuid, + 'id' => $this->id, ]; } diff --git a/tests/src/Functional/InstallerControllerTest.php b/tests/src/Functional/InstallerControllerTest.php index a5f4ef525..e3276054a 100644 --- a/tests/src/Functional/InstallerControllerTest.php +++ b/tests/src/Functional/InstallerControllerTest.php @@ -625,7 +625,7 @@ class InstallerControllerTest extends BrowserTestBase { foreach ($projects as $results_page) { foreach ($results_page->list as $project) { if ($project->machineName === $module_name) { - return $project->uuid; + return $project->id; } } } diff --git a/tests/src/FunctionalJavascript/ProjectBrowserInstallerUiTest.php b/tests/src/FunctionalJavascript/ProjectBrowserInstallerUiTest.php index e7aaf954a..e0bc77d70 100644 --- a/tests/src/FunctionalJavascript/ProjectBrowserInstallerUiTest.php +++ b/tests/src/FunctionalJavascript/ProjectBrowserInstallerUiTest.php @@ -274,7 +274,7 @@ class ProjectBrowserInstallerUiTest extends WebDriverTestBase { if (method_exists($source, 'isProjectSafe') && !$source->isProjectSafe($project)) { continue; } - return $project->uuid; + return $project->id; } } $this->fail("Could not find a project to install from amongst the enabled sources."); diff --git a/tests/src/Kernel/EnabledSourceHandlerTest.php b/tests/src/Kernel/EnabledSourceHandlerTest.php index 64ba6a163..fa0452aff 100644 --- a/tests/src/Kernel/EnabledSourceHandlerTest.php +++ b/tests/src/Kernel/EnabledSourceHandlerTest.php @@ -61,7 +61,7 @@ class EnabledSourceHandlerTest extends KernelTestBase { $this->assertNotEmpty($list); $project = reset($list); - $project_again = $handler->getStoredProject($project->uuid); + $project_again = $handler->getStoredProject($project->id); $this->assertNotSame($project, $project_again); $this->assertSame($project->jsonSerialize(), $project_again->jsonSerialize()); @@ -86,7 +86,7 @@ class EnabledSourceHandlerTest extends KernelTestBase { // `commands` properties should be uninitialized. $project = $this->container->get('keyvalue.expirable') ->get('project_browser') - ->get($project->uuid); + ->get($project->id); $this->assertInstanceOf(Project::class, $project); $this->assertFalse(self::hasActivationData($project)); } -- GitLab