Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,27 @@ public function onProduction() : bool
return $this->getValue('BRANCH') == $prodBranch;
}

/**
* Determines if the current environment has a live domain added to it
*
* @return bool
* True if the environment has at least one domain that is not ending in platformsh.site, false otherwise.
* It will also return false if not running on Platform.sh or in the build phase.
*/
public function isDomainAdded(): bool
{
if (!$this->inRuntime()) {
return false;
}

foreach ($this->routes() as $route) {
if (mb_strpos($route['url'], 'platformsh.site') === false) {
return true;
}
}

return false;
}
/**
* Adds a credential formatter to the configuration.
*
Expand Down