1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace flipbox\patron\cp\controllers\view\providers; |
4
|
|
|
|
5
|
|
|
use Craft; |
6
|
|
|
use flipbox\patron\web\assets\card\Card; |
7
|
|
|
use flipbox\patron\web\assets\circleIcon\CircleIcon; |
8
|
|
|
use flipbox\patron\helpers\ProviderHelper; |
9
|
|
|
use flipbox\patron\records\Provider; |
10
|
|
|
use flipbox\patron\web\assets\providers\ProvidersAsset; |
11
|
|
|
|
12
|
|
|
class DefaultController extends AbstractViewController |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* The index view template path |
16
|
|
|
*/ |
17
|
|
|
const TEMPLATE_INDEX = AbstractViewController::TEMPLATE_BASE; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* The upsert view template path |
21
|
|
|
*/ |
22
|
|
|
const TEMPLATE_UPSERT = self::TEMPLATE_INDEX . '/upsert'; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @return \yii\web\Response |
26
|
|
|
* @throws \yii\base\InvalidConfigException |
27
|
|
|
*/ |
28
|
|
|
public function actionIndex() |
29
|
|
|
{ |
30
|
|
|
Craft::$app->getView()->registerAssetBundle(Card::class); |
31
|
|
|
Craft::$app->getView()->registerAssetBundle(CircleIcon::class); |
32
|
|
|
|
33
|
|
|
// Empty variables for template |
34
|
|
|
$variables = []; |
35
|
|
|
|
36
|
|
|
// apply base view variables |
37
|
|
|
$this->baseVariables($variables); |
38
|
|
|
|
39
|
|
|
// Full page form in the CP |
40
|
|
|
$variables['fullPageForm'] = Craft::$app->getConfig()->getGeneral()->allowAdminChanges; |
41
|
|
|
|
42
|
|
|
// Configured providers |
43
|
|
|
$variables['providers'] = Provider::findAll([ |
44
|
|
|
'enabled' => null |
45
|
|
|
]); |
46
|
|
|
|
47
|
|
|
return $this->renderTemplate(static::TEMPLATE_INDEX, $variables); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @param null $identifier |
52
|
|
|
* @param Provider|null $provider |
53
|
|
|
* @return \yii\web\Response |
54
|
|
|
* @throws \ReflectionException |
55
|
|
|
* @throws \craft\errors\InvalidPluginException |
56
|
|
|
* @throws \flipbox\craft\ember\exceptions\RecordNotFoundException |
57
|
|
|
* @throws \yii\base\InvalidConfigException |
58
|
|
|
*/ |
59
|
|
|
public function actionUpsert($identifier = null, Provider $provider = null) |
60
|
|
|
{ |
61
|
|
|
$this->getView()->registerAssetBundle(ProvidersAsset::class); |
62
|
|
|
|
63
|
|
|
// Empty variables for template |
64
|
|
|
$variables = []; |
65
|
|
|
|
66
|
|
|
if (null === $provider) { |
67
|
|
|
if (null === $identifier) { |
68
|
|
|
$provider = new Provider(); |
69
|
|
|
} else { |
70
|
|
|
$provider = Provider::getOne([ |
71
|
|
|
'enabled' => null, |
72
|
|
|
is_numeric($identifier) ? 'id' : 'handle' => $identifier |
73
|
|
|
]); |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
// Template variables |
78
|
|
|
if (!$provider->getId()) { |
|
|
|
|
79
|
|
|
$this->insertVariables($variables); |
80
|
|
|
} else { |
81
|
|
|
$this->updateVariables($variables, $provider); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
$providerInfo = $this->module->getProviderInfo(); |
85
|
|
|
|
86
|
|
|
// Available providers options |
87
|
|
|
$providerOptions = []; |
88
|
|
|
$providers = $this->module->getProviders(); |
89
|
|
|
foreach ($providers as $availableProvider) { |
90
|
|
|
$info = $providerInfo[$availableProvider] ?? []; |
91
|
|
|
$providerOptions[] = [ |
92
|
|
|
'label' => $info['name'] ?? ProviderHelper::displayName($availableProvider), |
93
|
|
|
'value' => $availableProvider |
94
|
|
|
]; |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
$variables['providers'] = $providers; |
98
|
|
|
$variables['providerOptions'] = $providerOptions; |
99
|
|
|
$variables['provider'] = $provider; |
100
|
|
|
|
101
|
|
|
$pluginLocks = []; |
102
|
|
|
$pluginHandles = $provider->getLocks() |
103
|
|
|
->alias('locks') |
104
|
|
|
->leftJoin('{{%plugins}} plugins', '[[plugins.id]]=[[locks.pluginId]]') |
105
|
|
|
->select(['handle'])->column(); |
106
|
|
|
|
107
|
|
|
foreach ($pluginHandles as $pluginHandle) { |
108
|
|
|
$pluginLocks[] = array_merge( |
109
|
|
|
Craft::$app->getPlugins()->getPluginInfo($pluginHandle), |
110
|
|
|
[ |
111
|
|
|
'icon' => Craft::$app->getPlugins()->getPluginIconSvg($pluginHandle) |
112
|
|
|
] |
113
|
|
|
); |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
// Plugins that have locked this provider |
117
|
|
|
$variables['pluginLocks'] = $pluginLocks; |
118
|
|
|
|
119
|
|
|
// Full page form in the CP |
120
|
|
|
$variables['fullPageForm'] = Craft::$app->getConfig()->getGeneral()->allowAdminChanges; |
121
|
|
|
|
122
|
|
|
// Tabs |
123
|
|
|
$variables['tabs'] = $this->getTabs($provider); |
124
|
|
|
$variables['selectedTab'] = 'general'; |
125
|
|
|
|
126
|
|
|
return $this->renderTemplate(static::TEMPLATE_UPSERT, $variables); |
127
|
|
|
} |
128
|
|
|
} |
129
|
|
|
|
In PHP, under loose comparison (like
==
, or!=
, orswitch
conditions), values of different types might be equal.For
integer
values, zero is a special case, in particular the following results might be unexpected: