1 from functools
import partial
3 from sqlalchemy
.ext
.associationproxy
import association_proxy
4 from sqlalchemy
.orm
import aliased
, compile_mappers
, mapper
, relationship
, synonym
5 from sqlalchemy
.orm
.collections
import attribute_mapped_collection
6 from sqlalchemy
.orm
.session
import Session
, object_session
7 from sqlalchemy
.schema
import Column
, ForeignKey
, Table
8 from sqlalchemy
.sql
.expression
import and_
, bindparam
, select
9 from sqlalchemy
.types
import Integer
11 def create_translation_table(_table_name
, foreign_class
, relation_name
,
12 language_class
, **kwargs
):
13 """Creates a table that represents some kind of data attached to the given
14 foreign class, but translated across several languages. Returns the new
15 table's mapped class. It won't be declarative, but it will have a
16 `__table__` attribute so you can retrieve the Table object.
18 `foreign_class` must have a `__singlename__`, currently only used to create
19 the name of the foreign key column.
21 Also supports the notion of a default language, which is attached to the
22 session. This is English by default, for historical and practical reasons.
24 Usage looks like this:
28 create_translation_table('foo_bars', Foo, 'bars',
32 # Now you can do the following:
37 foo.name_map['en'] = "new name"
38 del foo.name_map['en']
40 q.options(joinedload(Foo.bars_local))
41 q.options(joinedload(Foo.bars))
43 The following properties are added to the passed class:
45 - `(relation_name)`, a relation to the new table. It uses a dict-based
46 collection class, where the keys are language identifiers and the values
47 are rows in the created tables.
48 - `(relation_name)_local`, a relation to the row in the new table that
49 matches the current default language.
50 - `(relation_name)_class`, the class created by this function.
52 Note that these are distinct relations. Even though the former necessarily
53 includes the latter, SQLAlchemy doesn't treat them as linked; loading one
54 will not load the other. Modifying both within the same transaction has
57 For each column provided, the following additional attributes are added to
60 - `(column)_map`, an association proxy onto `foo_bars`.
61 - `(column)`, an association proxy onto `foo_bars_local`.
63 Pardon the naming disparity, but the grammar suffers otherwise.
65 Modifying these directly is not likely to be a good idea.
67 # n.b.: language_class only exists for the sake of tests, which sometimes
68 # want to create tables entirely separate from the pokedex metadata
70 foreign_key_name
= foreign_class
.__singlename__
+ '_id'
72 Translations
= type(_table_name
, (object,), {
73 '_language_identifier': association_proxy('local_language', 'identifier'),
76 # Create the table object
77 table
= Table(_table_name
, foreign_class
.__table__
.metadata
,
78 Column(foreign_key_name
, Integer
, ForeignKey(foreign_class
.id),
79 primary_key
=True, nullable
=False),
80 Column('local_language_id', Integer
, ForeignKey(language_class
.id),
81 primary_key
=True, nullable
=False),
83 Translations
.__table__
= table
86 # Column objects have a _creation_order attribute in ascending order; use
87 # this to get the (unordered) kwargs sorted correctly
88 kwitems
= kwargs
.items()
89 kwitems
.sort(key
=lambda kv
: kv
[1]._creation_order
)
90 for name
, column
in kwitems
:
92 table
.append_column(column
)
95 mapper(Translations
, table
, properties
={
96 'foreign_id': synonym(foreign_key_name
),
97 'local_language': relationship(language_class
,
98 primaryjoin
=table
.c
.local_language_id
== language_class
.id,
103 # Add full-table relations to the original class
105 setattr(foreign_class
, relation_name
+ '_table', Translations
)
107 setattr(foreign_class
, relation_name
, relationship(Translations
,
108 primaryjoin
=foreign_class
.id == Translations
.foreign_id
,
109 collection_class
=attribute_mapped_collection('local_language'),
114 # This is a bit clever; it uses bindparam() to make the join clause
115 # modifiable on the fly. db sessions know the current language identifier
116 # populates the bindparam. The manual alias and join are (a) to make the
117 # condition nice (sqla prefers an EXISTS) and to make the columns play nice
118 # when foreign_class == language_class.
119 local_relation_name
= relation_name
+ '_local'
120 language_class_a
= aliased(language_class
)
121 setattr(foreign_class
, local_relation_name
, relationship(Translations
,
123 foreign_class
.id == Translations
.foreign_id
,
124 Translations
.local_language_id
== select(
125 [language_class_a
.id],
126 language_class_a
.identifier
==
127 bindparam('_default_language', required
=True),
135 # Add per-column proxies to the original class
136 for name
, column
in kwitems
:
137 # Class.(column) -- accessor for the default language's value
138 setattr(foreign_class
, name
,
139 association_proxy(local_relation_name
, name
))
141 # Class.(column)_map -- accessor for the language dict
142 # Need a custom creator since Translations doesn't have an init, and
143 # these are passed as *args anyway
144 def creator(language
, value
):
146 row
.local_language
= language
147 setattr(row
, name
, value
)
149 setattr(foreign_class
, name
+ '_map',
150 association_proxy(relation_name
, name
, creator
=creator
))
155 class MultilangSession(Session
):
156 """A tiny Session subclass that adds support for a default language."""
157 default_language
= 'en'
159 def execute(self
, clause
, params
=None, *args
, **kwargs
):
162 params
.setdefault('_default_language', self
.default_language
)
163 return super(MultilangSession
, self
).execute(
164 clause
, params
, *args
, **kwargs
)