Completed
Pull Request — master (#163)
by
unknown
01:18
created

GoogleCalendarServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Spatie\GoogleCalendar;
4
5
use Illuminate\Support\ServiceProvider;
6
use Spatie\GoogleCalendar\Exceptions\InvalidConfiguration;
7
8
class GoogleCalendarServiceProvider extends ServiceProvider
9
{
10
    public function boot()
11
    {
12
        $this->publishes([
13
            __DIR__.'/../config/google-calendar.php' => config_path('google-calendar.php'),
14
        ], 'config');
15
    }
16
17
    public function register()
18
    {
19
        $this->mergeConfigFrom(__DIR__.'/../config/google-calendar.php', 'google-calendar');
20
21
        $this->app->bind(GoogleCalendar::class, function () {
22
            $config = config('google-calendar');
23
24
            $this->guardAgainstInvalidConfiguration($config);
25
26
            return GoogleCalendarFactory::createForCalendarId($config['calendar_id']);
27
        });
28
29
        $this->app->alias(GoogleCalendar::class, 'laravel-google-calendar');
30
    }
31
32
    protected function guardAgainstInvalidConfiguration(array $config = null)
33
    {
34
        if (empty($config['calendar_id'])) {
35
            throw InvalidConfiguration::calendarIdNotSpecified();
36
        }
37
38
        $authProfile = $config['default_auth_profile'];
39
40
        if ($authProfile === 'service_account') {
41
            $this->validateServiceAccountConfigSettings($config);
42
            return;
43
        }
44
45
        if ($authProfile === 'oauth') {
46
            $this->validateOAuthConfigSettings($config);
47
            return;
48
        }
49
50
        throw InvalidConfiguration::invalidAuthenticationProfile($authProfile);
51
    }
52
53
    protected function validateServiceAccountConfigSettings(array $config = null)
54
    {
55
        $credentials = $config['auth_profiles']['service_account']['credentials_json'];
56
57
        $this->validateConfigSetting($credentials);
58
    }
59
60
    protected function validateOAuthConfigSettings(array $config = null)
61
    {
62
        $credentials = $config['auth_profiles']['oauth']['credentials_json'];
63
64
        $this->validateConfigSetting($credentials);
65
66
        $token = $config['auth_profiles']['oauth']['token_json'];
67
68
        $this->validateConfigSetting($token);
69
    }
70
71
    protected function validateConfigSetting(string $setting)
72
    {
73
        if (! is_array($setting) && ! is_string($setting)) {
74
            throw InvalidConfiguration::credentialsTypeWrong($setting);
75
        }
76
77
        if (is_string($setting) && ! file_exists($setting)) {
78
            throw InvalidConfiguration::credentialsJsonDoesNotExist($setting);
79
        }
80
    }
81
}
82