Skip to content
Snippets Groups Projects
Commit 8e0ebc88 authored by Demian Katz's avatar Demian Katz
Browse files

Modernize SMS service.

- Use interface name as service name.
parent 2882f712
Branches
Tags
No related merge requests found
...@@ -342,7 +342,7 @@ $config = [ ...@@ -342,7 +342,7 @@ $config = [
'VuFind\Service\ReCaptcha' => 'VuFind\Service\ReCaptchaFactory', 'VuFind\Service\ReCaptcha' => 'VuFind\Service\ReCaptchaFactory',
'VuFind\Session\PluginManager' => 'VuFind\ServiceManager\AbstractPluginManagerFactory', 'VuFind\Session\PluginManager' => 'VuFind\ServiceManager\AbstractPluginManagerFactory',
'VuFind\Session\Settings' => 'Zend\ServiceManager\Factory\InvokableFactory', 'VuFind\Session\Settings' => 'Zend\ServiceManager\Factory\InvokableFactory',
'VuFind\SMS' => 'VuFind\SMS\Factory', 'VuFind\SMS\SMSInterface' => 'VuFind\SMS\Factory',
'VuFind\Solr\Writer' => 'VuFind\Solr\WriterFactory', 'VuFind\Solr\Writer' => 'VuFind\Solr\WriterFactory',
'VuFind\Tags' => 'VuFind\Service\Factory::getTags', 'VuFind\Tags' => 'VuFind\Service\Factory::getTags',
'VuFind\Translator' => 'VuFind\Service\Factory::getTranslator', 'VuFind\Translator' => 'VuFind\Service\Factory::getTranslator',
...@@ -413,6 +413,7 @@ $config = [ ...@@ -413,6 +413,7 @@ $config = [
'VuFind\SearchTabsHelper' => 'VuFind\Search\SearchTabsHelper', 'VuFind\SearchTabsHelper' => 'VuFind\Search\SearchTabsHelper',
'VuFind\SessionManager' => 'Zend\Session\SessionManager', 'VuFind\SessionManager' => 'Zend\Session\SessionManager',
'VuFind\SessionPluginManager' => 'VuFind\Session\PluginManager', 'VuFind\SessionPluginManager' => 'VuFind\Session\PluginManager',
'VuFind\SMS' => 'VuFind\SMS\SMSInterface',
'VuFind\YamlReader' => 'VuFind\Config\YamlReader', 'VuFind\YamlReader' => 'VuFind\Config\YamlReader',
], ],
], ],
......
...@@ -472,7 +472,7 @@ class AbstractRecord extends AbstractBase ...@@ -472,7 +472,7 @@ class AbstractRecord extends AbstractBase
$driver = $this->loadRecord(); $driver = $this->loadRecord();
// Load the SMS carrier list: // Load the SMS carrier list:
$sms = $this->serviceLocator->get('VuFind\SMS'); $sms = $this->serviceLocator->get('VuFind\SMS\SMSInterface');
$view = $this->createViewModel(); $view = $this->createViewModel();
$view->carriers = $sms->getCarriers(); $view->carriers = $sms->getCarriers();
$view->validation = $sms->getValidationType(); $view->validation = $sms->getValidationType();
......
...@@ -46,19 +46,20 @@ class Factory implements FactoryInterface ...@@ -46,19 +46,20 @@ class Factory implements FactoryInterface
/** /**
* Create service * Create service
* *
* @param ContainerInterface $sm Service manager * @param ContainerInterface $container Service manager
* @param string $name Requested service name (unused) * @param string $name Requested service name (unused)
* @param array $options Extra options (unused) * @param array $options Extra options (unused)
* *
* @return SMSInterface * @return SMSInterface
* *
* @SuppressWarnings(PHPMD.UnusedFormalParameter) * @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/ */
public function __invoke(ContainerInterface $sm, $name, array $options = null) public function __invoke(ContainerInterface $container, $name,
{ array $options = null
) {
// Load configurations: // Load configurations:
$mainConfig = $sm->get('VuFind\Config\PluginManager')->get('config'); $mainConfig = $container->get('VuFind\Config\PluginManager')->get('config');
$smsConfig = $sm->get('VuFind\Config\PluginManager')->get('sms'); $smsConfig = $container->get('VuFind\Config\PluginManager')->get('sms');
// Determine SMS type: // Determine SMS type:
$type = isset($smsConfig->General->smsType) $type = isset($smsConfig->General->smsType)
...@@ -67,10 +68,10 @@ class Factory implements FactoryInterface ...@@ -67,10 +68,10 @@ class Factory implements FactoryInterface
// Initialize object based on requested type: // Initialize object based on requested type:
switch (strtolower($type)) { switch (strtolower($type)) {
case 'clickatell': case 'clickatell':
$client = $sm->get('VuFindHttp\HttpService')->createClient(); $client = $container->get('VuFindHttp\HttpService')->createClient();
return new Clickatell($smsConfig, ['client' => $client]); return new Clickatell($smsConfig, ['client' => $client]);
case 'mailer': case 'mailer':
$options = ['mailer' => $sm->get('VuFind\Mailer\Mailer')]; $options = ['mailer' => $container->get('VuFind\Mailer\Mailer')];
if (isset($mainConfig->Site->email)) { if (isset($mainConfig->Site->email)) {
$options['defaultFrom'] = $mainConfig->Site->email; $options['defaultFrom'] = $mainConfig->Site->email;
} }
......
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