Skip to content

Commit 88ab8f0

Browse files
authored
Merge pull request #106 from magento-commerce/develop
MCLOUD-9560: October cloud tools release
2 parents 93df22b + 15f7000 commit 88ab8f0

File tree

16 files changed

+884
-37
lines changed

16 files changed

+884
-37
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/ece-tools",
33
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "2002.1.12",
5+
"version": "2002.1.13",
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
@@ -23,7 +23,7 @@
2323
"illuminate/config": "^5.5||^8.77",
2424
"magento/magento-cloud-components": "^1.0.8",
2525
"magento/magento-cloud-docker": "^1.0.0",
26-
"magento/magento-cloud-patches": "^1.0.11",
26+
"magento/magento-cloud-patches": "^1.0.20",
2727
"magento/quality-patches": "^1.1.0",
2828
"monolog/monolog": "^1.25 || ^2.3",
2929
"nesbot/carbon": "^1.0 || ^2.0",

config/schema.error.yaml

+12-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
!php/const Magento\MagentoCloud\App\Error::BUILD_WRONG_BRAINTREE_VARIABLE:
140140
step: validate-config
141141
title: 'Remove Magento Braintree module configuration which is no longer supported in Adobe Commerce and Magento Open Source 2.4 and later versions.'
142-
suggestion: 'Support for the Braintree module is no longer included with Magento 2.4.0 and later. Remove the CONFIG__STORES__DEFAULT__PAYMENT__BRAINTREE__CHANNEL variable from the variables section of the .magento.app.yaml file. For Braintree payment support, use an official extension from the Commerce Marketplace instead.'
142+
suggestion: 'Support for the Braintree module is no longer included with Magento 2.4.0 and later. Remove the CONFIG__STORES__DEFAULT__PAYMENT__BRAINTREE__CHANNEL variable from the variables section of the `.magento.app.yaml` file. For Braintree payment support, use an official extension from the Commerce Marketplace instead.'
143143
stage: build
144144
type: critical
145145
!php/const Magento\MagentoCloud\App\Error::DEPLOY_WRONG_CACHE_CONFIGURATION:
@@ -334,7 +334,7 @@
334334
!php/const Magento\MagentoCloud\App\Error::DEPLOY_WRONG_BRAINTREE_VARIABLE:
335335
step: validate-config
336336
title: 'Remove Magento Braintree module configuration which is no longer supported in Adobe Commerce or Magento Open Source 2.4 and later versions.'
337-
suggestion: 'Support for the Braintree module is no longer included with Adobe Commerce or Magento Open Source 2.4.0 and later. Remove the CONFIG__STORES__DEFAULT__PAYMENT__BRAINTREE__CHANNEL variable from the variables section of the .magento.app.yaml file. For Braintree support, use an official Braintree Payments extension from the Commerce Marketplace instead.'
337+
suggestion: 'Support for the Braintree module is no longer included with Adobe Commerce or Magento Open Source 2.4.0 and later. Remove the CONFIG__STORES__DEFAULT__PAYMENT__BRAINTREE__CHANNEL variable from the variables section of the `.magento.app.yaml` file. For Braintree support, use an official Braintree Payments extension from the Commerce Marketplace instead.'
338338
stage: deploy
339339
type: critical
340340
!php/const Magento\MagentoCloud\App\Error::DEPLOY_ES_SERVICE_NOT_INSTALLED:
@@ -430,6 +430,16 @@
430430
suggestion: ''
431431
stage: general
432432
type: critical
433+
!php/const Magento\MagentoCloud\App\Error::GLOBAL_EVENTING_MODULE_GENERATE_FAILED:
434+
title: 'Unable to generate a module for eventing'
435+
suggestion: 'Check the `cloud.log` for more information.'
436+
stage: general
437+
type: critical
438+
!php/const Magento\MagentoCloud\App\Error::GLOBAL_EVENTING_MODULE_ENABLEMENT_FAILED:
439+
title: 'Unable to enable a module for eventing'
440+
suggestion: 'Check the `cloud.log` for more information.'
441+
stage: general
442+
type: critical
433443
# Warning errors
434444
!php/const Magento\MagentoCloud\App\Error::WARN_CONFIG_PHP_NOT_EXISTS:
435445
title: 'File app/etc/config.php does not exist'

config/schema.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,17 @@ variables:
706706
config:
707707
region: us-east-1
708708
bucket: test-bucket
709+
ENABLE_EVENTING:
710+
description: Enables commerce eventing.
711+
type: boolean
712+
stages:
713+
- global
714+
default:
715+
global: false
716+
examples:
717+
- stage:
718+
global:
719+
ENABLE_EVENTING: true
709720

710721
# Environment variables
711722
ENV_RELATIONSHIPS:

dist/error-codes.md

+26-24
Large diffs are not rendered by default.

scenario/build/generate.xml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
</item>
1515
<item name="warning" xsi:type="array">
1616
<item name="config-file-exists" xsi:type="object" priority="100">Magento\MagentoCloud\Config\Validator\Build\ConfigFileExists</item>
17+
<item name="opcache-exclude-paths" xsi:type="object" priority="100">Magento\MagentoCloud\Config\Validator\Build\OpcacheExcludePaths</item>
1718
<item name="deprecated-ini" xsi:type="object" priority="200">Magento\MagentoCloud\Config\Validator\Build\UnsupportedBuildOptionsIni</item>
1819
<item name="modules-exists" xsi:type="object" priority="300">Magento\MagentoCloud\Config\Validator\Build\ModulesExists</item>
1920
<item name="appropriate-version" xsi:type="object" priority="400">Magento\MagentoCloud\Config\Validator\Build\AppropriateVersion</item>
@@ -28,6 +29,7 @@
2829
<step name="set-report-dir-nesting-level" type="Magento\MagentoCloud\Step\Build\SetReportDirNestingLevel" priority="700"/>
2930
<step name="marshall-files" type="Magento\MagentoCloud\Step\Build\MarshallFiles" priority="800"/>
3031
<step name="copy-sample-data" type="Magento\MagentoCloud\Step\Build\CopySampleData" priority="900"/>
32+
<step name="enable-eventing" type="Magento\MagentoCloud\Step\Build\EnableEventing" priority="950" />
3133
<step name="compile-di" type="Magento\MagentoCloud\Step\Build\CompileDi" priority="1000"/>
3234
<step name="dump-autoload" type="Magento\MagentoCloud\Step\Build\ComposerDumpAutoload" priority="1100"/>
3335
<step name="deploy-static-content" type="Magento\MagentoCloud\Step\Build\DeployStaticContent" priority="1200">

src/App/Error.php

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ class Error
9494
public const GLOBAL_CONFIG_PARSE_FAILED = 244;
9595
public const GLOBAL_CONFIG_UNABLE_TO_READ = 245;
9696
public const GLOBAL_CONFIG_UNABLE_TO_READ_SCHEMA_YAML = 246;
97+
public const GLOBAL_EVENTING_MODULE_GENERATE_FAILED = 247;
98+
public const GLOBAL_EVENTING_MODULE_ENABLEMENT_FAILED = 248;
9799

98100
/**
99101
* Build
@@ -105,6 +107,7 @@ class Error
105107
public const WARN_SCD_OPTIONS_IGNORANCE = 1005;
106108
public const WARN_CONFIGURATION_STATE_NOT_IDEAL = 1006;
107109
public const WARN_BALER_CANNOT_BE_USED = 1007;
110+
public const WARN_WRONG_OPCACHE_CONFIG = 1008;
108111

109112
/**
110113
* Deploy

src/Config/StageConfigInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ interface StageConfigInterface
4242
public const VAR_SCD_MATRIX = 'SCD_MATRIX';
4343
public const VAR_SCD_NO_PARENT = 'SCD_NO_PARENT';
4444
public const VAR_X_FRAME_CONFIGURATION = 'X_FRAME_CONFIGURATION';
45+
public const VAR_ENABLE_EVENTING = 'ENABLE_EVENTING';
4546

4647
/**
4748
* Settings for deployment from git.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
namespace Magento\MagentoCloud\Config\Validator\Build;
9+
10+
use Magento\MagentoCloud\App\Error;
11+
use Magento\MagentoCloud\Config\Validator;
12+
use Magento\MagentoCloud\Config\ValidatorInterface;
13+
use Magento\MagentoCloud\Filesystem\Driver\File;
14+
use Magento\MagentoCloud\Filesystem\FileList;
15+
16+
/**
17+
* Checks that required paths to exclude for OPCache are present.
18+
*/
19+
class OpcacheExcludePaths implements ValidatorInterface
20+
{
21+
/**
22+
* @var File
23+
*/
24+
private $file;
25+
26+
/**
27+
* @var FileList
28+
*/
29+
private $fileList;
30+
31+
/**
32+
* @var Validator\ResultFactory
33+
*/
34+
private $resultFactory;
35+
36+
/**
37+
* @param File $file
38+
* @param FileList $fileList
39+
* @param Validator\ResultFactory $resultFactory
40+
*/
41+
public function __construct(
42+
File $file,
43+
FileList $fileList,
44+
Validator\ResultFactory $resultFactory
45+
) {
46+
$this->file = $file;
47+
$this->fileList = $fileList;
48+
$this->resultFactory = $resultFactory;
49+
}
50+
51+
/**
52+
* Checks if php.ini and op-exclude.txt are present, and they contain needed configuration
53+
*
54+
* {@inheritdoc}
55+
*/
56+
public function validate(): Validator\ResultInterface
57+
{
58+
$phpIni = $this->fileList->getPhpIni();
59+
$excludeList = $this->fileList->getOpCacheExcludeList();
60+
61+
// Checks if files are present
62+
if (!$this->file->isExists($phpIni) || !$this->file->isExists($excludeList)) {
63+
return $this->resultFactory->error(
64+
'File php.ini or op-exclude.txt does not exist',
65+
'Check if your cloud template contains latest php.ini and op-exclude.txt files',
66+
Error::WARN_WRONG_OPCACHE_CONFIG
67+
);
68+
}
69+
70+
// Checks if the php.ini file contains correct path to the op-exclude.txt file
71+
$parsedPhpIni = (array) $this->file->parseIni($phpIni);
72+
73+
if (!(array_key_exists('opcache.blacklist_filename', $parsedPhpIni)
74+
&& $parsedPhpIni['opcache.blacklist_filename'] == $excludeList)) {
75+
return $this->resultFactory->error(
76+
'File php.ini does not contain opcache.blacklist_filename configuration',
77+
'Check if your cloud template contains latest php.ini configuration file'
78+
. ' https://github.com/magento/magento-cloud/blob/master/php.ini',
79+
Error::WARN_WRONG_OPCACHE_CONFIG
80+
);
81+
}
82+
83+
// Checks if the op-exclude.txt file contains all needed paths to exclude for OPCache
84+
$diff = array_diff(
85+
[
86+
'/app/*/app/etc/config.php',
87+
'/app/*/app/etc/env.php',
88+
'/app/app/etc/config.php',
89+
'/app/app/etc/env.php',
90+
'/app/etc/config.php',
91+
'/app/etc/env.php'
92+
],
93+
explode(PHP_EOL, (string) $this->file->fileGetContents($excludeList))
94+
);
95+
96+
if (!empty($diff)) {
97+
return $this->resultFactory->error(
98+
'File op-exclude.txt does not contain required paths to exclude for OPCache',
99+
'Check if your op-exclude.txt contains the next paths:' . PHP_EOL
100+
. implode(PHP_EOL, $diff),
101+
Error::WARN_WRONG_OPCACHE_CONFIG
102+
);
103+
}
104+
105+
return $this->resultFactory->create(Validator\ResultInterface::SUCCESS);
106+
}
107+
}

src/Filesystem/ConfigFileList.php

+16
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,20 @@ public function getErrorReportConfig(): string
7373
{
7474
return $this->systemList->getMagentoRoot() . '/pub/errors/local.xml';
7575
}
76+
77+
/**
78+
* @return string
79+
*/
80+
public function getPhpIni(): string
81+
{
82+
return $this->systemList->getMagentoRoot() . '/php.ini';
83+
}
84+
85+
/**
86+
* @return string
87+
*/
88+
public function getOpCacheExcludeList(): string
89+
{
90+
return $this->systemList->getMagentoRoot() . '/op-exclude.txt';
91+
}
7692
}

src/Step/Build/EnableEventing.php

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
namespace Magento\MagentoCloud\Step\Build;
9+
10+
use Magento\MagentoCloud\App\Error;
11+
use Magento\MagentoCloud\Config\ConfigException;
12+
use Magento\MagentoCloud\Config\GlobalSection;
13+
use Magento\MagentoCloud\Config\StageConfigInterface;
14+
use Magento\MagentoCloud\Shell\MagentoShell;
15+
use Magento\MagentoCloud\Shell\ShellException;
16+
use Magento\MagentoCloud\Shell\ShellFactory;
17+
use Magento\MagentoCloud\Step\StepException;
18+
use Magento\MagentoCloud\Step\StepInterface;
19+
use Psr\Log\LoggerInterface;
20+
21+
/**
22+
* Runs a command to generate a module for eventing and enables this module in case when
23+
* it is enabled in configuration
24+
*/
25+
class EnableEventing implements StepInterface
26+
{
27+
/**
28+
* @var LoggerInterface
29+
*/
30+
private $logger;
31+
32+
/**
33+
* @var MagentoShell
34+
*/
35+
private $magentoShell;
36+
37+
/**
38+
* @var GlobalSection
39+
*/
40+
private $globalConfig;
41+
42+
/**
43+
* @param LoggerInterface $logger
44+
* @param ShellFactory $shellFactory
45+
* @param GlobalSection $globalConfig
46+
*/
47+
public function __construct(
48+
LoggerInterface $logger,
49+
ShellFactory $shellFactory,
50+
GlobalSection $globalConfig
51+
) {
52+
$this->logger = $logger;
53+
$this->magentoShell = $shellFactory->createMagento();
54+
$this->globalConfig = $globalConfig;
55+
}
56+
57+
/**
58+
* Generates and enables a module for eventing if @see StageConfigInterface::VAR_ENABLE_EVENTING set to true
59+
*
60+
* {@inheritDoc}
61+
*/
62+
public function execute()
63+
{
64+
try {
65+
if (!$this->globalConfig->get(StageConfigInterface::VAR_ENABLE_EVENTING)) {
66+
return;
67+
}
68+
} catch (ConfigException $e) {
69+
throw new StepException($e->getMessage(), $e->getCode(), $e);
70+
}
71+
72+
try {
73+
$this->logger->notice('Generating module for eventing');
74+
$this->magentoShell->execute('events:generate:module');
75+
} catch (ShellException $e) {
76+
$this->logger->error(
77+
'Failed to generate the Magento_AdobeCommerceEvents module. ' .
78+
'Refer to the eventing documentation to determine if all required modules are have been installed. ' .
79+
'Error: ' . $e->getMessage()
80+
);
81+
throw new StepException($e->getMessage(), Error::GLOBAL_EVENTING_MODULE_GENERATE_FAILED, $e);
82+
}
83+
84+
try {
85+
$this->logger->notice('Enabling module for eventing');
86+
$this->magentoShell->execute('module:enable Magento_AdobeCommerceEvents');
87+
} catch (ShellException $e) {
88+
$this->logger->error('Failed to enable module for eventing: ' . $e->getMessage());
89+
throw new StepException($e->getMessage(), Error::GLOBAL_EVENTING_MODULE_ENABLEMENT_FAILED, $e);
90+
}
91+
}
92+
}

src/Step/Deploy/PreDeploy/ConfigUpdate/Cache.php

+5
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public function execute()
7676
try {
7777
$config = $this->configReader->read();
7878
$cacheConfig = $this->cacheConfig->get();
79+
$graphqlConfig = $config['cache']['graphql'] ?? [];
7980

8081
if (isset($cacheConfig['frontend'])) {
8182
$cacheConfig['frontend'] = array_filter($cacheConfig['frontend'], function ($cacheFrontend) {
@@ -108,6 +109,10 @@ public function execute()
108109
$config['cache'] = $cacheConfig;
109110
}
110111

112+
if (!empty($graphqlConfig)) {
113+
$config['cache']['graphql'] = $graphqlConfig;
114+
}
115+
111116
$this->configWriter->create($config);
112117
} catch (FileSystemException $e) {
113118
throw new StepException($e->getMessage(), Error::DEPLOY_ENV_PHP_IS_NOT_WRITABLE);

src/Test/Unit/Config/SchemaTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ public function testGetDefaultsForGlobalSection(): void
174174
StageConfigInterface::VAR_DEPLOY_FROM_GIT_OPTIONS => [],
175175
StageConfigInterface::VAR_MIN_LOGGING_LEVEL => '',
176176
StageConfigInterface::VAR_X_FRAME_CONFIGURATION => 'SAMEORIGIN',
177+
StageConfigInterface::VAR_ENABLE_EVENTING => false,
177178
],
178179
$this->schema->getDefaults(StageConfigInterface::STAGE_GLOBAL)
179180
);

0 commit comments

Comments
 (0)