[476] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | class PageWebcam extends Page
|
---|
| 4 | {
|
---|
[887] | 5 | function __construct(System $System)
|
---|
| 6 | {
|
---|
| 7 | parent::__construct($System);
|
---|
[912] | 8 | $this->Title = 'Kamera';
|
---|
| 9 | $this->Description = 'Webová kamera';
|
---|
[887] | 10 | $this->ParentClass = 'PagePortal';
|
---|
| 11 | }
|
---|
[738] | 12 |
|
---|
[887] | 13 | function Show(): string
|
---|
[476] | 14 | {
|
---|
[887] | 15 | if (file_exists(ModuleWebCam::Cast($this->System->GetModule('WebCam'))->ImageFileName))
|
---|
[476] | 16 | {
|
---|
| 17 | $Output = '<script language="JavaScript">
|
---|
[887] | 18 | var ImageURL = "'.$this->System->Config['Web']['RootFolder'].'/webcam/'.ModuleWebCam::Cast($this->System->GetModule('WebCam'))->ImageFileName.'";
|
---|
[476] | 19 |
|
---|
| 20 | // Force an immediate image load
|
---|
| 21 | var theTimer = setTimeout("reloadImage()", 1);
|
---|
| 22 |
|
---|
[738] | 23 | function reloadImage()
|
---|
[476] | 24 | {
|
---|
| 25 | theDate = new Date();
|
---|
| 26 | var url = ImageURL;
|
---|
| 27 | url += "?dummy=";
|
---|
| 28 | url += theDate.getTime().toString(10);
|
---|
| 29 | // The above dummy cgi-parameter enforce a bypass of the browser image cache.
|
---|
| 30 | // Here we actually load the image
|
---|
| 31 | document.theImage.src = url;
|
---|
| 32 |
|
---|
| 33 | // Reload the image every defined period
|
---|
[579] | 34 | theTimer = setTimeout("reloadImage()", '.($this->System->Config['Web']['WebcamRefresh'] * 1000).');
|
---|
[476] | 35 | }
|
---|
| 36 | </script>';
|
---|
| 37 |
|
---|
[887] | 38 | $Output .= '<br /><div align="center"><img name="theImage" src="" idth="640" height="480" alt="Webcam image"><br>Poslední aktualizace: '.
|
---|
| 39 | date('j.n.Y G:i', filemtime(ModuleWebCam::Cast($this->System->GetModule('WebCam'))->ImageFileName)).
|
---|
| 40 | '<br>Obnovování po '.$this->System->Config['Web']['WebcamRefresh'].' sekundách</div><br />';
|
---|
[476] | 41 | } else $Output = '<br />Obrázek nenalezen.<br /><br />';
|
---|
| 42 |
|
---|
| 43 | $Output .= '<strong>Kamery v okolí:</strong><br />'.
|
---|
| 44 | '<a href="http://www.mestovsetin.cz/vismo/dokumenty2.asp?id_org=18676&id=480245">Webové kamery ve Vsetíně</a><br />';
|
---|
| 45 |
|
---|
[874] | 46 | return $Output;
|
---|
[476] | 47 | }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[899] | 50 | class ModuleWebCam extends Module
|
---|
[476] | 51 | {
|
---|
[887] | 52 | public string $ImageFileName = 'webcam.jpg';
|
---|
[476] | 53 |
|
---|
[887] | 54 | function __construct(System $System)
|
---|
[476] | 55 | {
|
---|
| 56 | parent::__construct($System);
|
---|
| 57 | $this->Name = 'WebCam';
|
---|
| 58 | $this->Version = '1.0';
|
---|
| 59 | $this->Creator = 'Chronos';
|
---|
[899] | 60 | $this->License = 'GNU/GPLv3';
|
---|
[476] | 61 | $this->Description = 'Web camera image presentetation';
|
---|
| 62 | }
|
---|
[738] | 63 |
|
---|
[887] | 64 | function DoStart(): void
|
---|
[476] | 65 | {
|
---|
| 66 | $this->System->Pages['webcam'] = 'PageWebcam';
|
---|
[738] | 67 | }
|
---|
[476] | 68 |
|
---|
[887] | 69 | function ShowImage(): string
|
---|
[476] | 70 | {
|
---|
[523] | 71 | $Output = '';
|
---|
[860] | 72 | $Output .= '<a href="//www.zdechov.net/kamery/?Id=5"><img alt="Koupaliště" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam5.jpg" /></a>';
|
---|
[927] | 73 | $Output .= '<a href="//www.zdechov.net/kamery/?Id=1"><img alt="Centrum obce" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam1.jpg" /></a>';
|
---|
| 74 | $Output .= '<a href="//www.zdechov.net/kamery/?Id=2"><img alt="Střed obce obloha" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam2.jpg" /></a>';
|
---|
[860] | 75 | $Output .= '<a href="//www.zdechov.net/kamery/?Id=3"><img alt="Skiareál, motokrosová grapa" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam3.jpg" /></a>';
|
---|
| 76 | $Output .= '<a href="//www.zdechov.net/kamery/?Id=4"><img alt="Fotbalové hřiště" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam4.jpg" /></a>';
|
---|
[874] | 77 | return $Output;
|
---|
[738] | 78 | }
|
---|
[887] | 79 |
|
---|
[899] | 80 | static function Cast(Module $Module): ModuleWebCam
|
---|
[887] | 81 | {
|
---|
[899] | 82 | if ($Module instanceof ModuleWebCam)
|
---|
[887] | 83 | {
|
---|
[899] | 84 | return $Module;
|
---|
[887] | 85 | }
|
---|
[899] | 86 | throw new Exception('Expected ModuleWebCam type but got '.gettype($Module));
|
---|
[887] | 87 | }
|
---|
[476] | 88 | }
|
---|