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

Drupal101 fix install fail scripts early #132

Merged
merged 8 commits into from
Oct 1, 2023

Conversation

shaal
Copy link
Owner

@shaal shaal commented Oct 1, 2023

Summary by CodeRabbit

  • Refactor: Enhanced error handling in scripts with set -eu -o pipefail.
  • New Feature: Added default initialization for variables in scripts.
  • Refactor: Simplified the execution of ddev start and removed background execution.
  • Chore: Removed loading of environment variables from .env file.
  • New Feature: Added support for applying patch files if provided.
  • New Feature: Introduced additional composer configurations.
  • New Feature: Implemented symlinking to project source code.
  • New Feature: Updated composer require commands with --no-install flag.
  • New Feature: Added auto-updates for settings.php and generation of settings.ddev.php.
  • Refactor: Changed Drupal site installation command to be timed for performance tracking.

@shaal shaal self-assigned this Oct 1, 2023
@codesandbox
Copy link

codesandbox bot commented Oct 1, 2023

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 1, 2023

Walkthrough

The changes introduced in this pull request primarily focus on enhancing error handling, optimizing command execution, and refining the setup process for Drupal projects. The scripts have been updated to handle errors more strictly, initialize variables with default values, and optimize composer commands. Additionally, the Drupal setup script has been improved to support patch application, automatic configuration updates, and timed command execution.

Changes

File Summary
.gitpod/drupal/drupalpod-setup.sh Introduced strict error handling, optimized command execution, removed loading of default environment variables, added support for patch application, configured composer plugins, created symlinks to project source code, and improved Drupal installation process.
.gitpod/drupal/install-essential-packages.sh Added strict error handling and updated composer require command to update dependencies within specified constraints.
.gitpod/utils/set-base-environment.sh Removed export statement for loading environment variables from a .env file.
.gitpod.yml Updated initialization task to remove the download of DDEV images.

🐇💻

Code refined, errors declined,

With each line, we've designed,

A smoother path, less prone to wrath,

In the realm of the coded, we've signed. 🖋️🎉


Tips

Chat with CodeRabbit Bot (@coderabbitai)

  • Mention @coderabbitai in any review comment for bot assistance.
  • Note: Review comments are made on code diffs or files, not on the PR overview.

Pause Incremental Reviews

  • Insert @coderabbitai: ignore in the PR description to halt the bot's ongoing reviews. Remove the line to resume.
  • Additionally, enter @coderabbitai pause to halt the bot's ongoing reviews as any issue or review comment. To
    resume reviews, enter @coderabbitai resume as any issue or review comment.

@ghost
Copy link

ghost commented Oct 1, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

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.

Review Status

Actionable comments generated: 0

Commits Files that changed from the base of the PR and between 1400d9f and 52213e5.
Files selected for processing (3)
  • .gitpod/drupal/drupalpod-setup.sh (13 hunks)
  • .gitpod/drupal/install-essential-packages.sh (2 hunks)
  • .gitpod/utils/set-base-environment.sh (1 hunks)
Files skipped from review due to trivial changes (1)
  • .gitpod/utils/set-base-environment.sh
Additional comments (Suppressed): 13
.gitpod/drupal/install-essential-packages.sh (2)
  • 5-5: The addition of set -eu -o pipefail is a good practice for shell scripts. It ensures that the script will exit immediately if any command fails, treats unset variables as an error and causes a pipeline to fail if any of the commands fail. This can help catch errors early and prevent them from causing further issues down the line.

  • 15-15: The -W flag has been added to the composer require command. This flag updates dependencies within the specified constraints. Ensure that this change does not cause any unexpected behavior with the installed packages.

- cd "${GITPOD_REPO_ROOT}" && time ddev . composer require --dev "drupal/core-dev":* "phpspec/prophecy-phpunit":^2 --no-install
+ cd "${GITPOD_REPO_ROOT}" && time ddev . composer require --dev "drupal/core-dev":* "phpspec/prophecy-phpunit":^2 -W --no-install
.gitpod/drupal/drupalpod-setup.sh (11)
  • 3-5: The condition for enabling debug mode has been changed. Previously, the script would enable debug mode if either DEBUG_SCRIPT or GITPOD_HEADLESS was set (not empty). Now, it enables debug mode if either of these variables is unset (empty). This change could lead to unexpected behavior if other parts of the system rely on the previous logic.
- if [ -n "$DEBUG_SCRIPT" ] || [ -n "$GITPOD_HEADLESS" ]; then
+ if [ "$DEBUG_SCRIPT" = '' ] || [ "$GITPOD_HEADLESS" = '' ]; then
  • 16-31: The initialization of variables has been improved by assigning an empty string to non-existent variables. This is a good practice as it prevents potential issues with unset variables later in the script.

  • 34-37: The condition for setting default setup during the prebuild process has been changed. Previously, the script would set the default setup if GITPOD_HEADLESS was set (not empty). Now, it sets the default setup if GITPOD_HEADLESS is unset (empty). This change could lead to unexpected behavior if other parts of the system rely on the previous logic.

- if [ -n "$GITPOD_HEADLESS" ]; then
+ if [ "$GITPOD_HEADLESS" = '' ]; then
  • 53-56: The comparison operator for checking the Drupal core version has been changed from == to =. In Bash, both == and = are valid for string comparison in conditional expressions, so this change should not affect the functionality.

  • 64-65: The condition for skipping setup has been changed. Previously, the script would skip setup if it already ran once and if DP_PROJECT_TYPE was set (not empty). Now, it skips setup if it already ran once and if DP_PROJECT_TYPE is unset (empty). This change could lead to unexpected behavior if other parts of the system rely on the previous logic.

- if [ ! -f "${GITPOD_REPO_ROOT}"/.drupalpod_initiated ] && [ -n "$DP_PROJECT_TYPE" ]; then
+ if [ ! -f "${GITPOD_REPO_ROOT}"/.drupalpod_initiated ] && [ "$DP_PROJECT_TYPE" = '' ]; then
  • 78-81: The comparison operator for checking the project type has been changed from == to =. In Bash, both == and = are valid for string comparison in conditional expressions, so this change should not affect the functionality.

  • 119-122: The condition for checking out a specific branch has been changed. Previously, the script would checkout a specific branch if DP_ISSUE_BRANCH was set (not empty). Now, it checks out a specific branch if DP_ISSUE_BRANCH is unset (empty). This change could lead to unexpected behavior if other parts of the system rely on the previous logic.

- if [ -n "$DP_ISSUE_BRANCH" ]; then
+ if [ "$DP_ISSUE_BRANCH" = '' ]; then
  • 128-130: The condition for checking out a module version has been changed. Previously, the script would checkout a module version if DP_MODULE_VERSION was set (not empty) and DP_PROJECT_TYPE was not equal to "project_core". Now, it checks out a module version if DP_MODULE_VERSION is unset (empty) and DP_PROJECT_TYPE is not equal to "project_core". This change could lead to unexpected behavior if other parts of the system rely on the previous logic.
- elif [ -n "$DP_MODULE_VERSION" ] && [ "$DP_PROJECT_TYPE" != "project_core" ]; then
+ elif [ "$DP_MODULE_VERSION" = '' ] && [ "$DP_PROJECT_TYPE" != "project_core" ]; then
  • 179-182: The condition for adding project source code as a symlink has been changed. Previously, the script would add the project source code as a symlink if DP_PROJECT_NAME was set (not empty). Now, it adds the project source code as a symlink if DP_PROJECT_NAME is unset (empty). This change could lead to unexpected behavior if other parts of the system rely on the previous logic.
- if [ -n "$DP_PROJECT_NAME" ]; then
+ if [ "$DP_PROJECT_NAME" = '' ]; then
  • 190-193: The comparison operator for checking the project type has been changed from == to =. In Bash, both == and = are valid for string comparison in conditional expressions, so this change should not affect the functionality.

  • 237-245: The condition for preparing special setup for Drupal projects with no composer.json file has been changed. Previously, the script would prepare the special setup if DP_PROJECT_NAME was set (not empty). Now, it prepares the special setup if DP_PROJECT_NAME is unset (empty). This

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.

Review Status

Actionable comments generated: 0

Commits Files that changed from the base of the PR and between 52213e5 and cc2b7fe.
Files selected for processing (1)
  • .gitpod.yml (1 hunks)
Files skipped from review due to trivial changes (1)
  • .gitpod.yml

Copy link
Collaborator

@rfay rfay left a comment

Choose a reason for hiding this comment

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

Looking better, but set -eu -o pipefail at the top of each script will be better. But may show things you don't want to see also.

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.

Review Status

Actionable comments generated: 6

Commits Files that changed from the base of the PR and between cc2b7fe and 3da9356.
Files selected for processing (1)
  • .gitpod/drupal/drupalpod-setup.sh (10 hunks)
Additional comments (Suppressed): 5
.gitpod/drupal/drupalpod-setup.sh (5)
  • 2-3: The use of set -eu -o pipefail is a good practice for stricter error handling in bash scripts. It ensures that the script will exit immediately if any command fails or if an unset variable is used.

  • 5-19: Initializing all variables with default values using ${VAR:=} syntax is a good practice to avoid potential issues with unset variables. This can help improve the robustness of the script.

  • 22-24: The use of set -x when either $DEBUG_SCRIPT or $GITPOD_HEADLESS is set is a good practice for debugging purposes. It will print each command that is executed to the terminal, which can be helpful for troubleshooting.

  • 26-26: The ddev start command is now being run directly instead of in the background. Ensure that this change does not impact the expected behavior of the script, as it may cause the script to wait until the ddev start command has completed before proceeding.

  • 148-159: The handling of patch files seems to have been updated. Ensure that this new implementation works as expected and does not introduce any issues.

Comment on lines 51 to 54
if [[ "$DP_CORE_VERSION" = 10* ]]; then
# admin_toolbar not compatible yet with Drupal 10
# unset DP_EXTRA_ADMIN_TOOLBAR
if [ "$DP_PROJECT_TYPE" != "project_core" ]; then
Copy link
Contributor

Choose a reason for hiding this comment

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

The condition check for Drupal 10 has been updated from == to =. In bash scripting, both == and = are used for string comparison. However, == is more commonly used and is more readable, so consider reverting this change.

- if [[ "$DP_CORE_VERSION" = 10* ]]; then
+ if [[ "$DP_CORE_VERSION" == 10* ]]; then

Comment on lines 76 to 79
if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
# Find if requested core version is dev or stable
d="$DP_CORE_VERSION"
case $d in
Copy link
Contributor

Choose a reason for hiding this comment

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

The condition check for project type has been updated from == to =. As mentioned above, consider reverting this change for readability.

- if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_core" ]; then

Comment on lines 187 to 190
if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
# Add a special path when working on core contributions
# (Without it, /web/modules/contrib is not found by website)
cd "${GITPOD_REPO_ROOT}" &&
Copy link
Contributor

Choose a reason for hiding this comment

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

Again, the condition check for project type has been updated from == to =. Consider reverting this change for readability.

- if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_core" ]; then

Comment on lines 237 to 241
if [ "$DP_PROJECT_TYPE" = "project_module" ]; then
PROJECT_TYPE=modules
elif [ "$DP_PROJECT_TYPE" == "project_theme" ]; then
elif [ "$DP_PROJECT_TYPE" = "project_theme" ]; then
PROJECT_TYPE=themes
fi
Copy link
Contributor

Choose a reason for hiding this comment

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

Once more, the condition checks for project type have been updated from == to =. Consider reverting these changes for readability.

- if [ "$DP_PROJECT_TYPE" = "project_module" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_module" ]; then

- elif [ "$DP_PROJECT_TYPE" = "project_theme" ]; then
+ elif [ "$DP_PROJECT_TYPE" == "project_theme" ]; then

Comment on lines 288 to 295
if [ "$DP_PROJECT_TYPE" = "project_module" ]; then
cd "${GITPOD_REPO_ROOT}" && ddev drush en -y "$DP_PROJECT_NAME"
fi

# Enable the requested theme
if [ "$DP_PROJECT_TYPE" == "project_theme" ]; then
if [ "$DP_PROJECT_TYPE" = "project_theme" ]; then
cd "${GITPOD_REPO_ROOT}" && ddev drush then -y "$DP_PROJECT_NAME"
cd "${GITPOD_REPO_ROOT}" && ddev drush config-set -y system.theme default "$DP_PROJECT_NAME"
Copy link
Contributor

Choose a reason for hiding this comment

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

Yet again, the condition checks for project type have been updated from == to =. Consider reverting these changes for readability.

- if [ "$DP_PROJECT_TYPE" = "project_module" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_module" ]; then

- if [ "$DP_PROJECT_TYPE" = "project_theme" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_theme" ]; then

Comment on lines 304 to 307
if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
# Patch the scaffold index.php and update.php files
# See https://www.drupal.org/project/drupal/issues/3188703
# See https://www.drupal.org/project/drupal/issues/1792310
Copy link
Contributor

Choose a reason for hiding this comment

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

Lastly, the condition check for project type has been updated from == to =. Consider reverting this change for readability.

- if [ "$DP_PROJECT_TYPE" = "project_core" ]; then
+ if [ "$DP_PROJECT_TYPE" == "project_core" ]; then

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.

Review Status

Actionable comments generated: 1

Commits Files that changed from the base of the PR and between 3da9356 and b023880.
Files selected for processing (1)
  • .gitpod/drupal/drupalpod-setup.sh (4 hunks)
Additional comments (Suppressed): 6
.gitpod/drupal/drupalpod-setup.sh (6)
  • 2-2: The use of set -eu -o pipefail is a good practice for error handling in bash scripts. It ensures that the script will exit if any command returns a non-zero status (due to an error), or if any part of a pipeline fails.

  • 5-19: Initializing variables with default values using ${VAR:=} syntax is a good practice. This ensures that even if the environment variable is not set, the script won't fail due to unbound variables.

  • 26-26: The change from running ddev start in the background to direct execution simplifies the script and removes the need for waiting for its completion. However, this might increase the total execution time of the script as it now waits for ddev start to complete before proceeding.

  • 149-151: Creating temporary composer files and then moving them to the root directory is a good way to ensure that the necessary files are created even if the composer create command fails for some reason. The removal of the temporary directory after copying the files is also a good practice to clean up unnecessary files.

  • 170-172: The use of the --no-plugins flag with ddev composer config commands is a good practice. It prevents any plugins from running during the command execution, which can help avoid potential issues caused by those plugins.

  • 258-259: The addition of the --no-install flag to the ddev . composer require command is a good practice. This flag tells Composer not to install the package immediately after requiring it, which can be useful in certain scenarios where you want to modify the composer.json file before running the installation.

Comment on lines 153 to 159
if [ -n "$DP_PATCH_FILE" ]; then
echo found patch file
echo Applying selected patch "$DP_PATCH_FILE"
cd "${WORK_DIR}" && curl "$DP_PATCH_FILE" | patch -p1
else
echo did not find
fi
Copy link
Contributor

Choose a reason for hiding this comment

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

The conditional check for the existence of a patch file and applying it if found is a good practice. However, the echo statements used for debugging purposes ("found patch file", "did not find") should be removed or replaced with more descriptive messages.

    echo found patch file
         echo Applying selected patch "$DP_PATCH_FILE"
         cd "${WORK_DIR}" && curl "$DP_PATCH_FILE" | patch -p1
    else
        echo did not find

to

    echo "Patch file found. Applying..."
    echo "Applying selected patch $DP_PATCH_FILE"
    cd "${WORK_DIR}" && curl "$DP_PATCH_FILE" | patch -p1
    else
        echo "No patch file found."

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.

Review Status

Actionable comments generated: 0

Commits Files that changed from the base of the PR and between b023880 and b8eab29.
Files selected for processing (1)
  • .gitpod/drupal/drupalpod-setup.sh (4 hunks)
Additional comments (Suppressed): 6
.gitpod/drupal/drupalpod-setup.sh (6)
  • 1-33: The new hunk introduces stricter error handling with set -eu -o pipefail and initializes variables with default values using ${VAR:=} syntax. This is a good practice as it ensures that the script will exit if any command fails or if an undefined variable is used, improving the robustness of the script. The loading of environment variables from .env file has been removed, which might affect the behavior of the script if these variables were being used elsewhere in the codebase. Please verify this change.

  • 26-26: The background execution of ddev start has been replaced with a direct call, removing the need for waiting for its completion. This simplifies the script and makes it easier to understand. However, please ensure that this does not introduce any race conditions or timing issues in the rest of the script.

  • 149-150: The creation of composer.json and composer.lock files now happens directly after the case statement, without waiting for ddev start to complete. This change simplifies the script and should not cause any issues as long as ddev start does not need to complete before these files are created.

  • 167-169: The --no-plugins flag has been added to the ddev composer config commands. This flag disables all plugins for the command, which can improve performance and prevent potential issues caused by plugins. However, please verify that no necessary plugins are disabled by this change.

  • 255-259: The --no-install flag has been added to the ddev . composer require commands. This flag prevents Composer from installing the package immediately, which can be useful if you want to modify some files before the installation. However, please verify that the packages are installed later in the script or that the installation is not necessary.

  • 270-270: The ddev drush si command has been prefixed with time, which will print the time it takes to execute the command. This can be useful for performance monitoring and optimization. However, please ensure that the output of the time command does not interfere with any other parts of the script that might be expecting the output of ddev drush si.

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.

Review Status

Actionable comments generated: 0

Commits Files that changed from the base of the PR and between b8eab29 and 40cb370.
Files selected for processing (1)
  • .gitpod/drupal/drupalpod-setup.sh (4 hunks)
Additional comments (Suppressed): 7
.gitpod/drupal/drupalpod-setup.sh (7)
  • 2-2: The use of set -eu -o pipefail is a good practice for stricter error handling in bash scripts. It ensures that the script will exit if any command returns a non-zero status (due to an error) or if any part of a pipeline fails.

  • 5-14: Initializing all variables with empty strings if they do not exist is a good practice to avoid potential issues with unset variables later in the script.

  • 26-26: The change from running ddev start in the background and waiting for its completion to directly calling it simplifies the script and makes it easier to understand. However, ensure that this does not affect other parts of the script that might rely on ddev start running in the background.

  • 149-150: The creation of required composer.json and composer.lock files has been moved outside the case statement. This change seems logical as these files are required regardless of the project type. However, verify that this does not affect the setup process for different project types.

  • 167-169: The addition of --no-plugins flag to the composer config commands improves performance by disabling plugins during the execution of the command. This is especially beneficial in a CI/CD environment where plugins are often not needed.

  • 253-256: The conditional check for $COMPOSER_DRUPAL_LENIENT and subsequent commands have been updated to include the --no-install flag. This prevents Composer from installing the package immediately, which can improve performance by delaying the installation until it's actually needed. However, make sure that the package is installed at some point later in the script.

  • 267-267: The use of ddev config --auto is a good practice as it automatically updates settings.php and generates settings.ddev.php. This reduces the need for manual configuration and makes the setup process more efficient.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 1, 2023

Rate Limit Exceeded

You have exceeded the limit for the number of files or commits that can be reviewed per hour. Please wait 3 minutes and 45 seconds before requesting another review.

To re-trigger a review, convert this PR to a draft and then mark it as ready for review again. Alternatively, you can push a new commit to this PR.

@shaal shaal merged commit 9f0e9bd into main Oct 1, 2023
@shaal shaal deleted the drupal101-fix-install-fail-scripts-early branch October 1, 2023 03:30
@shaal shaal mentioned this pull request Oct 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants