Skip to content

Commit d673ddc

Browse files
committed
Fix instanciation of service providers for either L5.1 or 5.3+
1 parent bec20fc commit d673ddc

File tree

2 files changed

+66
-44
lines changed

2 files changed

+66
-44
lines changed
+13-44
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,25 @@
11
<?php namespace GeneaLabs\LaravelMixpanel\Providers;
22

3-
use GeneaLabs\LaravelMixpanel\LaravelMixpanel;
4-
use GeneaLabs\LaravelMixpanel\Listeners\LaravelMixpanelEventHandler;
5-
use GeneaLabs\LaravelMixpanel\Listeners\LaravelMixpanelUserObserver;
6-
use GeneaLabs\LaravelMixpanel\Console\Commands\Publish;
7-
use GeneaLabs\LaravelMixpanel\Events\MixpanelEvent;
8-
use GeneaLabs\LaravelMixpanel\Listeners\MixpanelEvent as MixpanelEventListener;
9-
use Illuminate\Contracts\View\View;
10-
use Illuminate\HTTP\Request;
11-
use Illuminate\Support\ServiceProvider;
12-
use Illuminate\Foundation\Support\Providers\EventServiceProvider;
133
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
144

15-
class LaravelMixpanelService extends EventServiceProvider
16-
{
17-
protected $defer = false;
18-
protected $listen = [
19-
MixpanelEvent::class => [
20-
MixpanelEventListener::class,
21-
],
22-
];
23-
24-
public function boot(DispatcherContract $events)
5+
if (starts_with(app()->version(), '5.1.')) {
6+
class LaravelMixpanelService extends MixpanelBaseService
257
{
26-
parent::boot($events);
27-
28-
include __DIR__ . '/../../routes/api.php';
8+
public function boot(DispatcherContract $events)
9+
{
10+
parent::boot($events);
2911

30-
$this->loadViewsFrom(__DIR__ . '/../../resources/views', 'genealabs-laravel-mixpanel');
31-
$this->publishes([
32-
__DIR__ . '/../../public' => public_path(),
33-
], 'assets');
34-
35-
if (config('services.mixpanel.enable-default-tracking')) {
36-
$authModel = config('auth.providers.users.model') ?? config('auth.model');
37-
$this->app->make($authModel)->observe(new LaravelMixpanelUserObserver());
38-
app('events')->subscribe(new LaravelMixpanelEventHandler());
12+
$this->initialize();
3913
}
4014
}
41-
42-
public function register()
15+
} else {
16+
class LaravelMixpanelService extends MixpanelBaseService
4317
{
44-
$this->mergeConfigFrom(__DIR__ . '/../../config/services.php', 'services');
45-
$this->commands(Publish::class);
46-
$this->app->singleton('mixpanel', LaravelMixpanel::class);
47-
}
18+
public function boot()
19+
{
20+
parent::boot();
4821

49-
/**
50-
* @return array
51-
*/
52-
public function provides()
53-
{
54-
return ['genealabs-laravel-mixpanel'];
22+
$this->initialize();
23+
}
5524
}
5625
}

src/Providers/MixpanelBaseService.php

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php namespace GeneaLabs\LaravelMixpanel\Providers;
2+
3+
use GeneaLabs\LaravelMixpanel\LaravelMixpanel;
4+
use GeneaLabs\LaravelMixpanel\Listeners\LaravelMixpanelEventHandler;
5+
use GeneaLabs\LaravelMixpanel\Listeners\LaravelMixpanelUserObserver;
6+
use GeneaLabs\LaravelMixpanel\Console\Commands\Publish;
7+
use GeneaLabs\LaravelMixpanel\Events\MixpanelEvent;
8+
use GeneaLabs\LaravelMixpanel\Listeners\MixpanelEvent as MixpanelEventListener;
9+
use Illuminate\Contracts\View\View;
10+
use Illuminate\HTTP\Request;
11+
use Illuminate\Support\ServiceProvider;
12+
use Illuminate\Foundation\Support\Providers\EventServiceProvider;
13+
14+
abstract class MixpanelBaseService extends EventServiceProvider
15+
{
16+
protected $defer = false;
17+
protected $listen = [
18+
MixpanelEvent::class => [
19+
MixpanelEventListener::class,
20+
],
21+
];
22+
23+
protected function initialize()
24+
{
25+
include __DIR__ . '/../../routes/api.php';
26+
27+
$this->loadViewsFrom(__DIR__ . '/../../resources/views', 'genealabs-laravel-mixpanel');
28+
$this->publishes([
29+
__DIR__ . '/../../public' => public_path(),
30+
], 'assets');
31+
32+
if (config('services.mixpanel.enable-default-tracking')) {
33+
$authModel = config('auth.providers.users.model') ?? config('auth.model');
34+
$this->app->make($authModel)->observe(new LaravelMixpanelUserObserver());
35+
app('events')->subscribe(new LaravelMixpanelEventHandler());
36+
}
37+
}
38+
39+
public function register()
40+
{
41+
$this->mergeConfigFrom(__DIR__ . '/../../config/services.php', 'services');
42+
$this->commands(Publish::class);
43+
$this->app->singleton('mixpanel', LaravelMixpanel::class);
44+
}
45+
46+
/**
47+
* @return array
48+
*/
49+
public function provides()
50+
{
51+
return ['genealabs-laravel-mixpanel'];
52+
}
53+
}

0 commit comments

Comments
 (0)