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

Reverted autoloader patch #2791

Merged
merged 1 commit into from
Dec 7, 2022
Merged

Reverted autoloader patch #2791

merged 1 commit into from
Dec 7, 2022

Conversation

sreichel
Copy link
Contributor

@sreichel sreichel commented Dec 7, 2022

Description (*)

Related Pull Requests

  1. See Moved phpseclib, mcrypt_compat, Cm_RedisSession, Cm_Cache_Backend_Redis and Pelago_Emogrifier to composer #2411
  2. Needs Fixed baseline, ref #2785 #2789

Contribution checklist (*)

  • Pull request has a meaningful description of its purpose
  • All commits are accompanied by meaningful commit messages
  • All automated tests passed successfully (all builds are green)
  • Add yourself to contributors list

@github-actions github-actions bot added the Mage.php Relates to app/Mage.php label Dec 7, 2022
@fballiano fballiano merged commit 00ee280 into 1.9.4.x Dec 7, 2022
@fballiano fballiano deleted the remove-patched-lines branch December 7, 2022 09:28
fballiano pushed a commit to fballiano/openmage that referenced this pull request Dec 7, 2022
@tmotyl
Copy link
Contributor

tmotyl commented Dec 7, 2022

please add more context here

@sreichel
Copy link
Contributor Author

sreichel commented Dec 7, 2022

@tmotyl These lines are added by composer install and should not be there.

@elidrissidev
Copy link
Member

Since a lot of third-party code was removed from the repository, why not add this back? If I'm understanding it right, all the installation methods need composer autoloader now. Even the release builder is bundling the vendor folder which requires the vendor/autoload.php to be required.

@sreichel
Copy link
Contributor Author

@elidrissidev i think its required when you have a custom vendor path ...

@elidrissidev
Copy link
Member

The code already checks the file in root folder and one level above (assuming you installed OM with composer and set the installation path to htdocs for example) which are enough IMO, no?

@sreichel
Copy link
Contributor Author

No time to test it now ...

... when i set "vendor-dir": "test123" in composer.json the added code looks like ...

/** AUTOLOADER PATCH **/
if (file_exists($autoloaderPath = BP . DS . 'test123/autoload.php') ||
    file_exists($autoloaderPath = BP . DS . '../test123/autoload.php')
) {
    require $autoloaderPath;
}
/** AUTOLOADER PATCH **/

Will review later.

@elidrissidev
Copy link
Member

Yeah I know but what are the odds, almost all PHP projects use "vendor" as folder name.

@sreichel
Copy link
Contributor Author

I know its annoying to not-commit everytime ... but do we realy need to change it?

@fballiano
Copy link
Contributor

I raised this same question before and the problem was with the custom vendor.

it's not that annoying not to commit it, but the problem is that it can get commited by mistake and if it's a big commit it may go unnoticed.

I would prefer to have it in the repo so that I wouldn't need to waste any second to check before commit.

If the composer-plugin would rewrite the patch at every install it would solve our problem.

@Flyingmana
Copy link
Member

there are ways to make this change ignored by git, might be useful during development on OpenMage, as long as one doesnt need to change this specific file.
https://stackoverflow.com/questions/10755655/git-ignore-tracked-files

also, as we now require some parts as composer dependencies and the release builds contain composer installed modules anyway, it probably does not make a difference anymore if its added or not.

@fballiano
Copy link
Contributor

@Flyingmana would it be possible for the composer plugin to just rewrite the patch at every install instead of just checkin if the file it's already patched?

@Flyingmana
Copy link
Member

@Flyingmana would it be possible for the composer plugin to just rewrite the patch at every install instead of just checkin if the file it's already patched?

should not be hard to do https://github.com/Cotya/magento-composer-installer/blob/main/src/MagentoHackathon/Composer/Magento/Patcher/Bootstrap.php#L127

might do it somewhen during the week and likely extend the config so its configurable which patch behavior is used.

@elidrissidev
Copy link
Member

Could we push the patch to app/etc/includes/autoload.php and then ignore that file in git? Files in app/etc/includes/*.php are already getting included in Mage.php, and it'll also make it easier to rewrite the patch if the vendor path changes.

@colinmollenhour
Copy link
Member

I've found that with this removed it is a hassle for example if I create a clean install and then use "git stash" now my store is broken and I have to run composer again.. Just having it always present seems a whole lot simpler.

If the only objection is that someone might have a different vendor folder name, does anyone actually know of any Magento users who did that, and was there a legitimate reason for it?

@fballiano
Copy link
Contributor

it happened maaany time that we (mosly me actually hehehe) committed that patch by mistake, it makes our life very difficult.

maybe there was also somebody with a vendor folder outside the document root? I don't remember.

I'll create a PR to introduce it and let's see what happens there?

@fballiano
Copy link
Contributor

@elidrissidev what if we add it in the default place and if somebody really needs they can add their own version to app/etc/includes?

@colinmollenhour
Copy link
Member

colinmollenhour commented Apr 24, 2023

One possibility would be to introduce an environment variable like "COMPOSER_VENDOR_PATH" so it could be changed that way while the default would be to assume the BP.

/** AUTOLOADER PATCH **/
if (file_exists($autoloaderPath = (getenv('COMPOSER_VENDOR_PATH') ?: BP) . DS . 'vendor/autoload.php')) {
    require_once $autoloaderPath;
}
/** AUTOLOADER PATCH **/

@fballiano
Copy link
Contributor

fballiano commented Apr 24, 2023

I think it would have to be

/** AUTOLOADER PATCH **/
if (file_exists($autoloaderPath = (getenv('COMPOSER_VENDOR_PATH') ?: BP . DS .  'vendor') . DS . 'autoload.php')) {
    require_once $autoloaderPath;
}
/** AUTOLOADER PATCH **/

because the vendor word itself could be overridden

@sreichel
Copy link
Contributor Author

now my store is broken and I have to run composer again.. Just having it always present seems a whole lot simpler.

Isnt composer install a "default" command during deployment process?

@colinmollenhour
Copy link
Member

now my store is broken and I have to run composer again.. Just having it always present seems a whole lot simpler.

Isnt composer install a "default" command during deployment process?

Yes, but when doing development on the core code after you clone the git repo and run the installation, now if you want to commit changes or do a git stash or git reset --hard HEAD or various other git operations you have to constantly dance around the changes to app/Mage.php to avoid inadvertently committing them and/or run composer install to keep the environment working. This is the kind of thing .gitignore and config files or environment variables are for.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Mage.php Relates to app/Mage.php
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants