1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/db.py

98 lines
2.4 KiB
Python
Raw Normal View History

2012-10-13 09:29:48 +00:00
# coding: utf-8
import config
2012-10-13 12:53:09 +00:00
from sqlalchemy import create_engine, Column, ForeignKey
from sqlalchemy import Integer, String, Boolean, Date, Time
from sqlalchemy.orm import scoped_session, sessionmaker, relationship, backref
2012-10-13 09:29:48 +00:00
from sqlalchemy.ext.declarative import declarative_base
2012-10-13 12:53:09 +00:00
from sqlalchemy.types import TypeDecorator
2012-10-13 09:29:48 +00:00
from sqlalchemy import BINARY
2012-10-13 12:53:09 +00:00
2012-10-13 09:29:48 +00:00
import uuid
2012-10-13 12:53:09 +00:00
class UUID(TypeDecorator):
2012-10-13 09:29:48 +00:00
impl = BINARY
2012-10-13 12:53:09 +00:00
2012-10-13 09:29:48 +00:00
def __init__(self):
self.impl.length = 16
2012-10-13 12:53:09 +00:00
TypeDecorator.__init__(self, length = self.impl.length)
2012-10-13 09:29:48 +00:00
def process_bind_param(self, value, dialect = None):
if value and isinstance(value, uuid.UUID):
return value.bytes
if value and not isinstance(value, uuid.UUID):
raise ValueError, 'value %s is not a valid uuid.UUID' % value
return None
def process_result_value(self, value, dialect = None):
if value:
return uuid.UUID(bytes = value)
return None
def is_mutable(self):
return False
@staticmethod
def gen_id_column():
return Column(UUID, primary_key = True, default = uuid.uuid4)
engine = create_engine(config.get('DATABASE_URI'), convert_unicode = True)
session = scoped_session(sessionmaker(autocommit = False, autoflush = False, bind = engine))
2012-10-13 09:29:48 +00:00
Base = declarative_base()
Base.query = session.query_property()
2012-10-13 09:29:48 +00:00
class User(Base):
2012-10-13 12:53:09 +00:00
__tablename__ = 'user'
2012-10-13 09:29:48 +00:00
id = UUID.gen_id_column()
name = Column(String, unique = True)
mail = Column(String)
password = Column(String(40))
salt = Column(String(6))
admin = Column(Boolean)
class MusicFolder(Base):
2012-10-13 12:53:09 +00:00
__tablename__ = 'folder'
2012-10-13 09:29:48 +00:00
id = UUID.gen_id_column()
name = Column(String, unique = True)
path = Column(String)
2012-10-13 12:53:09 +00:00
last_scan = Column(Date, nullable = True)
class Artist(Base):
__tablename__ = 'artist'
id = UUID.gen_id_column()
name = Column(String)
albums = relationship('Album', backref = 'artist', lazy = 'dynamic')
class Album(Base):
__tablename__ = 'album'
id = UUID.gen_id_column()
name = Column(String)
artist_id = Column(UUID, ForeignKey('artist.id'))
tracks = relationship('Track', backref = 'album', lazy = 'dynamic')
class Track(Base):
__tablename__ = 'track'
id = UUID.gen_id_column()
disc = Column(Integer)
number = Column(Integer)
title = Column(String)
duration = Column(Time)
album_id = Column(UUID, ForeignKey('album.id'))
path = Column(String)
2012-10-13 09:29:48 +00:00
def init_db():
Base.metadata.create_all(bind = engine)
def recreate_db():
2012-10-13 09:29:48 +00:00
Base.metadata.drop_all(bind = engine)
Base.metadata.create_all(bind = engine)