source: trunk/Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php@ 860

Last change on this file since 860 was 860, checked in by chronos, 6 years ago
  • Modified: Made some links to follow http/https protocol.
  • Modified: Simplified .htaccess.
File size: 5.4 KB
Line 
1<?php
2
3include_once(dirname(__FILE__).'/Routerboard.php');
4include_once(dirname(__FILE__).'/RouterboardAPI.php');
5include_once(dirname(__FILE__).'/Generators/Common.php');
6
7// Config actions
8include_once(dirname(__FILE__).'/Generators/Signal.php');
9include_once(dirname(__FILE__).'/Generators/DHCP.php');
10include_once(dirname(__FILE__).'/Generators/DNS.php');
11include_once(dirname(__FILE__).'/Generators/Netwatch.php');
12include_once(dirname(__FILE__).'/Generators/NetwatchImport.php');
13include_once(dirname(__FILE__).'/Generators/FirewallFilter.php');
14include_once(dirname(__FILE__).'/Generators/FirewallNAT.php');
15include_once(dirname(__FILE__).'/Generators/FirewallMangle.php');
16include_once(dirname(__FILE__).'/Generators/Queue.php');
17
18class ModuleNetworkConfigRouterOS extends AppModule
19{
20 function __construct($System)
21 {
22 parent::__construct($System);
23 $this->Name = 'NetworkConfigRouterOS';
24 $this->Version = '1.0';
25 $this->Creator = 'Chronos';
26 $this->License = 'GNU/GPL';
27 $this->Description = 'Mikrotik RouterOS configuration';
28 $this->Dependencies = array('NetworkConfig');
29 }
30
31 function DoInstall()
32 {
33 }
34
35 function DoUnInstall()
36 {
37 }
38
39 function DoStart()
40 {
41 $this->System->Pages['zdarma'] = 'PageFreeAccess';
42 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-dns', 'ConfigRouterOSDNS');
43 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-dhcp', 'ConfigRouterOSDHCP');
44 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-signal', 'ConfigRouterOSSignal');
45 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-netwatch', 'ConfigRouterOSNetwatch');
46 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-netwatch-import', 'ConfigRouterOSNetwatchImport');
47 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-filter', 'ConfigRouterOSFirewallFilter');
48 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-nat', 'ConfigRouterOSFirewallNAT');
49 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-mangle', 'ConfigRouterOSFirewallMangle');
50 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-queue', 'ConfigRouterOSQueue');
51 }
52}
53
54class PageFreeAccess extends Page
55{
56 var $FullTitle = 'Přístup zdarma k Internetu';
57 var $ShortTitle = 'Internet zdarma';
58 var $ParentClass = 'PagePortal';
59 var $AddressList = 'free-access';
60 var $Timeout;
61
62 function __construct($System)
63 {
64 parent::__construct($System);
65 $this->Timeout = 24 * 60 * 60;
66 }
67
68 function Show()
69 {
70 $IPAddress = GetRemoteAddress();
71 $Output = 'Vaše IP adresa je: '.$IPAddress.'<br/>';
72 if(IsInternetAddr($IPAddress)) {
73 $Output .= '<p>Internet zdarma je dostupný pouze z vnitřní sítě.</p>';
74 return($Output);
75 }
76 $Time = time();
77
78 $DbResult = $this->Database->select('NetworkFreeAccess', '*', '(IPAddress="'.$IPAddress.
79 '") ORDER BY Time DESC LIMIT 1');
80 if($DbResult->num_rows > 0)
81 {
82 $DbRow = $DbResult->fetch_assoc();
83 $ActivationTime = MysqlDateTimeToTime($DbRow['Time']);
84 if(($ActivationTime + $this->Timeout) < $Time)
85 {
86 $Activated = false;
87 } else $Activated = true;
88 } else $Activated = false;
89
90 if(array_key_exists('a', $_GET))
91 {
92 if($_GET['a'] == 'activate')
93 {
94 if($Activated == false)
95 {
96 $DbResult = $this->Database->insert('NetworkFreeAccess',
97 array('IPAddress' => $IPAddress, 'Time' => TimeToMysqlDateTime(time()),
98 'Configured' => 0));
99 $ActivationTime = $Time;
100 $Activated = true;
101 }
102 }
103 }
104 $Output .= '<div style="text-align:center;"><h3>Vítejte v síti ZděchovNET</h3></div>';
105 $Output .= '<p>Pro přístup k Internetu zdarma sdílenou rychlostí 128/128 kbit/s klikněte na odkaz níže.
106 Internet bude zpřístupněn po dobu 24 hodin. Po uplynutí této doby je potřeba provést novou aktivaci.</p>';
107 $Output .= '<p>Pokud jste platícím zákazníkem a přesto se vám zobrazuje tato stránka, tak pravděpodobně nemáte registrovano v síti vaše klientské zařízení.</p>';
108
109 $PrefixMultiplier = new PrefixMultiplier();
110 if($Activated) $Output .= 'Aktivováno. Vyprší za '.$PrefixMultiplier->Add($ActivationTime + $this->Timeout - $Time, '', 4, 'Time');
111 else $Output .= '<a href="?a=activate">Aktivovat</a>';
112
113 return($Output);
114 }
115}
116
117class ScheduleConfigureFreeAccess extends SchedulerTask
118{
119 function Execute()
120 {
121 $Output = '';
122 $Commands = array();
123 $DbResult = $this->Database->select('NetworkFreeAccess', '`Id`, `IPAddress`', '(`Configured`=0)');
124 while($DbRow = $DbResult->fetch_assoc())
125 {
126 $Commands[] = '/ip firewall address-list add address='.$DbRow['IPAddress'].
127 ' list=free-access timeout=1d';
128 }
129 $DbResult = $this->Database->update('NetworkFreeAccess', '`Configured`=0', array('Configured' => 1));
130
131 $Routerboard = new Routerboard($this->System->Config['MainRouter']['HostName']);
132 $Routerboard->UserName = $this->System->Config['MainRouter']['UserName'];
133 $Routerboard->Timeout = $this->System->Config['MainRouter']['ConnectTimeout'];
134 $Routerboard->Debug = true;
135 $Routerboard->ExecuteBatch(implode(';', $Commands));
136
137 return($Output);
138 }
139}
Note: See TracBrowser for help on using the repository browser.