source: trunk/Modules/RSS/RSS.php@ 887

Last change on this file since 887 was 887, checked in by chronos, 4 years ago
  • Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
  • Fixed: Various found code issues.
File size: 2.8 KB
Line 
1<?php
2
3class ModuleRSS extends AppModule
4{
5 public array $RSSChannels;
6
7 function __construct(System $System)
8 {
9 parent::__construct($System);
10 $this->Name = 'RSS';
11 $this->Version = '1.0';
12 $this->Creator = 'Chronos';
13 $this->License = 'GNU/GPL';
14 $this->Description = 'Web site RSS channel management';
15 $this->Dependencies = array();
16 $this->RSSChannels = array();
17 }
18
19 function DoStart(): void
20 {
21 $this->System->RegisterPage(['rss'], 'PageRSS');
22 $this->System->RegisterPageHeader('RSS', array($this, 'ShowRSSHeader'));
23 }
24
25 function RegisterRSS(array $Channel, $Pos = NULL, $Callback = NULL): void
26 {
27 $this->RSSChannels[$Channel['Channel']] = $Channel;
28
29 if (is_null($Pos)) $this->RSSChannelsPos[] = $Channel['Channel'];
30 else
31 {
32 array_splice($this->RSSChannelsPos, $Pos, 0, $Channel['Channel']);
33 }
34 }
35
36 function UnregisterRSS($ChannelName): void
37 {
38 unset($this->RSSChannels[$ChannelName]);
39 // TODO: Remove channel from pos list
40 }
41
42 function ShowRSSHeader(): string
43 {
44 $Output = '';
45 foreach ($this->RSSChannels as $Channel)
46 {
47 //if (ModuleUser::Cast($this->System->GetModule('User'))->User->Licence($Channel['Permission']))
48 $Output .= ' <link rel="alternate" title="'.$Channel['Title'].'" href="'.
49 $this->System->Link('/rss/?channel='.$Channel['Channel']).'" type="application/rss+xml" />';
50 }
51 return $Output;
52 }
53
54 static function Cast(AppModule $AppModule): ModuleRSS
55 {
56 if ($AppModule instanceof ModuleRSS)
57 {
58 return $AppModule;
59 }
60 throw new Exception('Expected ModuleRSS type but got '.gettype($AppModule));
61 }
62}
63
64class PageRSS extends Page
65{
66 function Show(): string
67 {
68 $this->ClearPage = true;
69
70 if (array_key_exists('channel', $_GET)) $ChannelName = $_GET['channel'];
71 else $ChannelName = '';
72 if (array_key_exists('token', $_GET)) $Token = $_GET['token'];
73 else $Token = '';
74 if (array_key_exists($ChannelName, ModuleRSS::Cast($this->System->GetModule('RSS'))->RSSChannels))
75 {
76 $Channel = ModuleRSS::Cast($this->System->GetModule('RSS'))->RSSChannels[$ChannelName];
77 if (ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission($Channel['Permission']['Module'], $Channel['Permission']['Operation']) or
78 ModuleUser::Cast($this->System->GetModule('User'))->User->CheckToken($Channel['Permission']['Module'], $Channel['Permission']['Operation'], $Token))
79 {
80 if (is_string($Channel['Callback'][0]))
81 {
82 $Class = new $Channel['Callback'][0]($this->System);
83 $Method = $Channel['Callback'][1];
84 $Output = $Class->$Method();
85 } else $Output = call_user_func($Channel['Callback']);
86 } else $Output = 'Nemáte oprávnění';
87 } else $Output = 'Kanál nenalezen';
88 return $Output;
89 }
90}
Note: See TracBrowser for help on using the repository browser.