-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTntSearch.php
108 lines (89 loc) · 3.7 KB
/
TntSearch.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
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace TntSearch;
use Propel\Runtime\Connection\ConnectionInterface;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Yaml\Yaml;
use Thelia\Module\BaseModule;
use TntSearch\Event\GenerateIndexesEvent;
class TntSearch extends BaseModule
{
/** @var string */
const DOMAIN_NAME = 'tntsearch';
const INDEXES_DIR = THELIA_LOCAL_DIR . "TNTIndexes";
const ON_THE_FLY_UPDATE = 'tntsearch.on_the_fly_update';
public function postActivation(ConnectionInterface $con = null)
{
self::setConfigValue(self::ON_THE_FLY_UPDATE, true);
if (!is_dir($this::INDEXES_DIR)) {
$this->getDispatcher()->dispatch(
GenerateIndexesEvent::GENERATE_INDEXES,
new GenerateIndexesEvent()
);
}
}
public function update($currentVersion, $newVersion, ConnectionInterface $con = null)
{
if (version_compare($currentVersion, '0.7.0') === -1) {
self::setConfigValue(self::ON_THE_FLY_UPDATE, true);
}
}
public static function getTntSearch($locale = null)
{
$configFile = THELIA_CONF_DIR . "database.yml";
$propelParameters = Yaml::parse(file_get_contents($configFile))['database']['connection'];
$driver = $propelParameters['driver'];
$user = $propelParameters['user'];
$password = $propelParameters['password'];
$explodeDns = explode(';', $propelParameters['dsn']);
$arrayDns = [];
foreach ($explodeDns as $param) {
$value = explode('=', $param);
$arrayDns[$value[0]] = $value[1];
}
$host = $arrayDns['mysql:host'];
$database = $arrayDns['dbname'];
if (!is_dir(self::INDEXES_DIR)) {
$fs = new Filesystem();
$fs->mkdir(self::INDEXES_DIR);
}
switch ($locale) {
case 'fr_FR':
$stemmer = \TntSearch\Stemmer\FrenchStemmer::class;
break;
case 'it_IT':
$stemmer = \TeamTNT\TNTSearch\Stemmer\ItalianStemmer::class;
break;
case 'de_DE':
$stemmer = \TeamTNT\TNTSearch\Stemmer\GermanStemmer::class;
break;
case 'pt_PT':
$stemmer = \TeamTNT\TNTSearch\Stemmer\PortugueseStemmer::class;
break;
default:
$stemmer = \TeamTNT\TNTSearch\Stemmer\PorterStemmer::class;
}
$config = [
'driver' => $driver,
'host' => $host,
'charset' => 'utf8',
'database' => $database,
'username' => $user,
'password' => $password,
'storage' => self::INDEXES_DIR,
'stemmer' => $stemmer
];
$tnt = new \TeamTNT\TNTSearch\TNTSearch();
$tnt->loadConfig($config);
return $tnt;
}
}