X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/68a31d533aba7490c3f1f812075e8ab6eb9265d0..f7617496a08f10a77eb909982dae4e995c132900:/floof/model/art.py diff --git a/floof/model/art.py b/floof/model/art.py index 8cfcd5a..e78de41 100644 --- a/floof/model/art.py +++ b/floof/model/art.py @@ -1,12 +1,34 @@ -from sqlalchemy import Column, ForeignKey -from sqlalchemy.orm import relation -from sqlalchemy.types import Integer, Unicode +# +# floof/floof/model/art.py +# +# Copyright (c) 2009 Scribblr +# -from floof.model import meta +from elixir import Entity, Field, Integer, Unicode +from elixir import * -__all__ = ['Art'] +from pylons import config -class Art(meta.TableBase): - __tablename__ = 'art' - id = Column(Integer, primary_key=True) - title = Column(Unicode(length=120), nullable=False) +from floof.lib.file_storage import get_path, save_file + +class Art(Entity): + title = Field(Unicode(120)) + original_filename = Field(Unicode(120)) + hash = Field(String) + + def __init__(self, **kwargs): + # I wanted to check for the existence of the file, but... + # for some reason this FieldStorage object always conditions as falsey. + self.hash = save_file("art", kwargs.pop('file')) + + + super(Art, self).__init__(**kwargs) + # this is what super is doing, pretty much. + # for key, value in kwargs.items(): + # setattr(self, key, value) + + + + def get_path(self): + if self.hash: + return get_path("art", self.hash)