Get rid of static instantiation of JSON API

[MAILPOET-1689]
This commit is contained in:
Rostislav Wolny
2018-12-12 11:02:31 +01:00
parent ece5e9a9d1
commit de5385ed03
3 changed files with 2 additions and 31 deletions

View File

@ -3,41 +3,17 @@
namespace MailPoet\API;
use MailPoet\DI\ContainerWrapper;
use MailPoetVendor\Psr\Container\ContainerInterface;
use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
if(!defined('ABSPATH')) exit;
class API {
/** @var ContainerInterface */
private static $container;
static function injectContainer(ContainerInterface $container) {
self::$container = $container;
}
static function JSON() {
return self::$container->get(JSON\API::class);
}
static function MP($version) {
self::ensureContainerIsLoaded();
$api_class = sprintf('%s\MP\%s\API', __NAMESPACE__, $version);
try {
return self::$container->get($api_class);
return ContainerWrapper::getInstance()->get($api_class);
} catch (ServiceNotFoundException $e) {
throw new \Exception(__('Invalid API version.', 'mailpoet'));
}
}
/**
* MP API is used by third party plugins so we have to ensure that container is loaded
* @see https://kb.mailpoet.com/article/195-add-subscribers-through-your-own-form-or-plugin
*/
private static function ensureContainerIsLoaded() {
if(!self::$container) {
self::$container = ContainerWrapper::getInstance();
}
}
}