source: trunk/Modules/TV/TV.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: 6.1 KB
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../../Common/Global.php');
4
5class PageIPTV extends Page
6{
7 function __construct(System $System)
8 {
9 parent::__construct($System);
10 $this->FullTitle = 'Síťová televize';
11 $this->ShortTitle = 'IPTV';
12 $this->ParentClass = 'PagePortal';
13 }
14
15 function Show(): string
16 {
17 $Output = 'Stažení přehrávače: <a href="https://www.videolan.org/vlc/">VLC Media Player</a><br/>'.
18 'Seznam všech kanálů do přehrávače: <a href="playlist.m3u">Playlist</a><br/>'.
19 'Zobrazení playlistu ve VLC lze provést pomocí menu <strong>View - Playlist</strong> nebo klávesové zkratky CTRL+L<br/>'.
20 '<br/>'.
21 '<div align="center"><strong>Výpis kanálů:</strong><br>';
22
23 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `TV` LEFT JOIN `TVGroup` ON `TVGroup`.`Id` = `TV`.`Category` '.
24 ' LEFT JOIN `Language` ON `Language`.`Id` = `TV`.`Language` WHERE (`TV`.`Stream` <> "") OR (`TV`.`StreamWeb` <> "")');
25 $DbRow = $DbResult->fetch_row();
26 $PageList = GetPageList('TVChannels', $DbRow[0]);
27
28 $Output .= $PageList['Output'];
29 $Output .= '<table class="WideTable">';
30
31 $TableColumns = array(
32 array('Name' => 'Name', 'Title' => 'Jméno stanice'),
33 array('Name' => 'Language', 'Title' => 'Jazyk'),
34 array('Name' => 'Category', 'Title' => 'Zaměření'),
35 array('Name' => 'SourceType', 'Title' => 'Zdroj'),
36 array('Name' => '', 'Title' => 'Ladění'),
37 );
38 $Order = GetOrderTableHeader('TVChannels', $TableColumns, 'Name', 0);
39 $Output .= $Order['Output'];
40
41 $Query = 'SELECT `TV`.*, `TVGroup`.`Name` AS `Category`, `Language`.`Name` AS `Language` FROM `TV` LEFT JOIN `TVGroup` ON `TVGroup`.`Id` = `TV`.`Category` '.
42 ' LEFT JOIN `Language` ON `Language`.`Id` = `TV`.`Language` WHERE (`TV`.`Stream` <> "") OR (`TV`.`StreamWeb` <> "") '.$Order['SQL'].$PageList['SQLLimit'];
43
44 $DbResult = $this->Database->query($Query);
45 while ($Line = $DbResult->fetch_assoc())
46 {
47 if ($Line['Stream'] <> '') $Line['Show'] = '<a href="playlist.m3u?id='.$Line['ShortName'].'">Naladit</a>';
48 else
49 if ($Line['StreamWeb'] <> '') $Line['Show'] = '<a href="'.$Line['StreamWeb'].'">Naladit</a>';
50 else $Line['Show'] = '&nbsp;';
51
52 $Output .= '<tr><td><a href="'.$Line['Homepage'].'">'.$Line['Name'].'</a></td>'.
53 '<td>'.$Line['Language'].'</td>'.
54 '<td>'.$Line['Category'].'</td>'.
55 '<td>'.$Line['SourceType'].'</td>'.
56 '<td>'.$Line['Show'].'</td></tr>';
57 }
58 $Output .= '</table>';
59 $Output .= $PageList['Output'];
60
61 $Output .= '</div><br/>';
62
63 $Output .= 'Další online TV na webu: <a href="https://spustit.cz/">Spustit.cz</a><br/>';
64
65 return $Output;
66 }
67}
68
69class PagePlaylist extends Page
70{
71 function Show(): string
72 {
73 $this->ClearPage = true;
74
75 Header("Content-Type: audio/mpegurl");
76 Header("Content-Disposition: attachment; filename=playlist.m3u");
77
78 $Output = '#EXTM3U'."\n";
79 if (array_key_exists('id', $_GET))
80 {
81 $DbResult = $this->Database->select('TV', '*', ' (`Stream` <> "") AND (`ShortName`="'.addslashes($_GET['id']).'") ');
82 if ($DbResult->num_rows > 0)
83 {
84 $Channel = $DbResult->fetch_array();
85 $Output .= '#EXTINF:0,'.$Channel['Name']."\n";
86 $Output .= $Channel['Stream']."\n";
87 }
88 } else
89 {
90 $DbResult = $this->Database->select('TV', '*', ' (`Stream` <> "") ORDER BY `Name` ');
91 while ($Channel = $DbResult->fetch_array())
92 {
93 $Output .= '#EXTINF:0,'.$Channel['Name']."\n";
94 $Output .= $Channel['Stream']."\n";
95 }
96 }
97 return $Output;
98 }
99}
100
101class ModuleTV extends AppModule
102{
103 function __construct(System $System)
104 {
105 parent::__construct($System);
106 $this->Name = 'TV';
107 $this->Version = '1.0';
108 $this->Creator = 'Chronos';
109 $this->License = 'GNU/GPLv3';
110 $this->Description = 'Television channels management';
111 $this->Dependencies = array();
112 }
113
114 function DoInstall(): void
115 {
116 }
117
118 function DoUninstall(): void
119 {
120 }
121
122 function DoStart(): void
123 {
124 $this->System->RegisterPage(['tv'], 'PageIPTV');
125 $this->System->RegisterPage(['tv', 'playlist.m3u'], 'PagePlaylist');
126 $this->System->FormManager->RegisterClass('TV', array(
127 'Title' => 'TV kanály',
128 'Table' => 'TV',
129 'DefaultSortColumn' => 'Name',
130 'Items' => array(
131 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
132 'Frequency' => array('Type' => 'Integer', 'Caption' => 'Frekvence', 'Default' => '', 'Suffix' => 'Hz'),
133 'Norm' => array('Type' => 'String', 'Caption' => 'Video norma', 'Default' => ''),
134 'Homepage' => array('Type' => 'Hyperlink', 'Caption' => 'Web', 'Default' => ''),
135 'Language' => array('Type' => 'TLanguage', 'Caption' => 'Jazyk', 'Default' => '', 'Null' => true),
136 'ShortName' => array('Type' => 'String', 'Caption' => 'Zkratka', 'Default' => ''),
137 'Stream' => array('Type' => 'Hyperlink', 'Caption' => 'Proud', 'Default' => ''),
138 'StreamWeb' => array('Type' => 'Hyperlink', 'Caption' => 'Proud web', 'Default' => ''),
139 'SourceType' => array('Type' => 'String', 'Caption' => 'Typ zdroje', 'Default' => ''),
140 'Category' => array('Type' => 'TTVGroup', 'Caption' => 'Kategorie', 'Default' => '', 'Null' => true),
141 ),
142 ));
143 $this->System->FormManager->RegisterClass('TVGroup', array(
144 'Title' => 'Skupiny TV kanálů',
145 'Table' => 'TVGroup',
146 'DefaultSortColumn' => 'Name',
147 'Items' => array(
148 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
149 'Channels' => array('Type' => 'TTVListCategory', 'Caption' => 'Kanály', 'Default' => ''),
150 ),
151 ));
152 $this->System->FormManager->RegisterFormType('TTVGroup', array(
153 'Type' => 'Reference',
154 'Table' => 'TVGroup',
155 'Id' => 'Id',
156 'Name' => 'Name',
157 'Filter' => '1',
158 ));
159 $this->System->FormManager->RegisterFormType('TTVListCategory', array(
160 'Type' => 'ManyToOne',
161 'Table' => 'TV',
162 'Id' => 'Id',
163 'Ref' => 'Category',
164 'Filter' => '1',
165 ));
166 }
167
168 function DoStop(): void
169 {
170 }
171}
Note: See TracBrowser for help on using the repository browser.