Skip to content

Commit 5215e3c

Browse files
committed
Merge pull request #77 from moltam/feature/multiple-root-scan
Add multiple root directory scan
2 parents 4786795 + 7e6b710 commit 5215e3c

File tree

3 files changed

+102
-30
lines changed

3 files changed

+102
-30
lines changed

Module.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,20 @@ class Module extends \yii\base\Module {
142142
];
143143

144144
/**
145-
* @var string the root directory of the scanning.
145+
* @var string|array The root directory or directories of the scanning. The path can be an alias or
146+
* a full path.
147+
*
148+
* It is possible to define one root directory as string. In this case the `scanRootParentDirectory` will be used
149+
* when determining the actual directory to scan.
150+
*
151+
* Multiple root directories can be declared in an array. In this case all items must point to the exact directory,
152+
* as `scanRootParentDirectory` **will be omitted**.
146153
*/
147154
public $root = '@app';
148155

149156
/**
150-
* @var bool Whether scan the defined `root` parent directory, or the folder itself.
157+
* @var bool Whether scan the defined `root` parent directory, or the folder itself. This option is used only,
158+
* when the `root` option contains a single directory as string (e.g. `'root' => '@app'`).
151159
*
152160
* <b>IMPORTANT</b>: Changing this from `true` to `false` could cause loss of translated items, as
153161
* optimize action removes the missing items.

README.md

+51-14
Original file line numberDiff line numberDiff line change
@@ -122,27 +122,62 @@ A more complex example including database table with multilingual support is bel
122122

123123
#### Configuring the scan root
124124

125+
The root path can be an alias or a full path (e.g. `@app` or `/webroot/site/`).
126+
125127
The file scanner will scan the configured folders for translatable elements. The following two options
126128
determine the scan root directory: `root`, and `scanRootParentDirectory`. These options are defaults to
127-
values that works with the Yii 2 advanced project template. If you are using basic template, you have to modify
129+
values that works with the Yii 2 advanced project template. If you are using basic template, you have to modify
128130
these settings.
129131

130-
The `root` options tells which is the root folder for project scan. However if `scanRootParentDirectory` is set to `true`
131-
(which is the default value), the scan will run on the parent directory. This is desired behavior on advanced template,
132-
because the `@app` is the root for the current app, which is a subfolder inside the project (so the entire root of the
133-
project is the parent directory of `@app`).
132+
The `root` options tells which is the root folder for project scan. It can contain a single directory (string),
133+
or multiple directories (in an array).
134+
135+
The `scanRootParentDirectory` **is used only** if a single root directory is specified in a string.
136+
137+
**IMPORTANT: Changing these options could cause loss of translated items,
138+
as optimize action removes the missing items.** So be sure to double check your configuration!
139+
140+
**a)** Single root directory:
134141

135-
For basic template the `@app` is also the root for the entire project. Because of this with the default value
136-
of `scanRootParentDirectory`, the scan runs outside the project folder. This is not desired behavior, and
142+
It is possible to define one root directory as string in the `root` option. In this case the `scanRootParentDirectory`
143+
will be used when determining the actual directory to scan.
144+
145+
If `scanRootParentDirectory` is set to `true` (which is the default value), the scan will run on the parent directory.
146+
This is desired behavior on advanced template, because the `@app` is the root for the current app, which is a subfolder
147+
inside the project (so the entire root of the project is the parent directory of `@app`).
148+
149+
For basic template the `@app` is also the root for the entire project. Because of this with the default value
150+
of `scanRootParentDirectory`, the scan runs outside the project folder. This is not desired behavior, and
137151
changing the value to `false` solves this.
138152

139-
**IMPORTANT: Changing the `scanRootParentDirectory` from `true` to `false` could cause loss of translated items,
140-
as optimize action removes the missing items.** Changing the root folder can cause also loss, so be sure to
141-
double check your configuration!
153+
**IMPORTANT: Changing the `scanRootParentDirectory` from `true` to `false` could cause loss of translated items,
154+
as the root will be a different directory.**
155+
156+
For example:
157+
158+
| `root` value | `scanRootParentDirectory` value| Scanned directory |
159+
|---|---|---|
160+
| `/webroot/site/frontend` | `true` | `/webroot/site` |
161+
| `/webroot/site/frontend` | `false` | `/webroot/site/frontend` |
142162

143-
Using of [authManager](http://www.yiiframework.com/doc-2.0/guide-security-authorization.html).
163+
**b)** Multiple root directories:
144164

145-
examples:
165+
Multiple root directories can be defined in an array. In this case all items must point to the exact directory,
166+
as `scanRootParentDirectory` **will be omitted**.
167+
168+
For example:
169+
170+
```php
171+
'root' => [
172+
'@frontend',
173+
'@vendor',
174+
'/some/external/folder',
175+
],
176+
```
177+
178+
#### Using of [authManager](http://www.yiiframework.com/doc-2.0/guide-security-authorization.html)
179+
180+
Examples:
146181

147182
PhpManager:
148183
```php
@@ -164,7 +199,7 @@ DbManager:
164199
],
165200
```
166201

167-
Front end translation:
202+
#### Front end translation:
168203

169204
```php
170205
'bootstrap' => ['translatemanager'],
@@ -456,7 +491,9 @@ Use it with the Yii CLI
456491
Known issues
457492
-----------
458493

459-
* Scanner is scanning parent root directory. [#12](https://github.com/lajax/yii2-translate-manager/pull/12)
494+
* Scanner is scanning parent root directory [#12](https://github.com/lajax/yii2-translate-manager/pull/12).
495+
496+
You can overwrite this behavior with the `scanRootParentDirectory` option. (See Config section for details.)
460497
* Frontend translation of strings in hidden tags corrupts HTML. [#45](https://github.com/lajax/yii2-translate-manager/issues/45)
461498

462499
Screenshots

services/scanners/ScannerFile.php

+41-14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Yii;
66
use yii\helpers\Console;
77
use yii\helpers\FileHelper;
8+
use yii\base\InvalidConfigException;
89
use lajax\translatemanager\services\Scanner;
910

1011
/**
@@ -94,19 +95,33 @@ public function __construct(Scanner $scanner) {
9495
/**
9596
* @inheritdoc Initialise the $files static array.
9697
*/
97-
public function init()
98+
public function init()
9899
{
99-
if (empty(self::$files[static::EXTENSION]) && in_array(static::EXTENSION, $this->module->patterns)) {
100-
$root = realpath($this->_getRoot());
100+
$this->initFiles();
101+
102+
parent::init();
103+
}
104+
105+
protected function initFiles()
106+
{
107+
if (!empty(self::$files[static::EXTENSION]) || !in_array(static::EXTENSION, $this->module->patterns)) {
108+
return;
109+
}
110+
111+
self::$files[static::EXTENSION] = [];
112+
113+
foreach ($this->_getRoots() as $root) {
114+
$root = realpath($root);
101115
Yii::trace("Scanning " . static::EXTENSION . " files for language elements in: $root", 'translatemanager');
102-
103-
self::$files[static::EXTENSION] = FileHelper::findFiles($root, [
116+
117+
$files = FileHelper::findFiles($root, [
104118
'except' => $this->module->ignoredItems,
105119
'only' => [static::EXTENSION],
106120
]);
121+
self::$files[static::EXTENSION] = array_merge(self::$files[static::EXTENSION], $files);
107122
}
108123

109-
parent::init();
124+
self::$files[static::EXTENSION] = array_unique(self::$files[static::EXTENSION]);
110125
}
111126

112127
/**
@@ -215,17 +230,29 @@ protected function checkTokens($options, $translatorTokens, $tokens)
215230
abstract protected function getLanguageItem($buffer);
216231

217232
/**
218-
* Returns the root directory of the project scan.
219-
* @return string
233+
* Returns the root directories to scan.
234+
* @return array
220235
*/
221-
private function _getRoot()
236+
private function _getRoots()
222237
{
223-
$root = Yii::getAlias($this->module->root);
224-
if ($this->module->scanRootParentDirectory) {
225-
$root = dirname($root);
238+
$directories = [];
239+
240+
if (is_string($this->module->root)) {
241+
$root = Yii::getAlias($this->module->root);
242+
if ($this->module->scanRootParentDirectory) {
243+
$root = dirname($root);
244+
}
245+
246+
$directories[] = $root;
247+
} elseif (is_array($this->module->root)) {
248+
foreach ($this->module->root as $root) {
249+
$directories[] = Yii::getAlias($root);
250+
}
251+
} else {
252+
throw new InvalidConfigException("Invalid `root` option value!");
226253
}
227-
228-
return $root;
254+
255+
return $directories;
229256
}
230257

231258
/**

0 commit comments

Comments
 (0)