Skip to content
Snippets Groups Projects
Commit 168bc2ed authored by Nicole Cordes's avatar Nicole Cordes Committed by Helmut Hummel
Browse files

[TASK] Enable EM offline mode when using composer

If the composer mode is activated, the Extension Manager is set to
offline mode. Downloading extensions from TER and uploading extension
files is disabled.

Resolves: #70605
Releases: master
Change-Id: Idb116d7b4b0b9cafa625116e9caadd4c7c37b922
Reviewed-on: http://review.typo3.org/44025


Reviewed-by: default avatarStephan Großberndt <stephan@grossberndt.de>
Reviewed-by: default avatarMichael Oehlhof <typo3@oehlhof.de>
Tested-by: default avatarMichael Oehlhof <typo3@oehlhof.de>
Reviewed-by: default avatarDaniel Maier <dani-maier@gmx.de>
Tested-by: default avatarDaniel Maier <dani-maier@gmx.de>
Reviewed-by: default avatarHelmut Hummel <helmut.hummel@typo3.org>
Tested-by: default avatarHelmut Hummel <helmut.hummel@typo3.org>
parent 26925805
Branches
Tags
No related merge requests found
......@@ -102,6 +102,9 @@ class ListController extends AbstractController
if ($this->configurationUtility->getCurrentConfiguration('extensionmanager')['offlineMode']['value']) {
$this->settings['offlineMode'] = true;
}
if (Bootstrap::usesComposerClassLoading()) {
$this->settings['composerMode'] = true;
}
}
/**
......
......@@ -14,6 +14,7 @@ namespace TYPO3\CMS\Extensionmanager\Controller;
* The TYPO3 project - inspiring people to share!
*/
use TYPO3\CMS\Core\Core\Bootstrap;
use TYPO3\CMS\Core\Messaging\FlashMessage;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extensionmanager\Exception\DependencyConfigurationNotFoundException;
......@@ -115,6 +116,12 @@ class UploadExtensionFileController extends AbstractController
*/
public function formAction()
{
if (Bootstrap::usesComposerClassLoading()) {
throw new ExtensionManagerException(
'Composer mode is active. You are not allowed to upload any extension file.',
1444725828821
);
}
}
/**
......@@ -126,6 +133,12 @@ class UploadExtensionFileController extends AbstractController
*/
public function extractAction($overwrite = false)
{
if (Bootstrap::usesComposerClassLoading()) {
throw new ExtensionManagerException(
'Composer mode is active. You are not allowed to upload any extension file.',
1444725853814
);
}
$file = $_FILES['tx_extensionmanager_tools_extensionmanagerextensionmanager'];
$fileName = pathinfo($file['name']['extensionFile'], PATHINFO_BASENAME);
try {
......
......@@ -14,6 +14,7 @@ namespace TYPO3\CMS\Extensionmanager\Utility\Connection;
* The TYPO3 project - inspiring people to share!
*/
use TYPO3\CMS\Core\Core\Bootstrap;
use TYPO3\CMS\Extensionmanager\Exception\ExtensionManagerException;
/**
......@@ -53,7 +54,10 @@ class TerUtility
*/
public function fetchExtension($extensionKey, $version, $expectedMd5, $mirrorUrl)
{
if (!empty($this->configurationUtility->getCurrentConfiguration('extensionmanager')['offlineMode']['value'])) {
if (
!empty($this->configurationUtility->getCurrentConfiguration('extensionmanager')['offlineMode']['value'])
|| Bootstrap::usesComposerClassLoading()
) {
throw new ExtensionManagerException('Extension Manager is in offline mode. No TER connection available.', 1437078620);
}
$extensionPath = \TYPO3\CMS\Core\Utility\GeneralUtility::strtolower($extensionKey);
......
......@@ -16,7 +16,7 @@
<source>Composer mode</source>
</trans-unit>
<trans-unit id="composerMode.message">
<source>The system is set to composer mode. Please notice that it might break if you try to add an extension with the Extension Manager. You should rather use composer to add further extensions to your system.</source>
<source>The system is set to composer mode. Please notice that it is not possible to add an extension with the Extension Manager. You have to use composer to add further extensions to your system.</source>
</trans-unit>
<trans-unit id="installedExtensions">
<source>Installed Extensions</source>
......
......@@ -19,14 +19,18 @@
<div class="typo3-docheader-functions">
<f:be.menus.actionMenu>
<f:be.menus.actionMenuItem label="{f:translate(key: 'installedExtensions')}" controller="List" action="index" />
<f:if condition="{settings.offlineMode}">
<f:else>
<f:be.menus.actionMenuItem label="{f:translate(key: 'getExtensions')}" controller="List" action="ter" />
<f:be.menus.actionMenuItem label="{f:translate(key: 'distributions')}" controller="List" action="distributions" />
<f:if condition="{actionName} == 'showAllVersions'">
<f:be.menus.actionMenuItem label="{f:translate(key: 'showAllVersions')} {extensionKey}" controller="List" action="showAllVersions" />
<f:if condition="{settings.offlineMode} == 0">
<f:then>
<f:if condition="{settings.composerMode} == 0">
<f:then>
<f:be.menus.actionMenuItem label="{f:translate(key: 'getExtensions')}" controller="List" action="ter" />
<f:be.menus.actionMenuItem label="{f:translate(key: 'distributions')}" controller="List" action="distributions" />
<f:if condition="{actionName} == 'showAllVersions'">
<f:be.menus.actionMenuItem label="{f:translate(key: 'showAllVersions')} {extensionKey}" controller="List" action="showAllVersions" />
</f:if>
</f:then>
</f:if>
</f:else>
</f:then>
</f:if>
</f:be.menus.actionMenu>
</div>
......
......@@ -4,11 +4,15 @@
<f:layout name="main" />
<f:section name="docheader-buttons">
<div id="upload-button-wrap">
<a href="{f:uri.action(action:'form',controller:'UploadExtensionFile')}" title="{f:translate(key:'extensionList.uploadExtension')}">
<core:icon identifier="actions-edit-upload" />
</a>
</div>
<f:if condition="{settings.composerMode} == 0">
<f:then>
<div id="upload-button-wrap">
<a href="{f:uri.action(action:'form',controller:'UploadExtensionFile')}" title="{f:translate(key:'extensionList.uploadExtension')}">
<core:icon identifier="actions-edit-upload" />
</a>
</div>
</f:then>
</f:if>
</f:section>
<f:section name="module-headline">
......
......@@ -3,11 +3,15 @@
<f:layout name="main"/>
<f:section name="docheader-buttons">
<div id="upload-button-wrap">
<a href="{f:uri.action(action:'form',controller:'UploadExtensionFile')}" title="{f:translate(key:'extensionList.uploadExtension')}">
<core:icon identifier="actions-edit-upload" />
</a>
</div>
<f:if condition="{settings.composerMode} == 0">
<f:then>
<div id="upload-button-wrap">
<a href="{f:uri.action(action:'form',controller:'UploadExtensionFile')}" title="{f:translate(key:'extensionList.uploadExtension')}">
<core:icon identifier="actions-edit-upload" />
</a>
</div>
</f:then>
</f:if>
</f:section>
<f:section name="module-headline">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment