]> git.parisson.com Git - mezzo.git/commitdiff
[Prestashop] router
authorEmilie <zawadzki@ircam.fr>
Fri, 6 Jul 2018 12:49:25 +0000 (14:49 +0200)
committerEmilie <zawadzki@ircam.fr>
Fri, 6 Jul 2018 12:49:25 +0000 (14:49 +0200)
app/routers.py [new file with mode: 0644]

diff --git a/app/routers.py b/app/routers.py
new file mode 100644 (file)
index 0000000..3ef3082
--- /dev/null
@@ -0,0 +1,55 @@
+# -*- coding: utf-8 -*-
+#
+# Copyright (c) 2016-2017 Ircam
+# Copyright (c) 2016-2017 Guillaume Pellerin
+# Copyright (c) 2016-2017 Emilie Zawadzki
+
+# This file is part of mezzanine-organization.
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+
+class Router(object):
+    """
+    A router to control all database operations between the 2 apps
+    """
+    def db_for_read(self, model, **hints):
+        if model._meta.app_label == 'eve':
+            return 'eve'
+        if model._meta.app_label == 'presta':
+            return 'presta'
+        return None
+    def db_for_write(self, model, **hints):
+        if model._meta.app_label == 'eve':
+            return 'eve'
+        if model._meta.app_label == 'presta':
+            return 'presta'
+        return None
+
+    def allow_relation(self, obj1, obj2, **hints):
+        if obj1._meta.app_label == 'eve' or \
+           obj2._meta.app_label == 'eve':
+           return True
+        if obj1._meta.app_label == 'presta' or \
+           obj2._meta.app_label == 'presta':
+           return True
+        return None
+
+    def allow_migrate(self, db, app_label, model=None, **hints):
+        if app_label == 'eve':
+            return db == 'eve'
+        if app_label == 'presta':
+            return db == 'presta'
+        return None
\ No newline at end of file