This repository was archived by the owner on Jun 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathService.php
67 lines (55 loc) · 2.34 KB
/
Service.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php namespace nyx\notify;
// External dependencies
use Illuminate\Contracts\Foundation\Application;
/**
* Notify Service Provider
*
* @package Nyx\Notify
* @version 0.1.0
* @author Michal Chojnacki <[email protected]>
* @copyright 2012-2017 Nyx Dev Team
* @link https://github.com/unyx/nyx
* @todo Make 'mailer' subservice registration optional? Drop the "mailer" name for the FQN of the interface?
* @todo Queue support for the Mailer?
*/
class Service extends \Illuminate\Support\ServiceProvider
{
/**
* {@inheritDoc}
*/
public function register()
{
$this->app->singleton(TransportManager::class, function (Application $app) {
return new TransportManager($app);
});
$this->app->alias(TransportManager::class, interfaces\Dispatcher::class);
// Mailer (currently - see the to-do) gets made available as a standalone subservice. Subject to change.
$this->registerMailer();
}
/**
* Registers the Mail subcomponent as a standalone service for situations where Messages may need to get sent
* bypassing the way Notifications are otherwise handled.
*/
protected function registerMailer()
{
$this->app->singleton('mailer', function (Application $app) {
$mailer = new transports\mail\Mailer($app->make('mailer.transports')->driver(), $app->make('view'));
// Set the 'always from' and 'always to' options on the Mailer if they have been configured.
$config = $app->make('config')->get('mail');
if (isset($config['from'])) {
$mailer->setAlwaysFrom($config['from']);
}
if (isset($config['to'])) {
$mailer->setAlwaysTo($config['to']);
}
return $mailer;
});
// Make the humanized name an alias for the Mailer Interface's FQN so both can be used interchangeably.
$this->app->alias('mailer', transports\mail\interfaces\Mailer::class);
// We are going to need to instantiate the Mailer with a proper Driver.
// @todo Drop the DriverManager in favour of handling the logic in this very Service Provider itself?
$this->app->singleton('mailer.transports', function (Application $app) {
return (new transports\mail\DriverManager($app));
});
}
}