2011-03-22 05:32:52 +00:00
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
from sqlalchemy.ext.associationproxy import association_proxy
|
2011-09-05 06:18:36 +00:00
|
|
|
from sqlalchemy.orm import Query, aliased, mapper, relationship, synonym
|
2011-03-22 05:32:52 +00:00
|
|
|
from sqlalchemy.orm.collections import attribute_mapped_collection
|
2011-03-30 03:15:41 +00:00
|
|
|
from sqlalchemy.orm.scoping import ScopedSession
|
2011-03-22 05:32:52 +00:00
|
|
|
from sqlalchemy.orm.session import Session, object_session
|
|
|
|
from sqlalchemy.schema import Column, ForeignKey, Table
|
2011-03-24 05:17:02 +00:00
|
|
|
from sqlalchemy.sql.expression import and_, bindparam, select
|
2011-03-22 05:32:52 +00:00
|
|
|
from sqlalchemy.types import Integer
|
|
|
|
|
2011-04-20 19:47:37 +00:00
|
|
|
from pokedex.db import markdown
|
|
|
|
|
2011-03-22 05:32:52 +00:00
|
|
|
def create_translation_table(_table_name, foreign_class, relation_name,
|
2011-03-30 01:39:37 +00:00
|
|
|
language_class, relation_lazy='select', **kwargs):
|
2011-03-22 05:32:52 +00:00
|
|
|
"""Creates a table that represents some kind of data attached to the given
|
|
|
|
foreign class, but translated across several languages. Returns the new
|
|
|
|
table's mapped class. It won't be declarative, but it will have a
|
|
|
|
`__table__` attribute so you can retrieve the Table object.
|
|
|
|
|
|
|
|
`foreign_class` must have a `__singlename__`, currently only used to create
|
|
|
|
the name of the foreign key column.
|
|
|
|
|
|
|
|
Also supports the notion of a default language, which is attached to the
|
|
|
|
session. This is English by default, for historical and practical reasons.
|
|
|
|
|
|
|
|
Usage looks like this:
|
|
|
|
|
|
|
|
class Foo(Base): ...
|
|
|
|
|
|
|
|
create_translation_table('foo_bars', Foo, 'bars',
|
|
|
|
name = Column(...),
|
|
|
|
)
|
|
|
|
|
|
|
|
# Now you can do the following:
|
|
|
|
foo.name
|
|
|
|
foo.name_map['en']
|
|
|
|
foo.foo_bars['en']
|
|
|
|
|
|
|
|
foo.name_map['en'] = "new name"
|
|
|
|
del foo.name_map['en']
|
|
|
|
|
|
|
|
q.options(joinedload(Foo.bars_local))
|
|
|
|
q.options(joinedload(Foo.bars))
|
|
|
|
|
|
|
|
The following properties are added to the passed class:
|
|
|
|
|
|
|
|
- `(relation_name)`, a relation to the new table. It uses a dict-based
|
|
|
|
collection class, where the keys are language identifiers and the values
|
|
|
|
are rows in the created tables.
|
|
|
|
- `(relation_name)_local`, a relation to the row in the new table that
|
|
|
|
matches the current default language.
|
2011-04-14 11:25:42 +00:00
|
|
|
- `(relation_name)_table`, the class created by this function.
|
2011-03-22 05:32:52 +00:00
|
|
|
|
|
|
|
Note that these are distinct relations. Even though the former necessarily
|
|
|
|
includes the latter, SQLAlchemy doesn't treat them as linked; loading one
|
|
|
|
will not load the other. Modifying both within the same transaction has
|
|
|
|
undefined behavior.
|
|
|
|
|
|
|
|
For each column provided, the following additional attributes are added to
|
|
|
|
Foo:
|
|
|
|
|
|
|
|
- `(column)_map`, an association proxy onto `foo_bars`.
|
|
|
|
- `(column)`, an association proxy onto `foo_bars_local`.
|
|
|
|
|
|
|
|
Pardon the naming disparity, but the grammar suffers otherwise.
|
|
|
|
|
|
|
|
Modifying these directly is not likely to be a good idea.
|
2011-04-20 19:47:37 +00:00
|
|
|
|
|
|
|
For Markdown-formatted columns, `(column)_map` and `(column)` will give
|
|
|
|
Markdown objects.
|
2011-03-22 05:32:52 +00:00
|
|
|
"""
|
|
|
|
# n.b.: language_class only exists for the sake of tests, which sometimes
|
|
|
|
# want to create tables entirely separate from the pokedex metadata
|
|
|
|
|
|
|
|
foreign_key_name = foreign_class.__singlename__ + '_id'
|
|
|
|
|
|
|
|
Translations = type(_table_name, (object,), {
|
2011-03-29 02:12:30 +00:00
|
|
|
'_language_identifier': association_proxy('local_language', 'identifier'),
|
2011-03-22 05:32:52 +00:00
|
|
|
})
|
2011-03-24 05:17:02 +00:00
|
|
|
|
2011-03-22 05:32:52 +00:00
|
|
|
# Create the table object
|
|
|
|
table = Table(_table_name, foreign_class.__table__.metadata,
|
|
|
|
Column(foreign_key_name, Integer, ForeignKey(foreign_class.id),
|
2011-03-29 17:44:43 +00:00
|
|
|
primary_key=True, nullable=False,
|
|
|
|
info=dict(description="ID of the %s these texts relate to" % foreign_class.__singlename__)),
|
2011-03-29 02:12:30 +00:00
|
|
|
Column('local_language_id', Integer, ForeignKey(language_class.id),
|
2011-03-29 17:44:43 +00:00
|
|
|
primary_key=True, nullable=False,
|
|
|
|
info=dict(description="Language these texts are in")),
|
2011-03-22 05:32:52 +00:00
|
|
|
)
|
|
|
|
Translations.__table__ = table
|
|
|
|
|
|
|
|
# Add ye columns
|
|
|
|
# Column objects have a _creation_order attribute in ascending order; use
|
|
|
|
# this to get the (unordered) kwargs sorted correctly
|
|
|
|
kwitems = kwargs.items()
|
|
|
|
kwitems.sort(key=lambda kv: kv[1]._creation_order)
|
|
|
|
for name, column in kwitems:
|
|
|
|
column.name = name
|
|
|
|
table.append_column(column)
|
|
|
|
|
|
|
|
# Construct ye mapper
|
|
|
|
mapper(Translations, table, properties={
|
2011-03-29 02:12:30 +00:00
|
|
|
'foreign_id': synonym(foreign_key_name),
|
|
|
|
'local_language': relationship(language_class,
|
|
|
|
primaryjoin=table.c.local_language_id == language_class.id,
|
2011-04-13 15:54:32 +00:00
|
|
|
innerjoin=True),
|
2011-03-22 05:32:52 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
# Add full-table relations to the original class
|
2011-03-24 05:17:02 +00:00
|
|
|
# Foo.bars_table
|
|
|
|
setattr(foreign_class, relation_name + '_table', Translations)
|
2011-03-22 05:32:52 +00:00
|
|
|
# Foo.bars
|
|
|
|
setattr(foreign_class, relation_name, relationship(Translations,
|
2011-03-29 02:12:30 +00:00
|
|
|
primaryjoin=foreign_class.id == Translations.foreign_id,
|
|
|
|
collection_class=attribute_mapped_collection('local_language'),
|
2011-03-22 05:32:52 +00:00
|
|
|
))
|
|
|
|
# Foo.bars_local
|
|
|
|
# This is a bit clever; it uses bindparam() to make the join clause
|
2011-03-30 03:15:41 +00:00
|
|
|
# modifiable on the fly. db sessions know the current language and
|
|
|
|
# populate the bindparam.
|
|
|
|
# The 'dummy' value is to trick SQLA; without it, SQLA thinks this
|
|
|
|
# bindparam is just its own auto-generated clause and everything gets
|
|
|
|
# fucked up.
|
2011-03-22 05:32:52 +00:00
|
|
|
local_relation_name = relation_name + '_local'
|
|
|
|
setattr(foreign_class, local_relation_name, relationship(Translations,
|
|
|
|
primaryjoin=and_(
|
2011-03-30 03:15:41 +00:00
|
|
|
Translations.foreign_id == foreign_class.id,
|
|
|
|
Translations.local_language_id == bindparam('_default_language_id',
|
|
|
|
value='dummy', type_=Integer, required=True),
|
2011-03-22 05:32:52 +00:00
|
|
|
),
|
2011-03-30 03:15:41 +00:00
|
|
|
foreign_keys=[Translations.foreign_id, Translations.local_language_id],
|
2011-03-22 05:32:52 +00:00
|
|
|
uselist=False,
|
2011-03-30 01:39:37 +00:00
|
|
|
#innerjoin=True,
|
|
|
|
lazy=relation_lazy,
|
2011-03-22 05:32:52 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
# Add per-column proxies to the original class
|
|
|
|
for name, column in kwitems:
|
2011-04-20 19:47:37 +00:00
|
|
|
string_getter = column.info.get('string_getter')
|
|
|
|
if string_getter:
|
|
|
|
def getset_factory(underlying_type, instance):
|
|
|
|
def getter(translations):
|
2011-05-01 20:57:05 +00:00
|
|
|
if translations is None:
|
|
|
|
return None
|
2011-04-20 19:47:37 +00:00
|
|
|
text = getattr(translations, column.name)
|
2011-04-28 13:50:22 +00:00
|
|
|
if text is None:
|
|
|
|
return text
|
2011-04-20 19:47:37 +00:00
|
|
|
session = object_session(translations)
|
|
|
|
language = translations.local_language
|
|
|
|
return string_getter(text, session, language)
|
|
|
|
def setter(translations, value):
|
|
|
|
# The string must be set on the Translation directly.
|
|
|
|
raise AttributeError("Cannot set %s" % column.name)
|
|
|
|
return getter, setter
|
|
|
|
getset_factory = getset_factory
|
|
|
|
else:
|
|
|
|
getset_factory = None
|
|
|
|
|
2011-03-22 05:32:52 +00:00
|
|
|
# Class.(column) -- accessor for the default language's value
|
|
|
|
setattr(foreign_class, name,
|
2011-04-20 19:47:37 +00:00
|
|
|
association_proxy(local_relation_name, name,
|
|
|
|
getset_factory=getset_factory))
|
2011-03-22 05:32:52 +00:00
|
|
|
|
|
|
|
# Class.(column)_map -- accessor for the language dict
|
|
|
|
# Need a custom creator since Translations doesn't have an init, and
|
|
|
|
# these are passed as *args anyway
|
|
|
|
def creator(language, value):
|
|
|
|
row = Translations()
|
2011-03-29 02:12:30 +00:00
|
|
|
row.local_language = language
|
2011-03-22 05:32:52 +00:00
|
|
|
setattr(row, name, value)
|
|
|
|
return row
|
|
|
|
setattr(foreign_class, name + '_map',
|
2011-04-20 19:47:37 +00:00
|
|
|
association_proxy(relation_name, name, creator=creator,
|
|
|
|
getset_factory=getset_factory))
|
2011-03-22 05:32:52 +00:00
|
|
|
|
2011-03-29 16:53:16 +00:00
|
|
|
# Add to the list of translation classes
|
|
|
|
foreign_class.translation_classes.append(Translations)
|
|
|
|
|
2011-03-22 05:32:52 +00:00
|
|
|
# Done
|
|
|
|
return Translations
|
|
|
|
|
2011-09-05 06:18:36 +00:00
|
|
|
class MultilangQuery(Query):
|
|
|
|
def __iter__(self):
|
|
|
|
if '_default_language_id' not in self._params:
|
|
|
|
self._params = self._params.copy()
|
|
|
|
self._params['_default_language_id'] = self.session.default_language_id
|
|
|
|
return super(MultilangQuery, self).__iter__()
|
|
|
|
|
2011-03-22 05:32:52 +00:00
|
|
|
class MultilangSession(Session):
|
2011-04-06 04:03:41 +00:00
|
|
|
"""A tiny Session subclass that adds support for a default language.
|
|
|
|
|
2011-04-10 07:54:14 +00:00
|
|
|
Needs to be used with `MultilangScopedSession`, below.
|
2011-04-06 04:03:41 +00:00
|
|
|
"""
|
2011-04-10 07:54:14 +00:00
|
|
|
default_language_id = None
|
2011-03-30 03:15:41 +00:00
|
|
|
|
2011-04-04 18:51:12 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2011-04-10 07:54:14 +00:00
|
|
|
if 'default_language_id' in kwargs:
|
|
|
|
self.default_language_id = kwargs.pop('default_language_id')
|
2011-03-30 03:15:41 +00:00
|
|
|
|
2011-04-20 19:47:37 +00:00
|
|
|
self.pokedex_link_maker = markdown.MarkdownLinkMaker(self)
|
|
|
|
|
2011-09-05 06:18:36 +00:00
|
|
|
kwargs.setdefault('query_cls', MultilangQuery)
|
2011-04-10 07:54:14 +00:00
|
|
|
|
2011-09-05 06:18:36 +00:00
|
|
|
super(MultilangSession, self).__init__(*args, **kwargs)
|
2011-03-30 03:15:41 +00:00
|
|
|
|
|
|
|
class MultilangScopedSession(ScopedSession):
|
|
|
|
"""Dispatches language selection to the attached Session."""
|
|
|
|
|
2011-04-10 07:54:14 +00:00
|
|
|
@property
|
|
|
|
def default_language_id(self):
|
|
|
|
"""Passes the new default language id through to the current session.
|
|
|
|
"""
|
|
|
|
return self.registry().default_language_id
|
|
|
|
|
|
|
|
@default_language_id.setter
|
|
|
|
def default_language_id(self, new):
|
|
|
|
self.registry().default_language_id = new
|
2011-04-20 19:47:37 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def pokedex_link_maker(self):
|
|
|
|
"""Passes the new link maker through to the current session.
|
|
|
|
"""
|
|
|
|
return self.registry().pokedex_link_maker
|