Mv db.sql.base to db.base
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Mon, 7 Jan 2013 12:03:51 +0000 (13:03 +0100)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Mon, 7 Jan 2013 12:42:32 +0000 (13:42 +0100)
This concludes the db.sql.* -> db.* move. Our db abstraction layer is
sqlalchemy, so there is no need to a separate db.sql.* hierarchy.

All tests have been run for each of the commit series to make sure
everything works at every step.

13 files changed:
mediagoblin/db/base.py [moved from mediagoblin/db/sql/base.py with 100% similarity]
mediagoblin/db/models.py
mediagoblin/db/models_v0.py
mediagoblin/db/open.py
mediagoblin/db/sql/__init__.py [deleted file]
mediagoblin/db/util.py
mediagoblin/media_types/ascii/models.py
mediagoblin/media_types/audio/models.py
mediagoblin/media_types/image/models.py
mediagoblin/media_types/video/models.py
mediagoblin/plugins/oauth/models.py
mediagoblin/tests/test_sql_migrations.py
mediagoblin/tests/tools.py

index 54f9abbc2e22328f642fcc8a4bde9f6bd9d41089..ea915ae5957cdc7b093a2e29b100b91ef3723b9f 100644 (file)
@@ -32,9 +32,8 @@ from sqlalchemy.ext.associationproxy import association_proxy
 from sqlalchemy.util import memoized_property
 
 from mediagoblin.db.extratypes import PathTupleWithSlashes, JSONEncoded
-from mediagoblin.db.sql.base import Base, DictReadAttrProxy
+from mediagoblin.db.base import Base, DictReadAttrProxy, Session
 from mediagoblin.db.mixin import UserMixin, MediaEntryMixin, MediaCommentMixin, CollectionMixin, CollectionItemMixin
-from mediagoblin.db.sql.base import Session
 
 # It's actually kind of annoying how sqlalchemy-migrate does this, if
 # I understand it right, but whatever.  Anyway, don't remove this :P
index 742c465217f6d28e8952cb031f10935df35e2d45..ec51a1f5afba7a3460e441059931619685b91c95 100644 (file)
@@ -32,8 +32,7 @@ from sqlalchemy.ext.associationproxy import association_proxy
 from sqlalchemy.util import memoized_property
 
 from mediagoblin.db.extratypes import PathTupleWithSlashes, JSONEncoded
-from mediagoblin.db.sql.base import GMGTableBase
-from mediagoblin.db.sql.base import Session
+from mediagoblin.db.base import GMGTableBase, Session
 
 
 Base_v0 = declarative_base(cls=GMGTableBase)
index 11b2dc9721e76aa3bb051eb226e1467e27cc4fc5..d976acd850d033cd33c54952330698b296638bb9 100644 (file)
@@ -18,7 +18,7 @@
 from sqlalchemy import create_engine
 import logging
 
-from mediagoblin.db.sql.base import Base, Session
+from mediagoblin.db.base import Base, Session
 from mediagoblin import mg_globals
 
 _log = logging.getLogger(__name__)
diff --git a/mediagoblin/db/sql/__init__.py b/mediagoblin/db/sql/__init__.py
deleted file mode 100644 (file)
index 621845b..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
-#
-# 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/>.
index 32dd0884f05f65de85ca271d978abe513716852e..2017cfc0b429b47497353d9b7c938b4fa6026c96 100644 (file)
@@ -14,7 +14,7 @@
 # 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/>.
 import sys
-from mediagoblin.db.sql.base import Session
+from mediagoblin.db.base import Session
 from mediagoblin.db.models import MediaEntry, Tag, MediaTag, Collection
 
 from mediagoblin.tools.common import simple_printer
index 60420fdd486baa01f9397a7d8d7c56a8befb3469..3416993c6d41f3c954785e26c5a6b4f8b711d4f5 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
 
 from sqlalchemy import (
     Column, Integer, ForeignKey)
index 08a90f5416f47535b02ebb31726c058f0b7444b7..368ab1eb0c5fea72837867f11a3d5d7cc9f252d0 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
 
 from sqlalchemy import (
     Column, Integer, ForeignKey)
index 0ac9caabbad4b87b74fc5944045c447ef0a8cc8c..63d80aa86ed53e756589626adbce826286ed625a 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
 
 from sqlalchemy import (
     Column, Integer, Float, ForeignKey)
index 4e02cb9aa64b324dc55f8e11db1ff3265d4a7384..645ef4d31037e8b3c2028f256bfc200ca060bfb1 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
 
 from sqlalchemy import (
     Column, Integer, SmallInteger, ForeignKey)
index f52a8ce9b41df6f1dfc377fdd60a82405bd2f6a8..695dad3192fb1b8ec254cfb5199de6e7fe6a2679 100644 (file)
@@ -19,7 +19,7 @@ import bcrypt
 
 from datetime import datetime, timedelta
 
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
 from mediagoblin.db.models import User
 
 from sqlalchemy import (
index 0e7102bc449776a78fb8fa92943eb6303940724b..26979bdfa429fb2bbef336519af36637f41cd211 100644 (file)
@@ -25,7 +25,7 @@ from sqlalchemy.ext.declarative import declarative_base
 from sqlalchemy.sql import select, insert
 from migrate import changeset
 
-from mediagoblin.db.sql.base import GMGTableBase
+from mediagoblin.db.base import GMGTableBase
 from mediagoblin.db.util import MigrationManager, RegisterMigration
 from mediagoblin.tools.common import CollectingPrinter
 
index 0e923aeeb1cb47be37815cd18921df0bc7a63345..31afb08bd65b144ca6610a309990eee3349713cd 100644 (file)
@@ -28,7 +28,7 @@ from mediagoblin import mg_globals
 from mediagoblin.tools import testing
 from mediagoblin.init.config import read_mediagoblin_config
 from mediagoblin.db.open import setup_connection_and_db_from_config
-from mediagoblin.db.sql.base import Session
+from mediagoblin.db.base import Session
 from mediagoblin.meddleware import BaseMeddleware
 from mediagoblin.auth.lib import bcrypt_gen_password_hash
 from mediagoblin.gmg_commands.dbupdate import run_dbupdate
@@ -219,7 +219,6 @@ def fixture_add_user(username=u'chris', password='toast',
     test_user = mg_globals.database.User.find_one({'username': username})
 
     # ... and detach from session:
-    from mediagoblin.db.sql.base import Session
     Session.expunge(test_user)
 
     return test_user