Files
fachschaften/organizations/controller.py
2017-02-21 19:55:19 +01:00

22 lines
770 B
Python

from src.controller import BaseController
from model import Organization
from src.models import Article, Section
from src.database import db_session
class OrgController(BaseController):
__myclass__= Organization
__jsonid__ = 'organization'
def get_articles(self,id):
sid=db_session.query(Section.id).filter(Section.organization_id==id).all()
sid=map(lambda a:a[0], sid)
articles=db_session.query(Article).filter(Article.section_id.in_(sid)).all()
return articles
def get_by_key_articles(self,key):
org=self.get_by_key(key)
return self.get_articles(org.id)
def get_by_key(self,key):
return db_session.query(Organization).filter(Organization.key==key).one()
controller=OrgController()