Skip to content

Commit 140287c

Browse files
committed
fix few issues
1 parent 518e22e commit 140287c

File tree

4 files changed

+34
-13
lines changed

4 files changed

+34
-13
lines changed

README.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,30 @@ With `cf-helper-php` you can say that you are in development and app will do the
8484

8585
Simulate CloudFoundry environment
8686
---------------------------------
87+
You can half simulate a CloudFoudry environment by using a `manifest.yml`, your environment variable from manifest will be set in `$_ENV`.
88+
You can also add simulate service by adding a key called `serviceSimulate` in your `manifest.yml`, example:
89+
90+
```yml
91+
#manifest.yml
92+
---
93+
#manifest
94+
applications:
95+
- name: test
96+
memory: 1G
97+
env:
98+
MYAPP_APP_DIR: /home/vcap/app
99+
MYAPP_LOGS_DIR: /logs_dir
100+
serviceSimulate:
101+
DATABASE: {"host": "localhost", "username": "jojo", "password": "toto", "port": "3306"} # a service database will be accessible, prefer writing with {'key": 'value'} to simplify your cups command
102+
```
87103
88-
104+
To run CloudFoundry simulation simply do:
105+
```php
106+
<?php
107+
$cfHelper->simulateCloudFoundry(); //it use manifest.yml which is in the same folder where this script is called
108+
//to set another manifest.yml:
109+
$cfHelper->simulateCloudFoundry("your_manifest.yml);
110+
```
89111

90112

91113

src/orange/cfhelper/configuration/PhpIniConfigurator.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,9 @@ public function loadConfig()
8585
public function loadIniConfig()
8686
{
8787
$arrayValues = array();
88-
try {
89-
90-
$servicePhpIni = $this->serviceManager->getService(PhpIniConfigurator::$servicePhpIniName . '-' . $this->applicationInfo->getName());
88+
$servicePhpIni = $this->serviceManager->getService(PhpIniConfigurator::$servicePhpIniName . '-' . $this->applicationInfo->getName());
89+
if ($servicePhpIni != null) {
9190
$arrayValues = $servicePhpIni->getValues();
92-
} catch (\Exception $e) {
93-
9491
}
9592
if (is_file(__DIR__ . '/../../../../../../../composer.json')) {
9693
$composerJson = json_decode(file_get_contents(__DIR__ . '/../../../../../../../composer.json'), true);

src/orange/cfhelper/services/PopulatorCloudFoundry.php

+8-6
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,18 @@ class PopulatorCloudFoundry extends Populator
3737
function __construct()
3838
{
3939
parent::__construct();
40-
$this->vcapServices = json_decode($_ENV['VCAP_SERVICES'], true);
41-
if (empty($this->vcapServices)) {
42-
$this->vcapServices = array();
43-
}
4440
}
4541

4642
/**
4743
* @param $name
4844
* @return null|Service
49-
* @throws \Exception
5045
*/
5146
public function getService($name)
5247
{
48+
$this->vcapServices = json_decode($_ENV['VCAP_SERVICES'], true);
49+
if (empty($this->vcapServices)) {
50+
$this->vcapServices = array();
51+
}
5352
if (!empty($this->services[$name])) {
5453
return $this->services[$name];
5554
}
@@ -61,7 +60,7 @@ public function getService($name)
6160
if (!empty($service)) {
6261
return $service;
6362
}
64-
throw new \Exception("Service $name cannot be found.");
63+
return null;
6564
}
6665

6766
/**
@@ -101,6 +100,9 @@ private function getServiceInside($name)
101100
{
102101
foreach ($this->vcapServices as $serviceFirstName => $services) {
103102
foreach ($services as $service) {
103+
if (empty($service['name'])) {
104+
continue;
105+
}
104106
if (preg_match('#^' . $name . '$#i', $service['name'])) {
105107
return $this->makeService($service);
106108
}

src/orange/cfhelper/simulator/CloudFoundrySimulator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static function loadService($manifestYml)
9595
"tags" => array(),
9696
"credentials" => $serviceCredentials
9797
);
98-
$serviceUserProvided = array("user-provided" => $service);
98+
$serviceUserProvided = array(array("user-provided" => $service));
9999
CloudFoundrySimulator::loadVarEnv(array(self::KEY_SERVICE => json_encode($serviceUserProvided)));
100100
}
101101
}

0 commit comments

Comments
 (0)