Coverage for an_website / main_page / main_page.py: 100.000%

15 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-31 10:27 +0000

1# This program is free software: you can redistribute it and/or modify 

2# it under the terms of the GNU Affero General Public License as 

3# published by the Free Software Foundation, either version 3 of the 

4# License, or (at your option) any later version. 

5# 

6# This program is distributed in the hope that it will be useful, 

7# but WITHOUT ANY WARRANTY; without even the implied warranty of 

8# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

9# GNU Affero General Public License for more details. 

10# 

11# You should have received a copy of the GNU Affero General Public License 

12# along with this program. If not, see <https://www.gnu.org/licenses/>. 

13 

14"""The main page of the website.""" 

15 

16 

17import contextlib 

18 

19from ..quotes.quote_of_the_day import QuoteOfTheDayBaseHandler 

20from ..utils.utils import ModuleInfo 

21 

22 

23def get_module_info() -> ModuleInfo: 

24 """Create and return the ModuleInfo for this module.""" 

25 return ModuleInfo( 

26 # the empty dict prevents the header from being changed 

27 handlers=((r"/", MainPage, {}),), 

28 name="Hauptseite", 

29 description="Die Hauptseite der Webseite", 

30 path="/", 

31 keywords=("asozial", "Asoziales", "Netzwerk"), 

32 ) 

33 

34 

35class MainPage(QuoteOfTheDayBaseHandler): 

36 """The request handler of the main page.""" 

37 

38 async def check_ready(self) -> None: # noqa: D102 

39 pass 

40 

41 async def get(self, *, head: bool = False) -> None: 

42 """Handle GET requests to the main page.""" 

43 if head: 

44 return 

45 quote_data = None 

46 if self.redis: # type: ignore[truthy-bool] 

47 with contextlib.suppress(Exception): 

48 quote_data = await self.get_quote_of_today() 

49 await self.render("pages/main_page.html", quote_data=quote_data)