Skip to content
This repository was archived by the owner on Jul 7, 2022. It is now read-only.

Commit 0d497b2

Browse files
authored
Merge pull request #43 from AD7six/gitattributes
Maintainence
2 parents 6441907 + 89dbd34 commit 0d497b2

11 files changed

+448
-52
lines changed

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Remove files for archives generated using `git archive`
2+
.editorconfig export-ignore
3+
.gitattributes export-ignore
4+
.gitignore export-ignore
5+
.travis.yml export-ignore
6+
tests

.travis.yml

+11-16
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: php
22

33
php:
4-
- 5.4
5-
- 5.5
64
- 5.6
75
- 7.0
6+
- 7.1
87

98
sudo: false
109

@@ -23,25 +22,21 @@ matrix:
2322
- php: 7.0
2423
env: PHPCS=1 DEFAULT=0
2524

26-
- php: 5.6
27-
env: COVERALLS=1 DEFAULT=0 DB=mysql db_dsn='mysql://[email protected]/cakephp_test'
28-
29-
allow_failures:
30-
- env: COVERALLS=1 DEFAULT=0 DB=mysql db_dsn='mysql://[email protected]/cakephp_test'
31-
3225
before_script:
26+
- if [[ $TRAVIS_PHP_VERSION != 7.0 ]]; then phpenv config-rm xdebug.ini; fi
27+
3328
- composer self-update
3429
- composer install --no-interaction --prefer-source
35-
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
36-
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi"
37-
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev satooshi/php-coveralls:dev-master; fi"
38-
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
30+
- if [[ $DB = 'mysql' ]]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi
31+
- if [[ $DB = 'pgsql' ]]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi
3932

4033
script:
41-
- sh -c "if [ '$DEFAULT' = '1' ]; then phpunit --stderr; fi"
42-
- sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p -n --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi"
43-
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
44-
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
34+
- if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION != 7.0 ]]; then vendor/bin/phpunit; fi
35+
- if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then vendor/bin/phpunit --coverage-clover=clover.xml; fi
36+
- if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p -n --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi
37+
38+
after_success:
39+
- if [[ $DEFAULT = 1 && $DB = 'mysql' && $TRAVIS_PHP_VERSION = 7.0 ]]; then bash <(curl -s https://codecov.io/bash); fi
4540

4641
notifications:
4742
email: false

README.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Shadow translate
22

33
[![Build Status](https://img.shields.io/travis/AD7six/cakephp-shadow-translate/master.svg?style=flat-square)](https://travis-ci.org/AD7six/cakephp-shadow-translate)
4+
[![Coverage Status](https://img.shields.io/codecov/c/github/AD7six/cakephp-shadow-translate.svg?style=flat-square)](https://codecov.io/github/AD7six/cakephp-shadow-translate)
45
[![Coverage Status](https://img.shields.io/coveralls/AD7six/cakephp-shadow-translate/master.svg?style=flat-square)](https://coveralls.io/r/AD7six/cakephp-shadow-translate)
56
[![Total Downloads](https://img.shields.io/packagist/dt/ad7six/shadow-translate.svg?style=flat-square)](https://packagist.org/packages/ad7six/shadow-translate)
67
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE.txt)
@@ -27,23 +28,23 @@ blog tutorial as a start point, the following table would already exist:
2728

2829
```sql
2930
CREATE TABLE posts (
30-
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
31-
title VARCHAR(50),
32-
body TEXT,
33-
created DATETIME DEFAULT NULL,
34-
modified DATETIME DEFAULT NULL
31+
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
32+
title VARCHAR(50),
33+
body TEXT,
34+
created DATETIME DEFAULT NULL,
35+
modified DATETIME DEFAULT NULL
3536
);
3637
```
3738

3839
To prepare for using the shadow translate behavior, the following table would be created:
3940

4041
```sql
4142
CREATE TABLE posts_translations (
42-
id INT UNSIGNED,
43-
locale VARCHAR(5),
44-
title VARCHAR(50),
45-
body TEXT,
46-
PRIMARY KEY (id, locale)
43+
id INT UNSIGNED,
44+
locale VARCHAR(5),
45+
title VARCHAR(50) DEFAULT NULL,
46+
body TEXT DEFAULT NULL,
47+
PRIMARY KEY (id, locale)
4748
);
4849
```
4950

@@ -56,9 +57,9 @@ Usage is very similar to the core's behavior so e.g.:
5657
```php
5758
class PostsTable extends Table {
5859

59-
public function initialize(array $config) {
60-
$this->addBehavior('ShadowTranslate.ShadowTranslate');
61-
}
60+
public function initialize(array $config) {
61+
$this->addBehavior('ShadowTranslate.ShadowTranslate');
62+
}
6263
}
6364
```
6465

composer.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99
"email": "[email protected]"
1010
}
1111
],
12-
"minimum-stability": "dev",
1312
"require": {
14-
"cakephp/orm": "~3.0",
15-
"cakephp/i18n": "~3.0"
13+
"cakephp/orm": "^3.4.3",
14+
"cakephp/i18n": "^3.4.3"
1615
},
1716
"require-dev": {
18-
"phpunit/phpunit": "*",
19-
"cakephp/cakephp": "~3.1",
20-
"cakephp/cakephp-codesniffer": "dev-master"
17+
"phpunit/phpunit": "<6.0",
18+
"cakephp/cakephp": "^3.4.3",
19+
"cakephp/cakephp-codesniffer": "~2.3"
2120
},
2221
"autoload": {
2322
"psr-4": {

phpunit.xml phpunit.xml.dist

+3-7
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,9 @@
2929
</listeners>
3030

3131
<filter>
32-
<blacklist>
33-
<directory suffix=".php">./vendor/</directory>
34-
<directory suffix=".ctp">./vendor/</directory>
35-
36-
<directory suffix=".php">./tests/</directory>
37-
<directory suffix=".ctp">./tests/</directory>
38-
</blacklist>
32+
<whitelist>
33+
<directory suffix=".php">./src/</directory>
34+
</whitelist>
3935
</filter>
4036

4137
</phpunit>

src/Model/Behavior/ShadowTranslateBehavior.php

+59-2
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ protected function _traverseClause(Query $query, $name = '', $config = [])
243243
if (in_array($field, $fields)) {
244244
$joinRequired = true;
245245
$expression->setField("$alias.$field");
246+
246247
return;
247248
}
248249

@@ -269,20 +270,52 @@ public function beforeSave(Event $event, EntityInterface $entity, ArrayObject $o
269270
$newOptions = [$this->_translationTable->alias() => ['validate' => false]];
270271
$options['associated'] = $newOptions + $options['associated'];
271272

273+
// Check early if empty translations are present in the entity.
274+
// If this is the case, unset them to prevent persistence.
275+
// This only applies if $this->_config['allowEmptyTranslations'] is false
276+
if ($this->_config['allowEmptyTranslations'] === false) {
277+
$this->_unsetEmptyFields($entity);
278+
}
279+
272280
$this->_bundleTranslatedFields($entity);
273281
$bundled = $entity->get('_i18n') ?: [];
282+
$noBundled = count($bundled) === 0;
274283

275-
if ($locale === $this->config('defaultLocale')) {
284+
// No additional translation records need to be saved,
285+
// as the entity is in the default locale.
286+
if ($noBundled && $locale === $this->config('defaultLocale')) {
276287
return;
277288
}
289+
278290
$values = $entity->extract($this->_translationFields(), true);
279291
$fields = array_keys($values);
292+
$noFields = empty($fields);
280293

281-
if (empty($fields)) {
294+
// If there are no fields and no bundled translations, or both fields
295+
// in the default locale and bundled translations we can
296+
// skip the remaining logic as its not necessary.
297+
if ($noFields && $noBundled || ($fields && $bundled)) {
282298
return;
283299
}
300+
284301
$primaryKey = (array)$this->_table->primaryKey();
285302
$id = $entity->get(current($primaryKey));
303+
304+
// When we have no key and bundled translations, we
305+
// need to mark the entity dirty so the root
306+
// entity persists.
307+
if ($noFields && $bundled && !$id) {
308+
foreach ($this->_translationFields() as $field) {
309+
$entity->dirty($field, true);
310+
}
311+
312+
return;
313+
}
314+
315+
if ($noFields) {
316+
return;
317+
}
318+
286319
$where = compact('id', 'locale');
287320

288321
$translation = $this->_translationTable()->find()
@@ -314,6 +347,30 @@ public function beforeSave(Event $event, EntityInterface $entity, ArrayObject $o
314347
}
315348
}
316349

350+
/**
351+
* Returns a fully aliased field name for translated fields.
352+
*
353+
* If the requested field is configured as a translation field, field with
354+
* an alias of a corresponding association is returned. Table-aliased
355+
* field name is returned for all other fields.
356+
*
357+
* @param string $field Field name to be aliased.
358+
* @return string
359+
*/
360+
public function translationField($field)
361+
{
362+
if ($this->locale() === $this->getConfig('defaultLocale')) {
363+
return $this->_table->aliasField($field);
364+
}
365+
366+
$translatedFields = $this->_translationFields();
367+
if (in_array($field, $translatedFields)) {
368+
return $this->config('hasOneAlias') . '.' . $field;
369+
}
370+
371+
return $this->_table->aliasField($field);
372+
}
373+
317374
/**
318375
* Modifies the results from a table find in order to merge the translated fields
319376
* into each entity for a given locale.

tests/Fixture/ArticlesTranslationsFixture.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ArticlesTranslationsFixture extends TestFixture
1717
public $fields = [
1818
'id' => ['type' => 'integer'],
1919
'locale' => ['type' => 'string', 'null' => false],
20-
'title' => ['type' => 'string', 'null' => false],
20+
'title' => ['type' => 'string', 'null' => true],
2121
'body' => 'text',
2222
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id', 'locale']]],
2323
];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
namespace ShadowTranslate\Test\Fixture;
3+
4+
use Cake\TestSuite\Fixture\TestFixture;
5+
6+
/**
7+
* Class GroupsTranslationsFixture
8+
*
9+
*/
10+
class GroupsTranslationsFixture extends TestFixture
11+
{
12+
/**
13+
* fields property
14+
*
15+
* @var array
16+
*/
17+
public $fields = [
18+
'id' => ['type' => 'integer'],
19+
'locale' => ['type' => 'string', 'null' => false],
20+
'title' => ['type' => 'string'],
21+
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id', 'locale']]],
22+
];
23+
24+
/**
25+
* records property
26+
*
27+
* @var array
28+
*/
29+
public $records = [];
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?php
2+
namespace ShadowTranslate\Test\Fixture;
3+
4+
use Cake\TestSuite\Fixture\TestFixture;
5+
6+
/**
7+
* Class SpecialTagsTranslationsFixture
8+
*/
9+
class SpecialTagsTranslationsFixture extends TestFixture
10+
{
11+
12+
/**
13+
* fields property
14+
*
15+
* @var array
16+
*/
17+
public $fields = [
18+
'id' => ['type' => 'integer'],
19+
'locale' => ['type' => 'string', 'null' => false],
20+
'extra_info' => ['type' => 'string'],
21+
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id', 'locale']]],
22+
];
23+
24+
/**
25+
* records property
26+
*
27+
* @var array
28+
*/
29+
public $records = [
30+
['id' => 2, 'locale' => 'eng', 'extra_info' => 'Translated Info'],
31+
];
32+
}

0 commit comments

Comments
 (0)