Spaces:
No application file
No application file
File size: 4,799 Bytes
d2897cd |
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 162 163 164 165 166 167 168 169 170 |
<?php
namespace Mautic\PluginBundle\Model;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\ORM\EntityManager;
use Mautic\CoreBundle\Helper\BundleHelper;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Model\FormModel;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\LeadBundle\Field\FieldList;
use Mautic\LeadBundle\Model\FieldModel;
use Mautic\PluginBundle\Entity\Plugin;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
/**
* @extends FormModel<Plugin>
*/
class PluginModel extends FormModel
{
public function __construct(
protected FieldModel $leadFieldModel,
private FieldList $fieldList,
CoreParametersHelper $coreParametersHelper,
private BundleHelper $bundleHelper,
EntityManager $em,
CorePermissions $security,
EventDispatcherInterface $dispatcher,
UrlGeneratorInterface $router,
Translator $translator,
UserHelper $userHelper,
LoggerInterface $mauticLogger
) {
parent::__construct($em, $security, $dispatcher, $router, $translator, $userHelper, $mauticLogger, $coreParametersHelper);
}
/**
* @return \Mautic\PluginBundle\Entity\PluginRepository
*/
public function getRepository()
{
return $this->em->getRepository(Plugin::class);
}
public function getIntegrationEntityRepository()
{
return $this->em->getRepository(\Mautic\PluginBundle\Entity\IntegrationEntity::class);
}
public function getPermissionBase(): string
{
return 'plugin:plugins';
}
/**
* Get lead fields used in selects/matching.
*
* @return mixed[]
*/
public function getLeadFields(): array
{
return $this->fieldList->getFieldList();
}
/**
* Get Company fields.
*
* @return mixed[]
*/
public function getCompanyFields(): array
{
return $this->fieldList->getFieldList(true, true, ['isPublished' => true, 'object' => 'company']);
}
public function saveFeatureSettings($entity): void
{
$this->em->persist($entity);
$this->em->flush();
}
/**
* Loads config.php arrays for all plugins.
*
* @return array
*/
public function getAllPluginsConfig()
{
return $this->bundleHelper->getPluginBundles();
}
/**
* Loads all installed Plugin entities from database.
*
* @return array
*/
public function getInstalledPlugins()
{
return $this->getEntities(
[
'index' => 'bundle',
]
);
}
/**
* Returns metadata for all plugins.
*/
public function getPluginsMetadata(): array
{
$allMetadata = $this->em->getMetadataFactory()->getAllMetadata();
$pluginsMetadata = [];
foreach ($allMetadata as $meta) {
$namespace = $meta->namespace;
if (str_contains($namespace, 'MauticPlugin')) {
$bundleName = preg_replace('/\\\Entity$/', '', $namespace);
if (!isset($pluginsMetadata[$bundleName])) {
$pluginsMetadata[$bundleName] = [];
}
$pluginsMetadata[$bundleName][$meta->getName()] = $meta;
}
}
return $pluginsMetadata;
}
/**
* Returns all tables of installed plugins.
*/
public function getInstalledPluginTables(array $pluginsMetadata): array
{
$currentSchema = $this->em->getConnection()->createSchemaManager()->introspectSchema();
$installedPluginsTables = [];
foreach ($pluginsMetadata as $bundleName => $pluginMetadata) {
foreach ($pluginMetadata as $meta) {
$table = $meta->getTableName();
if (!isset($installedPluginsTables[$bundleName])) {
$installedPluginsTables[$bundleName] = [];
}
if ($currentSchema->hasTable($table)) {
$installedPluginsTables[$bundleName][] = $currentSchema->getTable($table);
}
}
}
return $installedPluginsTables;
}
/**
* Generates new Schema objects for all installed plugins.
*/
public function createPluginSchemas(array $installedPluginsTables): array
{
$installedPluginsSchemas = [];
foreach ($installedPluginsTables as $bundleName => $tables) {
$installedPluginsSchemas[$bundleName] = new Schema($tables);
}
return $installedPluginsSchemas;
}
}
|