rails_db_localize 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +202 -0
- data/README.md +100 -0
- data/Rakefile +30 -0
- data/app/models/rails_db_localize/translation.rb +33 -0
- data/lib/ext/active_record_ext.rb +52 -0
- data/lib/ext/controller_ext.rb +19 -0
- data/lib/ext/migration_ext.rb +21 -0
- data/lib/rails_db_localize.rb +37 -0
- data/lib/rails_db_localize/translation_cache.rb +79 -0
- data/lib/rails_db_localize/version.rb +3 -0
- data/lib/tasks/rails_db_localize_tasks.rake +11 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/javascripts/translatables.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/translatables.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/translatables_controller.rb +16 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/translatables_helper.rb +2 -0
- data/test/dummy/app/models/translatable.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/translatables/index.html.erb +36 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +59 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20150907053532_create_translation_table.rb +5 -0
- data/test/dummy/db/migrate/20150907053908_create_translatable.rb +7 -0
- data/test/dummy/db/schema.rb +40 -0
- data/test/dummy/lib/tasks/populate.rake +11 -0
- data/test/dummy/log/development.log +8194 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/controllers/translatables_controller_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3O2pqsT3ybnPUm6Gi7ErjmLeCBRRUWz4fMCvw-ibCB0.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6qyNdZnWUudLJAOThY51h8UbkuubQ6d87qQokqr9_Io.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9yOpc3M6o_Vd_0RjCLTe8PJNtWsWGrV4zdvCJgbMtvw.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ANeC_6Mk_I5aOnvx2d-aSzot3B_oq6NBEI2K_mJEnWM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BAArHgUaRCG_NHra3C0s9BRNUfg8e8yJC8Tw0wOKH-A.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/B_ZbUByps36PvVRYHSdlhwdAtP5-Zf3zVtDzL-IQNrQ.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Cg8aXWizze0m2o4NT5ZriA69UfhbMK2hDD1D0oPK1JI.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DpdBg7WBC-mtsYWWSF3TjYyBBi-Evpi_ana2Hh_30LM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ELlZNzycCi1-_hT_LCUVm1uUF65_XGNtAbDizvvphuA.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EzYy4pCO7n17PL8udZ40Mjw8k09nEOwcWk4Oi-a_Hwg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NnJakuOJenyIjIygEryzdLDMdyyxVbseqRcdbkwnoAI.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/O4S1k7_Y87AttftaL1s29JQtwbK4syBxZMLzIVuu1vk.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P3uTHiFsLRdy5tNIFjY3okQd6odvdpdGk6oogoFhoGk.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZffU_0SbArG9GYeAowBJuJgaF1hVGbMNGeDIj9bqa9A.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/c8KYVj1rHA3NliflfWZWsyCpCQAFkHuDTGW0GGTL0Bo.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iN2MkusZ4QURJ8-cxj-e7yLM4a1aqMS4VNwG63KkVZY.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lCUSCqZNMlgdamWEpHVlaxIHvpPKRbmiI3DgkCQqQRQ.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lZwz80GEq6cMAemaJYqRQdQbxAb92jM-0r0zq11lMxI.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vvbyKzG93brAbyVrZ7Q2gGUXUgcsVmB6eDpz25kvPFg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/znAAVScTWs7VUkicijSLxlPcvxUCnkiPoFshMXcE458.cache +1 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/rails_db_localize_test.rb +7 -0
- data/test/test_helper.rb +19 -0
- metadata +274 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b871138a311b81b19fe496d8ee8e5a24728d0d2d
|
4
|
+
data.tar.gz: 9fef4a09569e4063bb8aa9cc102a948306f5eb01
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 25dff5f05e0d1c9d5d4a594c6317f60a869e25273a05cf42c272c6676f80d013a5304b303e0af626d38a161eb3de3821a618a0d6c466ecaed6997a338c00144a
|
7
|
+
data.tar.gz: 46dd58fb5744d3d084ac2c403a61a626456d00917e1ad552574dcf894b7f05fb1c59ca480325876b8f7e752db1f1b486199e397facd47c30d055cd9ea3f6a880
|
data/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
202
|
+
|
data/README.md
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
# rails_db_localize
|
2
|
+
|
3
|
+
Gem for managing translations of database objects without any pain
|
4
|
+
|
5
|
+
# Why I've made this gem?
|
6
|
+
|
7
|
+
In some translations project we used the globalize3 gem, but I wasn't really happy with it.
|
8
|
+
The most annoying part is globalize3 create a table for each object you want to translate.
|
9
|
+
|
10
|
+
I've made this gem with theses rules in head:
|
11
|
+
|
12
|
+
## 1/ Translation just in time.
|
13
|
+
|
14
|
+
You don't need to think about translation in your project until you begin the translation process.
|
15
|
+
`rails_db_localize` doesn't modify your database schematic but instead just add a layer on it.
|
16
|
+
|
17
|
+
## 2/ One table to bring them all.
|
18
|
+
|
19
|
+
`rails_db_localize` add only one table to your project. All your translations are stored inside this table.
|
20
|
+
This allow you to make without any pain a tool to manage a team of traductors for example.
|
21
|
+
|
22
|
+
Since everything is in the same table, one controller is enough to manage the translation process!
|
23
|
+
About performance, `rails_db_localize` use some optimisations for fetching the rows (caching and hashing system).
|
24
|
+
|
25
|
+
|
26
|
+
## 3/ Only one query for all your translations
|
27
|
+
|
28
|
+
Thanks to the caching system, `rails_db_localize` need only one query to retrieve all the translations of your current view (see below)
|
29
|
+
|
30
|
+
# Installation
|
31
|
+
|
32
|
+
```Gemfile
|
33
|
+
gem 'rails_db_localize'
|
34
|
+
```
|
35
|
+
|
36
|
+
You need to create a migration also, and put this inside:
|
37
|
+
|
38
|
+
```ruby
|
39
|
+
def change
|
40
|
+
create_rails_db_localize_translations
|
41
|
+
end
|
42
|
+
```
|
43
|
+
|
44
|
+
Note: the migration process is reversible
|
45
|
+
|
46
|
+
# Use of the gem
|
47
|
+
|
48
|
+
Then just declare the stuff you want to translate:
|
49
|
+
|
50
|
+
```ruby
|
51
|
+
#in your model.rb
|
52
|
+
has_translations :name, :comment #and everything you want...
|
53
|
+
```
|
54
|
+
|
55
|
+
Your code is still working the same way, but your model have now theses methods:
|
56
|
+
|
57
|
+
```ruby
|
58
|
+
model.name_translated
|
59
|
+
model.comment_translated
|
60
|
+
```
|
61
|
+
|
62
|
+
By default, `rails_db_localize` will use the I18n.locale to find the current locale. You can force to show a special locale:
|
63
|
+
|
64
|
+
```ruby
|
65
|
+
model.name_translated(:fr)
|
66
|
+
```
|
67
|
+
|
68
|
+
To create a new translation, you can use the setter with it:
|
69
|
+
|
70
|
+
```ruby
|
71
|
+
model.name_translated = "Name in current 'I18n.locale'"
|
72
|
+
```
|
73
|
+
|
74
|
+
or:
|
75
|
+
|
76
|
+
```ruby
|
77
|
+
model.name_translated = "Name in french", :fr
|
78
|
+
```
|
79
|
+
|
80
|
+
# SQL Optimisation
|
81
|
+
|
82
|
+
To avoid N+1 requests, please use the preloader on every array of models you want to use:
|
83
|
+
|
84
|
+
```ruby
|
85
|
+
@translatables = Translatable.all
|
86
|
+
@categories = Category.all
|
87
|
+
#Only one request per preload_translations_for call
|
88
|
+
preload_translations_for(@translatables, @categories)
|
89
|
+
```
|
90
|
+
|
91
|
+
# Changelog
|
92
|
+
|
93
|
+
0.1 - First commit
|
94
|
+
|
95
|
+
# Licensing
|
96
|
+
|
97
|
+
Apache 2. Use it, fork it, have fun!
|
98
|
+
|
99
|
+
Happy coding!
|
100
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'RailsDbLocalize'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
Bundler::GemHelper.install_tasks
|
19
|
+
|
20
|
+
require 'rake/testtask'
|
21
|
+
|
22
|
+
Rake::TestTask.new(:test) do |t|
|
23
|
+
t.libs << 'lib'
|
24
|
+
t.libs << 'test'
|
25
|
+
t.pattern = 'test/**/*_test.rb'
|
26
|
+
t.verbose = false
|
27
|
+
end
|
28
|
+
|
29
|
+
|
30
|
+
task default: :test
|
@@ -0,0 +1,33 @@
|
|
1
|
+
class RailsDbLocalize::Translation < ActiveRecord::Base
|
2
|
+
self.table_name = "rails_db_localize_translations"
|
3
|
+
|
4
|
+
belongs_to :resource, polymorphic: true
|
5
|
+
|
6
|
+
validates :resource_id, presence: true
|
7
|
+
validates :resource_type, presence: true
|
8
|
+
validates :field, presence: true
|
9
|
+
validates :lang, presence: true
|
10
|
+
validates :compound_key, presence: true
|
11
|
+
|
12
|
+
validates :content, uniqueness: { scope: [:lang, :field, :resource_type, :resource_id] }
|
13
|
+
|
14
|
+
scope :with_language, lambda { |x| where("lang LIKE ?", "#{x}%") }
|
15
|
+
|
16
|
+
before_validation :set_compound_key
|
17
|
+
|
18
|
+
def self.generate_ck resource_type, resource_id
|
19
|
+
#Keep it 32bits.
|
20
|
+
[resource_type.to_s.underscore, resource_id].join("|").hash & 0x7fffffff
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.get_untranslated model, field, lang
|
24
|
+
model.where("id NOT IN (?)",
|
25
|
+
[-1, *RailsDbLocalize::Translation.where(resource_type: k.to_s, lang: lang, field: field).pluck(:resource_id).uniq]
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
def set_compound_key
|
31
|
+
self.compound_key = RailsDbLocalize::Translation.generate_ck(resource_type, resource_id)
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
class ActiveRecord::Base
|
2
|
+
class << self
|
3
|
+
|
4
|
+
def has_translations *fields
|
5
|
+
|
6
|
+
unless @__rdbl_translations
|
7
|
+
@__rdbl_translations = true
|
8
|
+
# Register it mostly to remove the translations once you delete an object
|
9
|
+
self.has_many :translations, as: :resource, dependent: :destroy
|
10
|
+
end
|
11
|
+
|
12
|
+
fields.each do |field|
|
13
|
+
# Add a marker to the schema of the application translations.
|
14
|
+
RailsDbLocalize::add_to_schema(self, field)
|
15
|
+
|
16
|
+
# Not sure if I would have to put dependent: :destroy here.
|
17
|
+
self.has_many :"#{field}_translations", -> { where(field: field) }, as: :resource
|
18
|
+
|
19
|
+
# Making the magic happends.
|
20
|
+
# I should really learn how to use the Reflection helpers in ActiveRecord, because
|
21
|
+
# ruby eval is not the most readable stuff... :o)
|
22
|
+
self.class_eval <<-CODE, __FILE__, __LINE__ + 1
|
23
|
+
def #{field}_translated (lang=nil)
|
24
|
+
lang ||= I18n.locale
|
25
|
+
RailsDbLocalize::TranslationCache.instance.get_translation_for(self.class, self.id, "#{field}", lang, self.#{field} )
|
26
|
+
end
|
27
|
+
|
28
|
+
def #{field}_translated= args
|
29
|
+
if args.is_a?(Array)
|
30
|
+
value, lang = args
|
31
|
+
else
|
32
|
+
value = args
|
33
|
+
lang = I18n.locale
|
34
|
+
end
|
35
|
+
|
36
|
+
if self.id
|
37
|
+
translated = RailsDbLocalize::Translation.where(
|
38
|
+
resource_type: self.class.to_s, resource_id: self.id, field: "#{field}", lang: lang
|
39
|
+
).first_or_create
|
40
|
+
|
41
|
+
translated.content = value
|
42
|
+
|
43
|
+
translated.save!
|
44
|
+
else
|
45
|
+
translations.build field: "#{field}", lang: lang, content: value
|
46
|
+
end
|
47
|
+
end
|
48
|
+
CODE
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'action_controller/base'
|
2
|
+
|
3
|
+
class ActionController::Base
|
4
|
+
|
5
|
+
before_action :prepare_translation_cache
|
6
|
+
|
7
|
+
# Preload the translations string for all the collections.
|
8
|
+
# This allow to load all translation resources in only one SQL query.
|
9
|
+
# Take in consideration this will execute the request for
|
10
|
+
def preload_translations_for *collections
|
11
|
+
RailsDbLocalize::TranslationCache.instance.prefetch_collections(*collections)
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
def prepare_translation_cache
|
16
|
+
RailsDbLocalize::TranslationCache.reinit
|
17
|
+
yield if block_given?
|
18
|
+
end
|
19
|
+
end
|