1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* This file is part of EC-CUBE |
4
|
|
|
* |
5
|
|
|
* Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved. |
6
|
|
|
* |
7
|
|
|
* http://www.lockon.co.jp/ |
8
|
|
|
* |
9
|
|
|
* This program is free software; you can redistribute it and/or |
10
|
|
|
* modify it under the terms of the GNU General Public License |
11
|
|
|
* as published by the Free Software Foundation; either version 2 |
12
|
|
|
* of the License, or (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* This program is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU General Public License |
20
|
|
|
* along with this program; if not, write to the Free Software |
21
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
22
|
|
|
*/ |
23
|
|
|
namespace Eccube\ServiceProvider; |
24
|
|
|
|
25
|
|
|
use Eccube\Service\Composer\ComposerApiService; |
26
|
|
|
use Eccube\Service\Composer\ComposerProcessService; |
27
|
|
|
use Pimple\Container; |
28
|
|
|
use Pimple\ServiceProviderInterface; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Class ComposerServiceProvider |
32
|
|
|
* @package Eccube\ServiceProvider |
33
|
|
|
*/ |
34
|
|
|
class ComposerServiceProvider implements ServiceProviderInterface |
35
|
|
|
{ |
36
|
|
|
/** |
37
|
|
|
* @param Container $app |
38
|
|
|
*/ |
39
|
|
|
public function register(Container $app) |
40
|
|
|
{ |
41
|
|
|
$app['eccube.service.composer'] = function () use ($app) { |
42
|
|
|
/**@var \Eccube\Service\SystemService $systemService */ |
43
|
|
|
$systemService = $app['eccube.service.system']; |
44
|
|
|
$composerMemory = $app['config']['composer_memory_limit']; |
45
|
|
|
$memoryLimit = $systemService->getMemoryLimit(); |
46
|
|
|
// Check memory and can set memory for composer api |
47
|
|
|
if ($systemService->canSetMemoryLimit($composerMemory.'M') || $memoryLimit == -1 || $memoryLimit >= $composerMemory) { |
48
|
|
|
return new ComposerApiService($app['config']); |
49
|
|
|
} else { |
50
|
|
|
return new ComposerProcessService($app['config'], $app['orm.em'], $systemService->getPHP()); |
|
|
|
|
51
|
|
|
} |
52
|
|
|
}; |
53
|
|
|
} |
54
|
|
|
} |
55
|
|
|
|