-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
161 lines (146 loc) · 4.68 KB
/
Plugin.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php namespace Alekseyp\Multisite;
use Cms\Controllers\Themes;
use System\Classes\PluginBase;
use Alekseyp\Multisite\Models\Setting;
use BackendAuth;
use Backend;
use Config;
use Event;
use Cache;
use Request;
use App;
use Flash;
use Backend\Widgets\Form;
/**
* Multisite Plugin Information File
* Plugin icon is used with Creative Commons (CC BY 4.0) Licence
* Icon author: http://pixelkit.com/
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'alekseyp.multisite::lang.details.title',
'description' => 'alekseyp.multisite::lang.details.description',
'author' => 'AlekseyP',
'icon' => 'icon-cubes',
];
}
/**
* @return array
*/
public function registerPermissions()
{
return [
'alekseyp.multisite.access_settings' => [
'tab' => 'alekseyp.multisite::lang.permissions.tab',
'label' => 'alekseyp.multisite::lang.permissions.settings',
],
];
}
/**
* @return array
*/
public function registerSettings()
{
return [
'multisite' => [
'label' => 'alekseyp.multisite::lang.details.title',
'description' => 'alekseyp.multisite::lang.details.description',
'category' => 'system::lang.system.categories.cms',
'icon' => 'icon-cubes',
'url' => Backend::url('alekseyp/multisite/settings'),
'permissions' => ['alekseyp.multisite.settings'],
'order' => 500,
'keywords' => 'multisite domains themes',
],
];
}
/**
* Multisite boot method
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
* @throws \UnexpectedValueException
*/
public function boot()
{
$backendUri = Config::get('cms.backendUri');
$requestUrl = Request::url();
$currentHostUrl = Request::getHost();
/*
* Get domain to theme bindings from cache, if it's not there, load them from database,
* save to cache and use for theme selection.
*/
$binds = Cache::rememberForever(
'alekseyp_multisite_settings',
function () {
try {
$cacheableRecords = Setting::generateCacheableRecords();
} catch (\Illuminate\Database\QueryException $e) {
if (BackendAuth::check()) {
Flash::error(trans('alekseyp.multisite:lang.flash.db-error'));
}
return null;
}
return $cacheableRecords;
}
);
/*
* Oooops something went wrong, abort.
*/
if ($binds === null) {
return null;
}
/*
* Check if this request is in backend scope and is using domain,
* that is protected from using backend
*/
foreach ($binds as $domain => $bind) {
if (preg_match('/\\'.$backendUri.'/', $requestUrl) && preg_match(
'/'.$currentHostUrl.'/i',
$domain
) && $bind['is_protected']
) {
return App::abort(401, 'Unauthorized.');
}
}
/*
* If current request is in backend scope, do not check cms themes
* Allows for current theme changes in October Theme Selector
*/
if (preg_match('/\\'.$backendUri.'/', $requestUrl)) {
return null;
}
/*
* Listen for CMS activeTheme event, change theme according to binds
* If there's no match, let CMS set active theme
*/
Event::listen(
'cms.theme.getActiveTheme',
function () use (&$binds, &$currentHostUrl) {
foreach ($binds as $domain => $bind) {
if (preg_match('/'.$currentHostUrl.'/i', $domain)) {
Config::set('app.url', $domain);
Config::set('site.meta', json_decode($bind['meta'], true));
return $bind['theme'];
}
}
}
);
Event::listen(
'backend.page.beforeDisplay',
function (Backend\Classes\Controller $widget) {
if (!$widget instanceof Themes) {
return;
}
$widget->addViewPath('$/alekseyp/multisite/partials/');
}
);
}
}