-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPlugin.php
More file actions
143 lines (130 loc) · 4.15 KB
/
Plugin.php
File metadata and controls
143 lines (130 loc) · 4.15 KB
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
<?php namespace Keios\Multisite;
use System\Classes\PluginBase;
use Keios\Multisite\Models\Setting;
use BackendAuth;
use Backend;
use Config;
use Event;
use Cache;
use Request;
use App;
use Flash;
/**
* 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' => 'keios.multisite::lang.details.title',
'description' => 'keios.multisite::lang.details.description',
'author' => 'Keios',
'icon' => 'icon-cubes',
];
}
/**
* @return array
*/
public function registerPermissions()
{
return [
'keios.multisite.access_settings' => [
'tab' => 'keios.multisite::lang.permissions.tab',
'label' => 'keios.multisite::lang.permissions.settings',
],
];
}
/**
* @return array
*/
public function registerSettings()
{
return [
'multisite' => [
'label' => 'keios.multisite::lang.details.title',
'description' => 'keios.multisite::lang.details.description',
'category' => 'system::lang.system.categories.cms',
'icon' => 'icon-cubes',
'url' => Backend::url('keios/multisite/settings'),
'permissions' => ['keios.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(
'keios_multisite_settings',
function () {
try {
$cacheableRecords = Setting::generateCacheableRecords();
} catch (\Illuminate\Database\QueryException $e) {
if (BackendAuth::check()) {
Flash::error(trans('keios.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);
return $bind['theme'];
}
}
});
}
}