Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""LICENSE 

2Copyright 2020 Hermann Krumrey <hermann@krumreyh.com> 

3 

4This file is part of otaku-info-web. 

5 

6otaku-info-web is free software: you can redistribute it and/or modify 

7it under the terms of the GNU General Public License as published by 

8the Free Software Foundation, either version 3 of the License, or 

9(at your option) any later version. 

10 

11otaku-info-web is distributed in the hope that it will be useful, 

12but WITHOUT ANY WARRANTY; without even the implied warranty of 

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

14GNU General Public License for more details. 

15 

16You should have received a copy of the GNU General Public License 

17along with otaku-info-web. If not, see <http://www.gnu.org/licenses/>. 

18LICENSE""" 

19 

20from flask import render_template, abort 

21from flask.blueprints import Blueprint 

22from otaku_info_web.db.MediaItem import MediaItem 

23from otaku_info_web.db.MediaId import MediaId 

24 

25 

26def define_blueprint(blueprint_name: str) -> Blueprint: 

27 """ 

28 Defines the blueprint for this route 

29 :param blueprint_name: The name of the blueprint 

30 :return: The blueprint 

31 """ 

32 blueprint = Blueprint(blueprint_name, __name__) 

33 

34 @blueprint.route("/media/<media_item_id>", methods=["GET"]) 

35 def media(media_item_id: int): 

36 media_item = MediaItem.query.get(media_item_id) 

37 

38 if media_item is None: 

39 abort(404) 

40 

41 media_ids = MediaId.query.filter_by(media_item_id=media_item_id).all() 

42 return render_template( 

43 "media/media.html", 

44 media_item=media_item, 

45 media_ids=media_ids 

46 ) 

47 

48 return blueprint